Outils pour utilisateurs

Outils du site


notes:graphe

Différences

Ci-dessous, les différences entre deux révisions de la page.

Lien vers cette vue comparative

Les deux révisions précédentesRévision précédente
Prochaine révision
Révision précédente
notes:graphe [2015/01/16 11:19] Whidounotes:graphe [2015/01/17 14:18] (Version actuelle) Whidou
Ligne 2: Ligne 2:
  
 <html> <html>
-<svg width="100%" +<style> 
- viewBox="0.00 0.00 7419.59 3284.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> +#dokuwiki__site{ 
-<g id="graph0" class="graph" transform="scale(1) rotate(0) translate(4 3280)">+  max-width:100% 
 +
 +</style> 
 +<svg width="100%" height="500px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
 +<script type="application/ecmascript"> <![CDATA[ 
 +    var x = 4; 
 +    var y = 3280; 
 +    var scale = 1; 
 +    var mouseX; 
 +    var mouseY; 
 + 
 +    function click(evt) { 
 +      var page = evt.target.parentNode; 
 +      var title = page.getElementsByTagName("title")[0].textContent; 
 +      var svgDocument = page.ownerDocument; 
 +      var edges = svgDocument.getElementsByClassName("edge"); 
 +      var active; 
 +      for(var i = 0; i < edges.length; i++){ 
 +        var edgeTitle = edges[i].getElementsByTagName("title")[0].innerHTML; 
 +        var index = edgeTitle.indexOf(title); 
 +        var color; 
 +        var width; 
 +        var path = edges[i].getElementsByTagName("path")[0]; 
 +        var poly = edges[i].getElementsByTagName("polygon")[0]; 
 +        if (index == -1 || page.getAttribute("active") == "true") { 
 +          color = "black"; 
 +          width = "1px"; 
 +        } else if (index == 0) { 
 +          width = "2px"; 
 +          color = "red"; 
 +        } else { 
 +          width = "2px"; 
 +          color = "blue"; 
 +        } 
 +        path.setAttribute("stroke", color); 
 +        poly.setAttribute("fill", color); 
 +        path.setAttribute("stroke-width", width); 
 +      } 
 +      if (page.getAttribute("active") == "true") { 
 +          active = "false"; 
 +      } else { 
 +        active = "true"; 
 +      } 
 +      page.setAttribute("active", active); 
 +    } 
 + 
 +    function startDrag(evt) { 
 +      document.onmousemove = doDrag; 
 +      document.onmouseup = stopDrag; 
 +      mouseX = evt.screenX; 
 +      mouseY = evt.screenY; 
 +    } 
 + 
 +    function doDrag(evt) { 
 +      var svgDocument = evt.target.ownerDocument; 
 +      var graph = svgDocument.getElementById("graph0"); 
 +      dx = evt.screenX - mouseX; 
 +      dy = evt.screenY - mouseY; 
 +      mouseX = evt.screenX; 
 +      mouseY = evt.screenY; 
 +      x += dx / scale; 
 +      y += dy / scale; 
 +      graph.setAttribute("transform", "scale(" + scale + ") rotate(0) translate(" + x + " " + y + ")"); 
 +    } 
 + 
 +    function doZoom(evt) { 
 +      var svgDocument = evt.target.ownerDocument; 
 +      var dx = svgDocument.getElementsByTagName("svg")[0].getBoundingClientRect().x; 
 +      var dy = svgDocument.getElementsByTagName("svg")[0].getBoundingClientRect().y; 
 +      var graph = svgDocument.getElementById("graph0"); 
 +      var delta; 
 +      x -= (evt.clientX - dx) / scale; 
 +      y -= (evt.clientY - dy) / scale; 
 +      if(evt.wheelDelta) 
 +        delta = evt.wheelDelta / 40; // Chrome/Safari 
 +      else 
 +        delta = -evt.detail; // Mozilla 
 +      scale *= Math.pow(1.05, delta); 
 +      x += (evt.clientX - dx) / scale; 
 +      y += (evt.clientY - dy) / scale; 
 +      graph.setAttribute("transform", "scale(" + scale + ") rotate(0) translate(" + x + " " + y + ")"); 
 +    } 
 + 
 +    function stopDrag() { 
 +      document.onmousemove = null; 
 +    } 
 + 
 +    if(navigator.userAgent.toLowerCase().indexOf('webkit') >= 0) 
 +      window.addEventListener('mousewheel', doZoom, false); 
 +    else 
 +      window.addEventListener('DOMMouseScroll', doZoom, false); 
 +  ]]> 
 +</script
 +<g id="graph0" class="graph" transform="scale(1) rotate(0) translate(4 3280)" onmousedown="startDrag(evt)">
 <title>doku</title> <title>doku</title>
-<polygon fill="white" stroke="none" points="-4,4 -4,-3280 7415.59,-3280 7415.59,4 -4,4"/> +<polygon fill="white" stroke="none" points="-4,4 -4,-3280 7124.59,-3280 7124.59,4 -4,4"/> 
-<!-- pnj:jimmyx --> +<!-- pnj:fgf --> 
-<g id="node1" class="node"><title>pnj:jimmyx</title> +<g id="node1" class="node" onclick="click(evt)"><title>pnj:fgf</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfee" cx="4307" cy="-3258" rx="50.0912" ry="18"/> +<ellipse fill="#e5b030" fill-opacity="0.733333" stroke="#e5b030" stroke-opacity="0.733333" cx="1631" cy="-3258" rx="34.394" ry="18"/> 
-<text text-anchor="middle" x="4307" y="-3254.3" font-family="Times,serif" font-size="14.00">pnj:jimmyx</text>+<text text-anchor="middle" x="1631" y="-3254.3" font-family="Times,serif" font-size="14.00">pnj:fgf</text>
 </g> </g>
-<!-- lore:lieux:camargue --> +<!-- pj:eidolon --> 
-<g id="node2" class="node"><title>lore:lieux:camargue</title> +<g id="node2" class="node" onclick="click(evt)"><title>pj:eidolon</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfee" cx="4430" cy="-3186" rx="79.0865" ry="18"/> +<ellipse fill="#c983d0" fill-opacity="0.733333" stroke="#c983d0" stroke-opacity="0.733333" cx="510" cy="-3186" rx="46.2923" ry="18"/> 
-<text text-anchor="middle" x="4430" y="-3182.3" font-family="Times,serif" font-size="14.00">lore:lieux:camargue</text>+<text text-anchor="middle" x="510" y="-3182.3" font-family="Times,serif" font-size="14.00">pj:eidolon</text>
 </g> </g>
-<!-- pnj:jimmyx&#45;&gt;lore:lieux:camargue --> +<!-- pnj:fgf&#45;&gt;pj:eidolon --> 
-<g id="edge1" class="edge"><title>pnj:jimmyx&#45;&gt;lore:lieux:camargue</title> +<g id="edge1" class="edge"><title>pnj:fgf&#45;&gt;pj:eidolon</title> 
-<path fill="none" stroke="black" d="M4332.49,-3242.5C4349.98,-3232.54 4373.48,-3219.17 4393.02,-3208.04"/> +<path fill="none" stroke="black" d="M1596.84,-3254.87C1437.23,-3244.9 764.411,-3202.89 565.565,-3190.47"/> 
-<polygon fill="black" stroke="black" points="4395.01,-3210.94 4401.97,-3202.95 4391.55,-3204.85 4395.01,-3210.94"/>+<polygon fill="black" stroke="black" points="565.551,-3186.96 555.352,-3189.83 565.115,-3193.95 565.551,-3186.96"/>
 </g> </g>
-<!-- lore:lieux:milan --> +<!-- lore:lieux:munich --> 
-<g id="node3" class="node"><title>lore:lieux:milan</title> +<g id="node3" class="node" onclick="click(evt)"><title>lore:lieux:munich</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfee" cx="4348" cy="-1530" rx="63.8893" ry="18"/> +<ellipse fill="#021dcd" fill-opacity="0.733333" stroke="#021dcd" stroke-opacity="0.733333" cx="2951" cy="-2898" rx="71.4873" ry="18"/> 
-<text text-anchor="middle" x="4348" y="-1526.3" font-family="Times,serif" font-size="14.00">lore:lieux:milan</text>+<text text-anchor="middle" x="2951" y="-2894.3" font-family="Times,serif" font-size="14.00">lore:lieux:munich</text>
 </g> </g>
-<!-- pnj:jimmyx&#45;&gt;lore:lieux:milan --> +<!-- pnj:fgf&#45;&gt;lore:lieux:munich --> 
-<g id="edge2" class="edge"><title>pnj:jimmyx&#45;&gt;lore:lieux:milan</title> +<g id="edge2" class="edge"><title>pnj:fgf&#45;&gt;lore:lieux:munich</title> 
-<path fill="none" stroke="black" d="M4269.48,-3245.92C4216.99,-3227.83 4128,-3186.6 4128,-3115 4128,-3115 4128,-3115 4128,-2537 4128,-2351.63 4342,-2364.37 4342,-2179 4342,-2179 4342,-2179 4342,-2105 4342,-1888.64 4309.34,-1836.16 4300,-1620 4299.31,-1604.01 4294.24,-1598.93 4300,-1584 4304.24,-1573 4311.94,-1562.87 4319.94,-1554.48"/> +<path fill="none" stroke="black" d="M1665.53,-3256.47C1857.83,-3253.16 2787,-3231.46 2787,-3115 2787,-3115 2787,-3115 2787,-3041 2787,-2980.44 2852.12,-2938.73 2900.4,-2916.87"/> 
-<polygon fill="black" stroke="black" points="4322.59,-1556.78 4327.29,-1547.29 4317.7,-1551.78 4322.59,-1556.78"/>+<polygon fill="black" stroke="black" points="2902.04,-2919.98 2909.8,-2912.77 2899.24,-2913.56 2902.04,-2919.98"/>
 </g> </g>
-<!-- lore:lieux:gemito --> +<!-- pnj:jinks --> 
-<g id="node4" class="node"><title>lore:lieux:gemito</title> +<g id="node4" class="node" onclick="click(evt)"><title>pnj:jinks</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfee" cx="4683" cy="-1674" rx="69.5877" ry="18"/> +<ellipse fill="#e5b030" fill-opacity="0.733333" stroke="#e5b030" stroke-opacity="0.733333" cx="2226" cy="-594" rx="40.0939" ry="18"/> 
-<text text-anchor="middle" x="4683" y="-1670.3" font-family="Times,serif" font-size="14.00">lore:lieux:gemito</text>+<text text-anchor="middle" x="2226" y="-590.3" font-family="Times,serif" font-size="14.00">pnj:jinks</text>
 </g> </g>
-<!-- pnj:jimmyx&#45;&gt;lore:lieux:gemito --> +<!-- pnj:fgf&#45;&gt;pnj:jinks --> 
-<g id="edge3" class="edge"><title>pnj:jimmyx&#45;&gt;lore:lieux:gemito</title> +<g id="edge3" class="edge"><title>pnj:fgf&#45;&gt;pnj:jinks</title> 
-<path fill="none" stroke="black" d="M4301.29,-3239.95C4298,-3213.29 4298,-3160.11 4298,-3115 4298,-3115 4298,-3115 4298,-2537 4298,-2517.9 4534,-1910.1 4534,-1891 4534,-1891 4534,-1891 4534,-1817 4534,-1759.47 4592.99,-1716.79 4636.85,-1693.93"/> +<path fill="none" stroke="black" d="M1623.49,-3240.38C1605.41,-3187.45 1557.59,-3022.21 1448,-2952 1370.61,-2902.42 1124.33,-2941.37 1036,-2916 960.129,-2894.21 866.108,-2881.46 895,-2808 910.999,-2767.32 928.212,-2763.73 962,-2736 1012.02,-2694.95 1914.75,-2176.19 1953,-2124 2035.64,-2011.23 2030,-1958.81 2030,-1819 2030,-1819 2030,-1819 2030,-1529 2030,-1395.2 2124,-1376.8 2124,-1243 2124,-1243 2124,-1243 2124,-809 2124,-734.243 2172.33,-656.06 2202.68,-618.238"/> 
-<polygon fill="black" stroke="black" points="4638.59,-1696.97 4645.95,-1689.35 4635.45,-1690.72 4638.59,-1696.97"/>+<polygon fill="black" stroke="black" points="2205.52,-620.294 2209.23,-610.369 2200.14,-615.816 2205.52,-620.294"/>
 </g> </g>
-<!-- pnj:marcello --> +<!-- pj:oggodt --> 
-<g id="node5" class="node"><title>pnj:marcello</title> +<g id="node14" class="node" onclick="click(evt)"><title>pj:oggodt</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfee" cx="4375" cy="-1602" rx="54.6905" ry="18"/> +<ellipse fill="#c983d0" fill-opacity="0.733333" stroke="#c983d0" stroke-opacity="0.733333" cx="847" cy="-3114" rx="45.4919" ry="18"/> 
-<text text-anchor="middle" x="4375" y="-1598.3" font-family="Times,serif" font-size="14.00">pnj:marcello</text>+<text text-anchor="middle" x="847" y="-3110.3" font-family="Times,serif" font-size="14.00">pj:oggodt</text>
 </g> </g>
-<!-- pnj:jimmyx&#45;&gt;pnj:marcello --> +<!-- pj:eidolon&#45;&gt;pj:oggodt --> 
-<g id="edge4" class="edge"><title>pnj:jimmyx&#45;&gt;pnj:marcello</title> +<g id="edge541" class="edge"><title>pj:eidolon&#45;&gt;pj:oggodt</title> 
-<path fill="none" stroke="black" d="M4285.16,-3241.38C4254.92,-3217.75 4204,-3169.82 4204,-3115 4204,-3115 4204,-3115 4204,-2681 4204,-2552.17 4269.14,-2533.49 4312,-2412 4334.26,-2348.89 4337.51,-2332.32 4356,-2268 4367.32,-2228.63 4380,-2219.97 4380,-2179 4380,-2179 4380,-2179 4380,-1745 4380,-1704.97 4377.99,-1658.63 4376.52,-1630.07"/> +<path fill="none" stroke="black" d="M548.665,-3175.99C609.882,-3162.72 728.798,-3138.01 796.606,-3124.47"/> 
-<polygon fill="black" stroke="black" points="4380.01,-1629.84 4375.99,-1620.04 4373.02,-1630.21 4380.01,-1629.84"/>+<polygon fill="black" stroke="black" points="797.505,-3127.86 806.63,-3122.48 796.14,-3121 797.505,-3127.86"/>
 </g> </g>
-<!-- lore:corpos:saeder&#45;krupp --> +<!-- pj:sven --> 
-<g id="node27" class="node"><title>lore:corpos:saeder&#45;krupp</title> +<g id="node20" class="node" onclick="click(evt)"><title>pj:sven</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfee" cx="5739" cy="-3114" rx="102.082" ry="18"/> +<ellipse fill="#c983d0" fill-opacity="0.733333" stroke="#c983d0" stroke-opacity="0.733333" cx="1516" cy="-1026" rx="36.2938" ry="18"/> 
-<text text-anchor="middle" x="5739" y="-3110.3" font-family="Times,serif" font-size="14.00">lore:corpos:saeder&#45;krupp</text>+<text text-anchor="middle" x="1516" y="-1022.3" font-family="Times,serif" font-size="14.00">pj:sven</text>
 </g> </g>
-<!-- lore:lieux:camargue&#45;&gt;lore:corpos:saeder&#45;krupp --> +<!-- pj:eidolon&#45;&gt;pj:sven --> 
-<g id="edge238" class="edge"><title>lore:lieux:camargue&#45;&gt;lore:corpos:saeder&#45;krupp</title> +<g id="edge534" class="edge"><title>pj:eidolon&#45;&gt;pj:sven</title> 
-<path fill="none" stroke="black" d="M4505.98,-3180.75C4728.01,-3168.65 5375.9,-3134 5632.55,-3120.49"/> +<path fill="none" stroke="black" d="M504.288,-3167.95C501,-3141.29 501,-3088.11 501,-3043 501,-3043 501,-3043 501,-2537 501,-2203.17 716.155,-2169.83 962,-1944 1139.8,-1780.68 1306.21,-1843.29 1398,-1620 1482.73,-1413.89 1501.92,-1140.48 1511.15,-1054.25"/> 
-<polygon fill="black" stroke="black" points="5632.83,-3123.98 5642.63,-3119.96 5632.46,-3116.99 5632.83,-3123.98"/>+<polygon fill="black" stroke="black" points="1514.64,-1054.56 1512.29,-1044.23 1507.68,-1053.77 1514.64,-1054.56"/>
 </g> </g>
-<!-- lore:lieux:milan&#45;&gt;lore:lieux:gemito --> +<!-- lore:lieux:tir_na_nog --> 
-<g id="edge8" class="edge"><title>lore:lieux:milan&#45;&gt;lore:lieux:gemito</title> +<g id="node25" class="node" onclick="click(evt)"><title>lore:lieux:tir_na_nog</title> 
-<path fill="none" stroke="blackd="M4331.66,-1547.45C4314.53,-1566.69 4292.47,-1598.64 4311,-1620 4348.06,-1662.71 4505.53,-1671.88 4603.32,-1673.35"/> +<ellipse fill="#021dcd" fill-opacity="0.733333" stroke="#021dcdstroke-opacity="0.733333" cx="682" cy="-882" rx="83.6854" ry="18"/> 
-<polygon fill="blackstroke="blackpoints="4603.43,-1676.85 4613.48,-1673.48 4603.52,-1669.85 4603.43,-1676.85"/>+<text text-anchor="middlex="682y="-878.3" font-family="Times,serif" font-size="14.00">lore:lieux:tir_na_nog</text>
 </g> </g>
-<!-- lore:lieux:milan&#45;&gt;pnj:marcello --> +<!-- pj:eidolon&#45;&gt;lore:lieux:tir_na_nog --> 
-<g id="edge5" class="edge"><title>lore:lieux:milan&#45;&gt;pnj:marcello</title> +<g id="edge538" class="edge"><title>pj:eidolon&#45;&gt;lore:lieux:tir_na_nog</title> 
-<path fill="none" stroke="black" d="M4360.49,-1548.1C4364.3,-1555.88 4368.16,-1565.26 4371.16,-1573.95"/> +<path fill="none" stroke="black" d="M470.667,-3176.46C411.387,-3161.02 306,-3122.4 306,-3043 306,-3043 306,-3043 306,-2033 306,-1902.03 377,-1877.97 377,-1747 377,-1747 377,-1747 377,-1529 377,-1427.62 456,-1416.38 456,-1315 456,-1315 456,-1315 456,-1169 456,-1047.51 583.086,-947.403 646.658,-904.925"/> 
-<polygon fill="black" stroke="black" points="4367.89,-1575.22 4374.24,-1583.7 4374.56,-1573.11 4367.89,-1575.22"/>+<polygon fill="black" stroke="black" points="648.754,-907.735 655.187,-899.317 644.909,-901.886 648.754,-907.735"/>
 </g> </g>
-<!-- lore:gangs:groupe_leonkavallo --> +<!-- pj:ankou --> 
-<g id="node6" class="node"><title>lore:gangs:groupe_leonkavallo</title> +<g id="node35" class="node" onclick="click(evt)"><title>pj:ankou</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfee" cx="4487" cy="-1458" rx="120.479" ry="18"/> +<ellipse fill="#c983d0" fill-opacity="0.733333" stroke="#c983d0" stroke-opacity="0.733333" cx="1055" cy="-954" rx="41.6928" ry="18"/> 
-<text text-anchor="middle" x="4487" y="-1454.3" font-family="Times,serif" font-size="14.00">lore:gangs:groupe_leonkavallo</text>+<text text-anchor="middle" x="1055" y="-950.3" font-family="Times,serif" font-size="14.00">pj:ankou</text>
 </g> </g>
-<!-- lore:lieux:milan&#45;&gt;lore:gangs:groupe_leonkavallo --> +<!-- pj:eidolon&#45;&gt;pj:ankou --> 
-<g id="edge6" class="edge"><title>lore:lieux:milan&#45;&gt;lore:gangs:groupe_leonkavallo</title> +<g id="edge542" class="edge"><title>pj:eidolon&#45;&gt;pj:ankou</title> 
-<path fill="none" stroke="black" d="M4373.45,-1513.29C4392.04,-1503.34 4417.64,-1490.38 4439.86,-1479.61"/> +<path fill="none" stroke="black" d="M500.489,-3168.11C486.755,-3142.09 463,-3090.26 463,-3043 463,-3043 463,-3043 463,-2465 463,-2273.39 494,-2226.61 494,-2035 494,-2035 494,-2035 494,-1673 494,-1327.26 902.892,-1048.54 1022.51,-974.399"/> 
-<polygon fill="black" stroke="black" points="4441.66,-1482.63 4449.16,-1475.14 4438.63,-1476.32 4441.66,-1482.63"/>+<polygon fill="black" stroke="black" points="1024.57,-977.241 1031.25,-969.023 1020.9,-971.277 1024.57,-977.241"/>
 </g> </g>
-<!-- pnj:moman --> +<!-- pnj:tristanodunn --> 
-<g id="node7" class="node"><title>pnj:moman</title> +<g id="node47" class="node" onclick="click(evt)"><title>pnj:tristanodunn</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfee" cx="4298" cy="-1458" rx="50.8918" ry="18"/> +<ellipse fill="#e5b030" fill-opacity="0.733333" stroke="#e5b030" stroke-opacity="0.733333" cx="1012" cy="-234" rx="68.7879" ry="18"/> 
-<text text-anchor="middle" x="4298" y="-1454.3" font-family="Times,serif" font-size="14.00">pnj:moman</text>+<text text-anchor="middle" x="1012" y="-230.3" font-family="Times,serif" font-size="14.00">pnj:tristanodunn</text>
 </g> </g>
-<!-- lore:lieux:milan&#45;&gt;pnj:moman --> +<!-- pj:eidolon&#45;&gt;pnj:tristanodunn --> 
-<g id="edge7" class="edge"><title>lore:lieux:milan&#45;&gt;pnj:moman</title> +<g id="edge536" class="edge"><title>pj:eidolon&#45;&gt;pnj:tristanodunn</title> 
-<path fill="none" stroke="black" d="M4330.31,-1512.41C4323.45,-1504.08 4315.88,-1493.8 4309.68,-1484.49"/> +<path fill="none" stroke="black" d="M510.342,-3167.55C513.873,-3157.32 519.623,-3144.07 524,-3132 609.294,-2896.8 552.859,-2805.68 683,-2592 887.722,-2255.87 1060.53,-2273.26 1323,-1980 1359.07,-1939.7 1477.23,-1771.55 1482,-1764 1603.51,-1571.62 1728,-1542.54 1728,-1315 1728,-1315 1728,-1315 1728,-1169 1728,-1083.33 1689.72,-1060.47 1622,-1008 1592.46,-985.108 1566.09,-1003.52 1546,-972 1473.14,-857.69 1544,-802.558 1544,-667 1544,-667 1544,-667 1544,-377 1544,-283.238 1236.14,-250.13 1088.76,-239.523"/> 
-<polygon fill="black" stroke="black" points="4312.57,-1482.5 4304.23,-1475.96 4306.67,-1486.27 4312.57,-1482.5"/>+<polygon fill="black" stroke="black" points="1088.65,-236.006 1078.43,-238.797 1088.16,-242.989 1088.65,-236.006"/>
 </g> </g>
-<!-- lore:lieux:gemito&#45;&gt;pnj:jimmyx --> +<!-- pnj:williamodunn --> 
-<g id="edge461" class="edge"><title>lore:lieux:gemito&#45;&gt;pnj:jimmyx</title> +<g id="node49" class="node" onclick="click(evt)"><title>pnj:williamodunn</title> 
-<path fill="none" stroke="blackd="M4655.62,-1690.64C4617.05,-1712.56 4552,-1756.59 4552,-1817 4552,-1891 4552,-1891 4552,-1891 4552,-1910.1 4316,-2517.9 4316,-2537 4316,-3115 4316,-3115 4316,-3115 4316,-3155 4316,-3201.35 4313.71,-3229.92"/> +<ellipse fill="#e5b030" fill-opacity="0.733333" stroke="#e5b030stroke-opacity="0.733333" cx="490" cy="-306" rx="71.4873" ry="18"/> 
-<polygon fill="blackstroke="blackpoints="4310.22,-3229.65 4312.71,-3239.95 4317.18,-3230.35 4310.22,-3229.65"/>+<text text-anchor="middlex="490y="-302.3" font-family="Times,serif" font-size="14.00">pnj:williamodunn</text>
 </g> </g>
-<!-- lore:lieux:gemito&#45;&gt;pnj:marcello --> +<!-- pj:eidolon&#45;&gt;pnj:williamodunn --> 
-<g id="edge457" class="edge"><title>lore:lieux:gemito&#45;&gt;pnj:marcello</title> +<g id="edge533" class="edge"><title>pj:eidolon&#45;&gt;pnj:williamodunn</title> 
-<path fill="none" stroke="black" d="M4630.16,-1662.14C4573.18,-1649.68 4483.21,-1629.25 4426.68,-1615.97"/> +<path fill="none" stroke="black" d="M463.994,-3183.83C378.352,-3180.71 199.485,-3169.64 153,-3132 40.4145,-3040.83 38,-2971.87 38,-2827 38,-2827 38,-2827 38,-665 38,-541.841 93.9496,-511.515 188,-432 250.035,-379.552 281.272,-391.856 356,-360 383.687,-348.197 414.852,-334.983 440.255,-324.702"/> 
-<polygon fill="black" stroke="black" points="4427.41,-1612.55 4416.87,-1613.66 4425.8,-1619.36 4427.41,-1612.55"/>+<polygon fill="black" stroke="black" points="441.713,-327.888 449.689,-320.914 439.105,-321.392 441.713,-327.888"/>
 </g> </g>
-<!-- lore:lieux:gemito&#45;&gt;lore:gangs:groupe_leonkavallo --> +<!-- pnj:eidanodunn --> 
-<g id="edge450" class="edge"><title>lore:lieux:gemito&#45;&gt;lore:gangs:groupe_leonkavallo</title> +<g id="node50" class="node" onclick="click(evt)"><title>pnj:eidanodunn</title> 
-<path fill="none" stroke="blackd="M4636.55,-1660.45C4613.35,-1651.79 4586.33,-1638.48 4567,-1620 4526.83,-1581.6 4500.15,-1521.02 4490.01,-1486.15"/> +<ellipse fill="#e5b030" fill-opacity="0.733333" stroke="#e5b030stroke-opacity="0.733333" cx="440" cy="-378" rx="65.7887" ry="18"/> 
-<polygon fill="blackstroke="blackpoints="4493.32,-1484.99 4487.39,-1476.21 4486.55,-1486.77 4493.32,-1484.99"/>+<text text-anchor="middlex="440y="-374.3" font-family="Times,serif" font-size="14.00">pnj:eidanodunn</text>
 </g> </g>
-<!-- lore:lieux:gemito&#45;&gt;pnj:moman --> +<!-- pj:eidolon&#45;&gt;pnj:eidanodunn --> 
-<g id="edge453" class="edge"><title>lore:lieux:gemito&#45;&gt;pnj:moman</title> +<g id="edge537" class="edge"><title>pj:eidolon&#45;&gt;pnj:eidanodunn</title> 
-<path fill="none" stroke="black" d="M4637.27,-1660.32C4608.95,-1651.37 4572.48,-1637.8 4543,-1620 4481.01,-1582.57 4482.13,-1550.82 4421,-1512 4396.76,-1496.61 4367.29,-1483.73 4343.27,-1474.53"/> +<path fill="none" stroke="black" d="M463.797,-3184.02C405.538,-3181.21 304.204,-3170.68 228,-3132 176.118,-3105.67 132,-3101.18 132,-3043 132,-3043 132,-3043 132,-737 132,-574.26 316.263,-446.407 399.841,-398.958"/> 
-<polygon fill="black" stroke="black" points="4344.27,-1471.17 4333.68,-1470.94 4341.81,-1477.72 4344.27,-1471.17"/>+<polygon fill="black" stroke="black" points="401.77,-401.889 408.801,-393.963 398.362,-395.775 401.77,-401.889"/>
 </g> </g>
-<!-- pnj:enrique --> +<!-- pj:endol --> 
-<g id="node24" class="node"><title>pnj:enrique</title> +<g id="node120" class="node" onclick="click(evt)"><title>pj:endol</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfee" cx="4825" cy="-1458" rx="50.0912" ry="18"/> +<ellipse fill="#c983d0" fill-opacity="0.733333" stroke="#c983d0" stroke-opacity="0.733333" cx="426" cy="-810" rx="39.7935" ry="18"/> 
-<text text-anchor="middle" x="4825" y="-1454.3" font-family="Times,serif" font-size="14.00">pnj:enrique</text>+<text text-anchor="middle" x="426" y="-806.3" font-family="Times,serif" font-size="14.00">pj:endol</text>
 </g> </g>
-<!-- lore:lieux:gemito&#45;&gt;pnj:enrique --> +<!-- pj:eidolon&#45;&gt;pj:endol --> 
-<g id="edge454" class="edge"><title>lore:lieux:gemito&#45;&gt;pnj:enrique</title> +<g id="edge535" class="edge"><title>pj:eidolon&#45;&gt;pj:endol</title> 
-<path fill="none" stroke="black" d="M4675.15,-1655.92C4672.07,-1637.74 4672.25,-1608.31 4679,-1584 4688.68,-1549.14 4691.49,-1537.66 4717,-1512 4733.69,-1495.21 4756.81,-1482.43 4777.48,-1473.63"/> +<path fill="none" stroke="black" d="M464.215,-3183.27C380.543,-3177.47 212,-3152.29 212,-3043 212,-3043 212,-3043 212,-1241 212,-1144.83 244,-1123.17 244,-1027 244,-1027 244,-1027 244,-953 244,-883.498 328.455,-841.796 382.418,-822.976"/> 
-<polygon fill="black" stroke="black" points="4778.81,-1476.86 4786.77,-1469.86 4776.18,-1470.37 4778.81,-1476.86"/>+<polygon fill="black" stroke="black" points="383.743,-826.224 392.112,-819.727 381.518,-819.587 383.743,-826.224"/>
 </g> </g>
-<!-- lore:gangs:familia_d_enrique --> +<!-- pj:splenters --> 
-<g id="node25" class="node"><title>lore:gangs:familia_d_enrique</title> +<g id="node121" class="node" onclick="click(evt)"><title>pj:splenters</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfee" cx="4889" cy="-1386" rx="113.98" ry="18"/> +<ellipse fill="#c983d0" fill-opacity="0.733333" stroke="#c983d0" stroke-opacity="0.733333" cx="1975" cy="-522" rx="51.9908" ry="18"/> 
-<text text-anchor="middle" x="4889" y="-1382.3" font-family="Times,serif" font-size="14.00">lore:gangs:familia_d_enrique</text>+<text text-anchor="middle" x="1975" y="-518.3" font-family="Times,serif" font-size="14.00">pj:splenters</text>
 </g> </g>
-<!-- lore:lieux:gemito&#45;&gt;lore:gangs:familia_d_enrique --> +<!-- pj:eidolon&#45;&gt;pj:splenters --> 
-<g id="edge451" class="edge"><title>lore:lieux:gemito&#45;&gt;lore:gangs:familia_d_enrique</title> +<g id="edge540" class="edge"><title>pj:eidolon&#45;&gt;pj:splenters</title> 
-<path fill="none" stroke="black" d="M4684.72,-1655.99C4691.99,-1637.07 4709.43,-1606.25 4730,-1584 4784.55,-1524.99 4836.94,-1546.77 4875,-1476 4885.11,-1457.2 4885.78,-1432.82 4885.65,-1414.33"/> +<path fill="none" stroke="black" d="M555.962,-3184.12C717.341,-3180.17 1255.57,-3159.65 1390,-3060 1430.43,-3030.03 1458.27,-2988.85 1424,-2952 1348.89,-2871.23 1019.96,-2978.38 929,-2916 887.499,-2887.54 886.021,-2857.51 895,-2808 925.243,-2641.22 1007.45,-2619.05 1145,-2520 1183.76,-2492.09 1883.2,-2164.81 1908,-2124 1916.31,-2110.33 1908.23,-2104 1908,-2088 1905.78,-1936.4 1898,-1898.62 1898,-1747 1898,-1747 1898,-1747 1898,-665 1898,-618.999 1929.61,-573.649 1952.33,-547.002"/> 
-<polygon fill="black" stroke="black" points="4889.15,-1414.18 4885.55,-1404.22 4882.15,-1414.25 4889.15,-1414.18"/>+<polygon fill="black" stroke="black" points="1955.08,-549.175 1959.05,-539.352 1949.82,-544.556 1955.08,-549.175"/>
 </g> </g>
-<!-- pnj:meredith --> +<!-- pj:hiquse --> 
-<g id="node45" class="node"><title>pnj:meredith</title> +<g id="node142" class="node" onclick="click(evt)"><title>pj:hiquse</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfee" cx="5227" cy="-1530" rx="55.4913" ry="18"/> +<ellipse fill="#c983d0" fill-opacity="0.733333" stroke="#c983d0" stroke-opacity="0.733333" cx="4170" cy="-1890" rx="42.7926" ry="18"/> 
-<text text-anchor="middle" x="5227" y="-1526.3" font-family="Times,serif" font-size="14.00">pnj:meredith</text>+<text text-anchor="middle" x="4170" y="-1886.3" font-family="Times,serif" font-size="14.00">pj:hiquse</text>
 </g> </g>
-<!-- lore:lieux:gemito&#45;&gt;pnj:meredith --> +<!-- pj:eidolon&#45;&gt;pj:hiquse --> 
-<g id="edge455" class="edge"><title>lore:lieux:gemito&#45;&gt;pnj:meredith</title> +<g id="edge539" class="edge"><title>pj:eidolon&#45;&gt;pj:hiquse</title> 
-<path fill="none" stroke="black" d="M4747.57,-1667.14C4873.31,-1655.53 5140.34,-1629.91 5158,-1620 5183.43,-1605.73 5202.65,-1577.88 5214.27,-1557.11"/> +<path fill="none" stroke="black" d="M556.01,-3183.67C696.036,-3179.53 1128.54,-3165.1 1486,-3132 1974.11,-3086.8 3263.7,-3113.75 3673,-2844 3750.71,-2792.79 3703.04,-2716.34 3780,-2664 3863.01,-2607.54 3935.82,-2702.6 4003,-2628 4163.85,-2449.38 3992.42,-2324.92 4033,-2088 4044.95,-2018.24 4054.72,-1997.55 4101,-1944 4111.34,-1932.04 4124.34,-1920.24 4136.38,-1910.83"/> 
-<polygon fill="black" stroke="black" points="5217.43,-1558.61 5219.06,-1548.14 5211.26,-1555.31 5217.43,-1558.61"/>+<polygon fill="black" stroke="black" points="4138.62,-1913.52 4144.52,-1904.72 4134.42,-1907.92 4138.62,-1913.52"/>
 </g> </g>
-<!-- pnj:theodore_smith --> +<!-- lore:lieux:munich&#45;&gt;pnj:fgf --> 
-<g id="node75" class="node"><title>pnj:theodore_smith</title> +<g id="edge121" class="edge"><title>lore:lieux:munich&#45;&gt;pnj:fgf</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfeecx="4257" cy="-1386" rx="80.6858" ry="18"/> +<path fill="none" stroke="blackd="M2918.91,-2914.19C2875.79,-2935.21 2805,-2977.86 2805,-3041 2805,-3115 2805,-3115 2805,-3115 2805,-3230.53 1890.64,-3252.81 1675.77,-3256.39"/> 
-<text text-anchor="middlex="4257y="-1382.3" font-family="Times,serif" font-size="14.00">pnj:theodore_smith</text>+<polygon fill="blackstroke="blackpoints="1675.43,-3252.89 1665.49,-3256.55 1675.54,-3259.89 1675.43,-3252.89"/>
 </g> </g>
-<!-- lore:lieux:gemito&#45;&gt;pnj:theodore_smith --> +<!-- lore:lieux:munich&#45;&gt;pnj:jinks --> 
-<g id="edge452" class="edge"><title>lore:lieux:gemito&#45;&gt;pnj:theodore_smith</title> +<g id="edge128" class="edge"><title>lore:lieux:munich&#45;&gt;pnj:jinks</title> 
-<path fill="none" stroke="black" d="M4676.48,-1655.95C4664.04,-1607.25 4640.26,-1469.1 4607,-1440 4568.89,-1406.67 4437.13,-1394.3 4346.56,-1389.71"/> +<path fill="none" stroke="black" d="M2880.72,-2894.55C2740.13,-2888.89 2434.88,-2873.09 2398,-2844 2328.42,-2789.11 2268,-2555.62 2268,-2467 2268,-2467 2268,-2467 2268,-2105 2268,-1980.52 2207.51,-1959.24 2190,-1836 2187.75,-1820.16 2188.98,-1815.97 2190,-1800 2195.12,-1719.51 2206.63,-1700.4 2213,-1620 2218.65,-1548.63 2218,-1530.59 2218,-1459 2218,-1459 2218,-1459 2218,-1241 2218,-1081.89 2218,-1042.11 2218,-883 2218,-883 2218,-883 2218,-737 2218,-696.995 2217.6,-650.652 2219.6,-622.079"/> 
-<polygon fill="black" stroke="black" points="4346.71,-1386.21 4336.55,-1389.22 4346.37,-1393.2 4346.71,-1386.21"/>+<polygon fill="black" stroke="black" points="2223.09,-622.319 2220.49,-612.049 2216.12,-621.701 2223.09,-622.319"/>
 </g> </g>
-<!-- lore:lieux:confederation_italienne --> +<!-- pnj:leik --> 
-<g id="node94" class="node"><title>lore:lieux:confederation_italienne</title> +<g id="node7" class="node" onclick="click(evt)"><title>pnj:leik</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfee" cx="4876" cy="-1602" rx="128.077" ry="18"/> +<ellipse fill="#e5b030" fill-opacity="0.733333" stroke="#e5b030" stroke-opacity="0.733333" cx="3298" cy="-666" rx="36.2938" ry="18"/> 
-<text text-anchor="middle" x="4876" y="-1598.3" font-family="Times,serif" font-size="14.00">lore:lieux:confederation_italienne</text>+<text text-anchor="middle" x="3298" y="-662.3" font-family="Times,serif" font-size="14.00">pnj:leik</text>
 </g> </g>
-<!-- lore:lieux:gemito&#45;&gt;lore:lieux:confederation_italienne --> +<!-- lore:lieux:munich&#45;&gt;pnj:leik --> 
-<g id="edge458" class="edge"><title>lore:lieux:gemito&#45;&gt;lore:lieux:confederation_italienne</title> +<g id="edge120" class="edge"><title>lore:lieux:munich&#45;&gt;pnj:leik</title> 
-<path fill="none" stroke="black" d="M4717.84,-1658.33C4745.46,-1647.83 4784.55,-1633.59 4816.99,-1622.19"/> +<path fill="none" stroke="black" d="M2880.32,-2895.2C2728.76,-2890.61 2383.23,-2876.47 2342,-2844 2315.47,-2823.11 2254.23,-2588.48 2245,-2556 2206.97,-2422.12 2174,-2390.18 2174,-2251 2174,-2251 2174,-2251 2174,-1961 2174,-1878.25 2272.45,-1908.69 2312,-1836 2362.14,-1743.83 2350,-1707.92 2350,-1603 2350,-1603 2350,-1603 2350,-1313 2350,-1139.19 2333.73,-1061.49 2454,-936 2678.89,-701.341 3109.11,-670.981 3251.24,-667.374"/> 
-<polygon fill="black" stroke="black" points="4818.55,-1625.36 4826.83,-1618.75 4816.24,-1618.75 4818.55,-1625.36"/>+<polygon fill="black" stroke="black" points="3251.44,-670.871 3261.37,-667.151 3251.29,-663.872 3251.44,-670.871"/>
 </g> </g>
-<!-- lore:gangs:white_skullz --> +<!-- lore:planques:box_m1 --> 
-<g id="node117" class="node"><title>lore:gangs:white_skullz</title> +<g id="node8" class="node" onclick="click(evt)"><title>lore:planques:box_m1</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfee" cx="5114" cy="-1386" rx="93.6835" ry="18"/> +<ellipse fill="#92c6a8" fill-opacity="0.733333" stroke="#92c6a8" stroke-opacity="0.733333" cx="5073" cy="-810" rx="90.9839" ry="18"/> 
-<text text-anchor="middle" x="5114" y="-1382.3" font-family="Times,serif" font-size="14.00">lore:gangs:white_skullz</text>+<text text-anchor="middle" x="5073" y="-806.3" font-family="Times,serif" font-size="14.00">lore:planques:box_m1</text>
 </g> </g>
-<!-- lore:lieux:gemito&#45;&gt;lore:gangs:white_skullz --> +<!-- lore:lieux:munich&#45;&gt;lore:planques:box_m1 --> 
-<g id="edge456" class="edge"><title>lore:lieux:gemito&#45;&gt;lore:gangs:white_skullz</title> +<g id="edge135" class="edge"><title>lore:lieux:munich&#45;&gt;lore:planques:box_m1</title> 
-<path fill="none" stroke="black" d="M4745.56,-1666.12C4837.03,-1656.06 4998.47,-1636.74 5020,-1620 5085.07,-1569.39 5100.35,-1464.16 5107.69,-1414.32"/> +<path fill="none" stroke="black" d="M3022.55,-2896.63C3342.93,-2894.78 4637.05,-2884.92 4814,-2844 4907.21,-2822.44 5010,-2850.67 5010,-2755 5010,-2755 5010,-2755 5010,-2249 5010,-2152.4 4972,-2131.6 4972,-2035 4972,-2035 4972,-2035 4972,-1961 4972,-1895.28 5021.53,-1894.74 5051,-1836 5116.1,-1706.23 5168,-1676.19 5168,-1531 5168,-1531 5168,-1531 5168,-1457 5168,-1249.62 5119.43,-1199.98 5041,-1008 5020.32,-957.366 4995.53,-952.995 4982,-900 4978.04,-884.497 4974.35,-878.053 4982,-864 4989.79,-849.698 5003.27,-838.667 5017.57,-830.465"/> 
-<polygon fill="black" stroke="black" points="5111.17,-1414.69 5109.19,-1404.28 5104.25,-1413.65 5111.17,-1414.69"/>+<polygon fill="black" stroke="black" points="5019.32,-833.494 5026.52,-825.721 5016.05,-827.308 5019.32,-833.494"/>
 </g> </g>
-<!-- lore:gangs:fils_de_sauron --> +<!-- pnj:jinhong --> 
-<g id="node125" class="node"><title>lore:gangs:fils_de_sauron</title> +<g id="node10" class="node" onclick="click(evt)"><title>pnj:jinhong</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfee" cx="5245" cy="-1314" rx="102.882" ry="18"/> +<ellipse fill="#e5b030" fill-opacity="0.733333" stroke="#e5b030" stroke-opacity="0.733333" cx="2014" cy="-594" rx="50.0912" ry="18"/> 
-<text text-anchor="middle" x="5245" y="-1310.3" font-family="Times,serif" font-size="14.00">lore:gangs:fils_de_sauron</text>+<text text-anchor="middle" x="2014" y="-590.3" font-family="Times,serif" font-size="14.00">pnj:jinhong</text>
 </g> </g>
-<!-- lore:lieux:gemito&#45;&gt;lore:gangs:fils_de_sauron --> +<!-- lore:lieux:munich&#45;&gt;pnj:jinhong --> 
-<g id="edge460" class="edge"><title>lore:lieux:gemito&#45;&gt;lore:gangs:fils_de_sauron</title> +<g id="edge109" class="edge"><title>lore:lieux:munich&#45;&gt;pnj:jinhong</title> 
-<path fill="none" stroke="black" d="M4746.71,-1666.54C4847.23,-1656.41 5033.63,-1636.28 5060,-1620 5109.51,-1589.42 5182.55,-1456.32 5208,-1404 5217.76,-1383.94 5225.12,-1359.7 5231.24,-1341.59"/> +<path fill="none" stroke="black" d="M2880,-2895.85C2711.46,-2892.46 2297.98,-2880.37 2248,-2844 2191.6,-2802.96 2042,-2320.75 2042,-2251 2042,-2251 2042,-2251 2042,-2033 2042,-1867.06 1936,-1840.94 1936,-1675 1936,-1675 1936,-1675 1936,-953 1936,-826.748 1977.89,-679.903 2000.65,-621.199"/> 
-<polygon fill="black" stroke="black" points="5234.61,-1342.56 5234.62,-1331.97 5228.01,-1340.24 5234.61,-1342.56"/>+<polygon fill="black" stroke="black" points="2003.9,-622.5 2004.39,-611.916 1997.4,-619.88 2003.9,-622.5"/>
 </g> </g>
-<!-- pnj:rufus --> +<!-- lore:organisations:mi&#45;seng_lung --> 
-<g id="node133" class="node"><title>pnj:rufus</title> +<g id="node11" class="node" onclick="click(evt)"><title>lore:organisations:mi&#45;seng_lung</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfee" cx="5252" cy="-1602" rx="42.4939" ry="18"/> +<ellipse fill="#e323e9" fill-opacity="0.733333" stroke="#e323e9" stroke-opacity="0.733333" cx="3205" cy="-2466" rx="124.278" ry="18"/> 
-<text text-anchor="middle" x="5252" y="-1598.3" font-family="Times,serif" font-size="14.00">pnj:rufus</text>+<text text-anchor="middle" x="3205" y="-2462.3" font-family="Times,serif" font-size="14.00">lore:organisations:mi&#45;seng_lung</text>
 </g> </g>
-<!-- lore:lieux:gemito&#45;&gt;pnj:rufus --> +<!-- lore:lieux:munich&#45;&gt;lore:organisations:mi&#45;seng_lung --> 
-<g id="edge459" class="edge"><title>lore:lieux:gemito&#45;&gt;pnj:rufus</title> +<g id="edge119" class="edge"><title>lore:lieux:munich&#45;&gt;lore:organisations:mi&#45;seng_lung</title> 
-<path fill="none" stroke="black" d="M4748.06,-1667.4C4864.6,-1657.58 5104.16,-1636.69 5187,-1620 5193.56,-1618.68 5200.45,-1616.91 5207.22,-1615.02"/> +<path fill="none" stroke="black" d="M2956.78,-2879.93C2970.01,-2854.09 2998,-2802.97 2998,-2755 2998,-2755 2998,-2755 2998,-2609 2998,-2562.73 3016.29,-2549.42 3052,-2520 3072.15,-2503.4 3097.97,-2491.75 3122.68,-2483.68"/> 
-<polygon fill="black" stroke="black" points="5208.36,-1618.33 5217,-1612.19 5206.42,-1611.61 5208.36,-1618.33"/>+<polygon fill="black" stroke="black" points="3123.92,-2486.96 3132.44,-2480.65 3121.85,-2480.27 3123.92,-2486.96"/>
 </g> </g>
-<!-- pnj:marcello&#45;&gt;lore:lieux:milan --> +<!-- pnj:keito_lung --> 
-<g id="edge294" class="edge"><title>pnj:marcello&#45;&gt;lore:lieux:milan</title> +<g id="node12" class="node" onclick="click(evt)"><title>pnj:keito_lung</title> 
-<path fill="none" stroke="blackd="M4362.76,-1584.41C4358.87,-1576.54 4354.91,-1566.93 4351.84,-1558.04"/> +<ellipse fill="#e5b030" fill-opacity="0.733333" stroke="#e5b030stroke-opacity="0.733333" cx="4423" cy="-594" rx="61.99" ry="18"/> 
-<polygon fill="blackstroke="blackpoints="4355.16,-1556.92 4348.8,-1548.45 4348.48,-1559.04 4355.16,-1556.92"/>+<text text-anchor="middlex="4423y="-590.3" font-family="Times,serif" font-size="14.00">pnj:keito_lung</text>
 </g> </g>
-<!-- pnj:marcello&#45;&gt;lore:lieux:gemito --> +<!-- lore:lieux:munich&#45;&gt;pnj:keito_lung --> 
-<g id="edge295" class="edge"><title>pnj:marcello&#45;&gt;lore:lieux:gemito</title> +<g id="edge117" class="edge"><title>lore:lieux:munich&#45;&gt;pnj:keito_lung</title> 
-<path fill="none" stroke="black" d="M4420.12,-1612.18C4474.42,-1623.98 4565.5,-1644.62 4624.97,-1658.54"/> +<path fill="none" stroke="black" d="M2970.39,-2880.66C3000.46,-2857.18 3054,-2810.57 3054,-2755 3054,-2755 3054,-2755 3054,-2681 3054,-2590.14 3101.74,-2566.17 3180,-2520 3238.68,-2485.39 3286.75,-2537.44 3329,-2484 3393.23,-2402.77 3330,-2354.56 3330,-2251 3330,-2251 3330,-2251 3330,-2177 3330,-2015.14 3413.05,-1984.93 3529,-1872 3572.74,-1829.4 3590.6,-1825.67 3646,-1800 3692.67,-1778.37 3712.36,-1791.23 3756,-1764 3983.18,-1622.24 4073.39,-1579.35 4176,-1332 4243.45,-1169.41 4129.52,-1104.01 4182,-936 4224.43,-800.177 4340.79,-669.738 4394.94,-618.172"/> 
-<polygon fill="black" stroke="black" points="4624.42,-1662.01 4634.96,-1660.89 4626.02,-1655.19 4624.42,-1662.01"/>+<polygon fill="black" stroke="black" points="4397.54,-620.529 4402.46,-611.145 4392.77,-615.414 4397.54,-620.529"/>
 </g> </g>
-<!-- pnj:marcello&#45;&gt;lore:gangs:groupe_leonkavallo --> +<!-- lore:organisations:camorra --> 
-<g id="edge296" class="edge"><title>pnj:marcello&#45;&gt;lore:gangs:groupe_leonkavallo</title> +<g id="node15" class="node" onclick="click(evt)"><title>lore:organisations:camorra</title> 
-<path fill="none" stroke="blackd="M4382.43,-1584.1C4390.38,-1573.83 4402.08,-1560.35 4412,-1548 4429.02,-1526.8 4447.37,-1501.87 4461.9,-1483.8"/> +<ellipse fill="#e323e9" fill-opacity="0.733333" stroke="#e323e9stroke-opacity="0.733333" cx="1267" cy="-1242" rx="105.881" ry="18"/> 
-<polygon fill="blackstroke="blackpoints="4464.65,-1485.97 4468.29,-1476.02 4459.24,-1481.53 4464.65,-1485.97"/>+<text text-anchor="middlex="1267y="-1238.3" font-family="Times,serif" font-size="14.00">lore:organisations:camorra</text>
 </g> </g>
-<!-- lore:gangs:groupe_leonkavallo&#45;&gt;lore:lieux:milan --> +<!-- lore:lieux:munich&#45;&gt;lore:organisations:camorra --> 
-<g id="edge115" class="edge"><title>lore:gangs:groupe_leonkavallo&#45;&gt;lore:lieux:milan</title> +<g id="edge125" class="edge"><title>lore:lieux:munich&#45;&gt;lore:organisations:camorra</title> 
-<path fill="none" stroke="black" d="M4459.54,-1475.78C4440.04,-1486.16 4413.6,-1499.51 4391.3,-1510.24"/> +<path fill="none" stroke="black" d="M2879.85,-2895.58C2657.05,-2890.72 1982.52,-2873.43 1889,-2844 1716.43,-2789.7 1665.47,-2762.06 1544,-2628 1400.07,-2469.14 1194.25,-1963.18 1115,-1764 1102.63,-1732.91 1098.4,-1725.02 1093,-1692 1064.03,-1514.89 1061.42,-1437.35 1172,-1296 1182.66,-1282.37 1197.87,-1271.38 1213.06,-1263.01"/> 
-<polygon fill="black" stroke="black" points="4389.55,-1507.2 4382.03,-1514.67 4392.57,-1513.52 4389.55,-1507.2"/>+<polygon fill="black" stroke="black" points="1214.71,-1266.1 1221.97,-1258.39 1211.48,-1259.89 1214.71,-1266.1"/>
 </g> </g>
-<!-- lore:gangs:groupe_leonkavallo&#45;&gt;lore:lieux:gemito --> +<!-- pnj:silvo_campolin --> 
-<g id="edge116" class="edge"><title>lore:gangs:groupe_leonkavallo&#45;&gt;lore:lieux:gemito</title> +<g id="node16" class="node" onclick="click(evt)"><title>pnj:silvo_campolin</title> 
-<path fill="none" stroke="blackd="M4497.8,-1476.21C4512.77,-1508.25 4540.67,-1577.63 4585,-1620 4600.25,-1634.58 4620.28,-1645.94 4638.32,-1654.34"/> +<ellipse fill="#e5b030" fill-opacity="0.733333" stroke="#e5b030stroke-opacity="0.733333" cx="1159" cy="-1098" rx="79.0865" ry="18"/> 
-<polygon fill="blackstroke="blackpoints="4636.98,-1657.57 4647.54,-1658.46 4639.84,-1651.18 4636.98,-1657.57"/>+<text text-anchor="middlex="1159y="-1094.3" font-family="Times,serif" font-size="14.00">pnj:silvo_campolin</text>
 </g> </g>
-<!-- lore:gangs:groupe_leonkavallo&#45;&gt;pnj:marcello --> +<!-- lore:lieux:munich&#45;&gt;pnj:silvo_campolin --> 
-<g id="edge114" class="edge"><title>lore:gangs:groupe_leonkavallo&#45;&gt;pnj:marcello</title> +<g id="edge105" class="edge"><title>lore:lieux:munich&#45;&gt;pnj:silvo_campolin</title> 
-<path fill="none" stroke="black" d="M4481.65,-1476.02C4471.02,-1494.15 4449.63,-1523.55 4430,-1548 4422.02,-1557.95 4412.87,-1568.62 4404.23,-1577.76"/> +<path fill="none" stroke="black" d="M2879.71,-2895.99C2641.94,-2892.23 1885.71,-2877.52 1782,-2844 1754.2,-2835.02 1752.48,-2822.29 1727,-2808 1694.4,-2789.72 1681.91,-2793.01 1651,-2772 1612.25,-2745.66 1607.51,-2732.75 1574,-2700 1381.82,-2512.19 1301.18,-2490.83 1151,-2268 955.884,-1978.51 933.956,-1883.37 837,-1548 781.381,-1355.61 894.074,-1275.15 1052,-1152 1068.96,-1138.77 1089.68,-1127.03 1108.43,-1117.99"/> 
-<polygon fill="black" stroke="black" points="4401.61,-1575.44 4397.13,-1585.04 4406.62,-1580.33 4401.61,-1575.44"/>+<polygon fill="black" stroke="black" points="1110.16,-1121.05 1117.74,-1113.64 1107.2,-1114.7 1110.16,-1121.05"/>
 </g> </g>
-<!-- lore:gangs:groupe_leonkavallo&#45;&gt;pnj:theodore_smith --> +<!-- lore:gangs:dorf_et_obere --> 
-<g id="edge117" class="edge"><title>lore:gangs:groupe_leonkavallo&#45;&gt;pnj:theodore_smith</title> +<g id="node17" class="node" onclick="click(evt)"><title>lore:gangs:dorf_et_obere</title> 
-<path fill="none" stroke="blackd="M4436.53,-1441.64C4399.87,-1430.48 4350.27,-1415.39 4312.5,-1403.89"/> +<ellipse fill="#63356c" fill-opacity="0.733333" stroke="#63356cstroke-opacity="0.733333" cx="786" cy="-522" rx="101.282" ry="18"/> 
-<polygon fill="blackstroke="blackpoints="4313.26,-1400.46 4302.67,-1400.9 4311.22,-1407.16 4313.26,-1400.46"/>+<text text-anchor="middlex="786y="-518.3" font-family="Times,serif" font-size="14.00">lore:gangs:dorf_et_obere</text>
 </g> </g>
-<!-- pnj:moman&#45;&gt;lore:lieux:milan --> +<!-- lore:lieux:munich&#45;&gt;lore:gangs:dorf_et_obere --> 
-<g id="edge604" class="edge"><title>pnj:moman&#45;&gt;lore:lieux:milan</title> +<g id="edge127" class="edge"><title>lore:lieux:munich&#45;&gt;lore:gangs:dorf_et_obere</title> 
-<path fill="none" stroke="black" d="M4315.46,-1475.31C4322.36,-1483.67 4330.02,-1494.05 4336.27,-1503.44"/> +<path fill="none" stroke="black" d="M2880.21,-2895.25C2709.25,-2890.55 2283.73,-2875.76 2228,-2844 2206.83,-2831.94 1736.69,-2146.35 1727,-2124 1710.91,-2086.89 1708,-2075.45 1708,-2035 1708,-2035 1708,-2035 1708,-1529 1708,-1433.55 1690,-1410.45 1690,-1315 1690,-1315 1690,-1315 1690,-1169 1690,-1086.14 1659.23,-1061.55 1596,-1008 1562.49,-979.623 1537.24,-1000.69 1504,-972 1434.22,-911.778 1477.45,-843.494 1401,-792 1302.05,-725.35 1242.61,-807.51 1135,-756 1093.03,-735.91 1083.16,-723.765 1059,-684 1033.07,-641.322 1064.42,-610.165 1028,-576 1006.46,-555.799 938.413,-542.021 879.938,-533.587"/> 
-<polygon fill="black" stroke="black" points="4333.44,-1505.51 4341.77,-1512.05 4339.34,-1501.74 4333.44,-1505.51"/>+<polygon fill="black" stroke="black" points="880.287,-530.102 869.897,-532.177 879.313,-537.034 880.287,-530.102"/>
 </g> </g>
-<!-- pj:sven --> +<!-- pnj:camillia_campolin --> 
-<g id="node49" class="node"><title>pj:sven</title> +<g id="node18" class="node" onclick="click(evt)"><title>pnj:camillia_campolin</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfee" cx="967" cy="-2322" rx="36.2938" ry="18"/> +<ellipse fill="#e5b030" fill-opacity="0.733333" stroke="#e5b030" stroke-opacity="0.733333" cx="1159" cy="-1170" rx="89.0842" ry="18"/> 
-<text text-anchor="middle" x="967" y="-2318.3" font-family="Times,serif" font-size="14.00">pj:sven</text>+<text text-anchor="middle" x="1159" y="-1166.3" font-family="Times,serif" font-size="14.00">pnj:camillia_campolin</text>
 </g> </g>
-<!-- pnj:moman&#45;&gt;pj:sven --> +<!-- lore:lieux:munich&#45;&gt;pnj:camillia_campolin --> 
-<g id="edge605" class="edge"><title>pnj:moman&#45;&gt;pj:sven</title> +<g id="edge133" class="edge"><title>lore:lieux:munich&#45;&gt;pnj:camillia_campolin</title> 
-<path fill="none" stroke="black" d="M4247.56,-1460.42C3965.86,-1469.31 2560.05,-1526.13 1453,-1800 1409.57,-1810.74 1400.96,-1820.49 1359,-1836 1314.3,-1852.52 1294.17,-1840.98 1258,-1872 1106.14,-2002.23 1177.66,-2119.15 1044,-2268 1031.52,-2281.9 1014.69,-2294.01 999.955,-2303.14"/> +<path fill="none" stroke="black" d="M2879.67,-2895.81C2635.91,-2891.38 1845.53,-2874.51 1736,-2844 1735.81,-2843.95 1538.18,-2736.08 1538,-2736 1491.19,-2715.7 1472.32,-2726.94 1429,-2700 1238.45,-2581.49 1196.02,-2528.97 1075,-2340 888.991,-2049.56 832,-1947.9 832,-1603 832,-1603 832,-1603 832,-1529 832,-1363 1025.48,-1238.15 1114.87,-1191.25"/> 
-<polygon fill="black" stroke="black" points="997.896,-2300.29 991.105,-2308.42 1001.49,-2306.3 997.896,-2300.29"/>+<polygon fill="black" stroke="black" points="1116.68,-1194.26 1123.96,-1186.57 1113.47,-1188.04 1116.68,-1194.26"/>
 </g> </g>
-<!-- pnj:moman&#45;&gt;pnj:theodore_smith --> +<!-- pnj:lisa_bergstein --> 
-<g id="edge603" class="edge"><title>pnj:moman&#45;&gt;pnj:theodore_smith</title> +<g id="node19" class="node" onclick="click(evt)"><title>pnj:lisa_bergstein</title> 
-<path fill="none" stroke="blackd="M4288.08,-1440.05C4283.31,-1431.92 4277.5,-1422 4272.19,-1412.94"/> +<ellipse fill="#e5b030" fill-opacity="0.733333" stroke="#e5b030stroke-opacity="0.733333" cx="1120" cy="-2826" rx="73.387" ry="18"/> 
-<polygon fill="blackstroke="blackpoints="4275.19,-1411.14 4267.12,-1404.28 4269.15,-1414.67 4275.19,-1411.14"/>+<text text-anchor="middlex="1120y="-2822.3" font-family="Times,serif" font-size="14.00">pnj:lisa_bergstein</text>
 </g> </g>
-<!-- pnj:brendanodunn --> +<!-- lore:lieux:munich&#45;&gt;pnj:lisa_bergstein --> 
-<g id="node8" class="node"><title>pnj:brendanodunn</title> +<g id="edge124" class="edge"><title>lore:lieux:munich&#45;&gt;pnj:lisa_bergstein</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfeecx="391" cy="-738" rx="76.0865" ry="18"/> +<path fill="none" stroke="blackd="M2879.51,-2896.41C2593.47,-2893.75 1531.39,-2881.39 1198,-2844 1191.68,-2843.29 1185.13,-2842.37 1178.63,-2841.32"/> 
-<text text-anchor="middlex="391y="-734.3" font-family="Times,serif" font-size="14.00">pnj:brendanodunn</text>+<polygon fill="blackstroke="blackpoints="1178.94,-2837.82 1168.49,-2839.58 1177.75,-2844.72 1178.94,-2837.82"/>
 </g> </g>
-<!-- pnj:tristanodunn --> +<!-- pnj:theodore_smith --> 
-<g id="node9" class="node"><title>pnj:tristanodunn</title> +<g id="node41" class="node" onclick="click(evt)"><title>pnj:theodore_smith</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfee" cx="589" cy="-810" rx="68.7879" ry="18"/> +<ellipse fill="#e5b030" fill-opacity="0.733333" stroke="#e5b030" stroke-opacity="0.733333" cx="3382" cy="-1026" rx="80.6858" ry="18"/> 
-<text text-anchor="middle" x="589" y="-806.3" font-family="Times,serif" font-size="14.00">pnj:tristanodunn</text>+<text text-anchor="middle" x="3382" y="-1022.3" font-family="Times,serif" font-size="14.00">pnj:theodore_smith</text>
 </g> </g>
-<!-- pnj:brendanodunn&#45;&gt;pnj:tristanodunn --> +<!-- lore:lieux:munich&#45;&gt;pnj:theodore_smith --> 
-<g id="edge9" class="edge"><title>pnj:brendanodunn&#45;&gt;pnj:tristanodunn</title> +<g id="edge134" class="edge"><title>lore:lieux:munich&#45;&gt;pnj:theodore_smith</title> 
-<path fill="none" stroke="black" d="M435.448,-752.771C467.801,-763.684 511.35,-779.021 543.858,-790.922"/> +<path fill="none" stroke="black" d="M2879.51,-2897.05C2742.34,-2893.29 2456,-2864.16 2456,-2683 2456,-2683 2456,-2683 2456,-2465 2456,-2327.41 2449.76,-2284.18 2509,-2160 2586.4,-1997.75 2639.9,-1966.22 2793,-1872 3077.2,-1697.09 3494,-1936.71 3494,-1603 3494,-1603 3494,-1603 3494,-1529 3494,-1388.23 3307.2,-1458.77 3246,-1332 3239.04,-1317.59 3242.5,-1311.61 3246,-1296 3247.45,-1289.52 3328.7,-1119.49 3365.15,-1053.15"/> 
-<polygon fill="black" stroke="black" points="542.974,-794.326 553.567,-794.496 545.392,-787.757 542.974,-794.326"/>+<polygon fill="black" stroke="black" points="3368.36,-1054.59 3370.18,-1044.15 3362.25,-1051.17 3368.36,-1054.59"/>
 </g> </g>
-<!-- lore:lieux:tir_na_nog --> +<!-- lore:organisations:lotus_jaune --> 
-<g id="node10" class="node"><title>lore:lieux:tir_na_nog</title> +<g id="node64" class="node" onclick="click(evt)"><title>lore:organisations:lotus_jaune</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfee" cx="965" cy="-522" rx="83.6854" ry="18"/> +<ellipse fill="#e323e9" fill-opacity="0.733333" stroke="#e323e9" stroke-opacity="0.733333" cx="3311" cy="-2610" rx="116.979" ry="18"/> 
-<text text-anchor="middle" x="965" y="-518.3" font-family="Times,serif" font-size="14.00">lore:lieux:tir_na_nog</text>+<text text-anchor="middle" x="3311" y="-2606.3" font-family="Times,serif" font-size="14.00">lore:organisations:lotus_jaune</text>
 </g> </g>
-<!-- pnj:brendanodunn&#45;&gt;lore:lieux:tir_na_nog --> +<!-- lore:lieux:munich&#45;&gt;lore:organisations:lotus_jaune --> 
-<g id="edge10" class="edge"><title>pnj:brendanodunn&#45;&gt;lore:lieux:tir_na_nog</title> +<g id="edge104" class="edge"><title>lore:lieux:munich&#45;&gt;lore:organisations:lotus_jaune</title> 
-<path fill="none" stroke="black" d="M397.818,-719.723C406.389,-699.987 422.838,-667.866 446,-648 508.282,-594.581 537.045,-598.334 616,-576 703.261,-551.317 806.248,-537.46 877.626,-530.162"/> +<path fill="none" stroke="black" d="M3021.24,-2894.56C3067.68,-2889.53 3127.65,-2876.48 3171,-2844 3180.36,-2836.98 3256.3,-2696.37 3292.49,-2637.05"/> 
-<polygon fill="black" stroke="black" points="878.321,-533.61 887.923,-529.132 877.624,-526.645 878.321,-533.61"/>+<polygon fill="black" stroke="black" points="3295.64,-2638.6 3297.94,-2628.26 3289.7,-2634.91 3295.64,-2638.6"/>
 </g> </g>
-<!-- lore:corpos:sset --> +<!-- lore:organisations:mmar --> 
-<g id="node11" class="node"><title>lore:corpos:sset</title> +<g id="node65" class="node" onclick="click(evt)"><title>lore:organisations:mmar</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfee" cx="485" cy="-234" rx="68.4888" ry="18"/> +<ellipse fill="#e323e9" fill-opacity="0.733333" stroke="#e323e9" stroke-opacity="0.733333" cx="4335" cy="-1962" rx="96.6831" ry="18"/> 
-<text text-anchor="middle" x="485" y="-230.3" font-family="Times,serif" font-size="14.00">lore:corpos:sset</text>+<text text-anchor="middle" x="4335" y="-1958.3" font-family="Times,serif" font-size="14.00">lore:organisations:mmar</text>
 </g> </g>
-<!-- pnj:brendanodunn&#45;&gt;lore:corpos:sset --> +<!-- lore:lieux:munich&#45;&gt;lore:organisations:mmar --> 
-<g id="edge11" class="edge"><title>pnj:brendanodunn&#45;&gt;lore:corpos:sset</title> +<g id="edge113" class="edge"><title>lore:lieux:munich&#45;&gt;lore:organisations:mmar</title> 
-<path fill="none" stroke="black" d="M384.191,-719.863C382.018,-701.886 382.758,-672.846 386,-648 405.286,-500.186 450.631,-326.915 473.034,-261.654"/> +<path fill="none" stroke="black" d="M3022.64,-2897.48C3144.02,-2896.88 3383.43,-2889.58 3453,-2844 3499.11,-2813.79 3470.09,-2769.33 3514,-2736 3567.24,-2695.6 3597.48,-2723.63 3660,-2700 3692.36,-2687.77 3696.16,-2674.86 3729,-2664 3825.57,-2632.06 3871.07,-2685.46 3955,-2628 4144,-2498.6 4208,-2408.05 4208,-2179 4208,-2179 4208,-2179 4208,-2105 4208,-2052.48 4256.35,-2009.01 4293.51,-1984.53"/> 
-<polygon fill="black" stroke="black" points="476.369,-262.722 476.425,-252.127 469.774,-260.375 476.369,-262.722"/>+<polygon fill="black" stroke="black" points="4295.63,-1987.33 4302.2,-1979.01 4291.88,-1981.42 4295.63,-1987.33"/>
 </g> </g>
-<!-- pnj:williamodunn --> +<!-- lore:bars:shatterwein --> 
-<g id="node12" class="node"><title>pnj:williamodunn</title> +<g id="node72" class="node" onclick="click(evt)"><title>lore:bars:shatterwein</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfee" cx="243" cy="-18" rx="71.4873" ry="18"/> +<ellipse fill="#6b706f" fill-opacity="0.733333" stroke="#6b706f" stroke-opacity="0.733333" cx="3616" cy="-2754" rx="84.485" ry="18"/> 
-<text text-anchor="middle" x="243" y="-14.3" font-family="Times,serif" font-size="14.00">pnj:williamodunn</text>+<text text-anchor="middle" x="3616" y="-2750.3" font-family="Times,serif" font-size="14.00">lore:bars:shatterwein</text>
 </g> </g>
-<!-- pnj:brendanodunn&#45;&gt;pnj:williamodunn --> +<!-- lore:lieux:munich&#45;&gt;lore:bars:shatterwein --> 
-<g id="edge12" class="edge"><title>pnj:brendanodunn&#45;&gt;pnj:williamodunn</title> +<g id="edge129" class="edge"><title>lore:lieux:munich&#45;&gt;lore:bars:shatterwein</title> 
-<path fill="none" stroke="black" d="M362.043,-721.173C286.455,-677.504 89,-547.32 89,-379 89,-379 89,-379 89,-161 89,-101.459 151.987,-59.9966 197.396,-37.8414"/> +<path fill="none" stroke="black" d="M3020.84,-2894.1C3192.98,-2886.84 3624.81,-2866.84 3646,-2844 3662.79,-2825.9 3647.64,-2799.41 3633.26,-2780.04"/> 
-<polygon fill="black" stroke="black" points="198.958,-40.9743 206.504,-33.5376 195.967,-34.6452 198.958,-40.9743"/>+<polygon fill="black" stroke="black" points="3635.91,-2777.74 3627.03,-2771.95 3630.36,-2782.01 3635.91,-2777.74"/>
 </g> </g>
-<!-- lore:organisations:danann_o_dunn --> +<!-- pnj:domovoi --> 
-<g id="node13" class="node"><title>lore:organisations:danann_o_dunn</title> +<g id="node75" class="node" onclick="click(evt)"><title>pnj:domovoi</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfee" cx="590" cy="-666" rx="134.576" ry="18"/> +<ellipse fill="#e5b030" fill-opacity="0.733333" stroke="#e5b030" stroke-opacity="0.733333" cx="3589" cy="-2826" rx="56.59" ry="18"/> 
-<text text-anchor="middle" x="590" y="-662.3" font-family="Times,serif" font-size="14.00">lore:organisations:danann_o_dunn</text>+<text text-anchor="middle" x="3589" y="-2822.3" font-family="Times,serif" font-size="14.00">pnj:domovoi</text>
 </g> </g>
-<!-- pnj:brendanodunn&#45;&gt;lore:organisations:danann_o_dunn --> +<!-- lore:lieux:munich&#45;&gt;pnj:domovoi --> 
-<g id="edge13" class="edge"><title>pnj:brendanodunn&#45;&gt;lore:organisations:danann_o_dunn</title> +<g id="edge96" class="edge"><title>lore:lieux:munich&#45;&gt;pnj:domovoi</title> 
-<path fill="none" stroke="black" d="M427.567,-722.155C456.157,-711.635 496.389,-697.43 529.698,-686.071"/> +<path fill="none" stroke="black" d="M3020.28,-2893.37C3126.18,-2887.34 3334.16,-2872.95 3509,-2844 3517,-2842.68 3525.44,-2840.95 3533.73,-2839.11"/> 
-<polygon fill="black" stroke="black" points="530.998,-689.326 539.342,-682.797 528.747,-682.698 530.998,-689.326"/>+<polygon fill="black" stroke="black" points="3534.77,-2842.46 3543.74,-2836.82 3533.21,-2835.64 3534.77,-2842.46"/>
 </g> </g>
-<!-- pnj:tristanodunn&#45;&gt;pnj:brendanodunn --> +<!-- lore:planques:squat_d_en_dol --> 
-<g id="edge85" class="edge"><title>pnj:tristanodunn&#45;&gt;pnj:brendanodunn</title> +<g id="node76" class="node" onclick="click(evt)"><title>lore:planques:squat_d_en_dol</title> 
-<path fill="none" stroke="blackd="M546.346,-795.834C514.107,-784.984 470.03,-769.473 437.011,-757.396"/> +<ellipse fill="#92c6a8" fill-opacity="0.733333" stroke="#92c6a8stroke-opacity="0.733333" cx="1387" cy="-2826" rx="119.679" ry="18"/> 
-<polygon fill="blackstroke="blackpoints="438.171,-754.094 427.577,-753.928 435.755,-760.664 438.171,-754.094"/>+<text text-anchor="middlex="1387y="-2822.3" font-family="Times,serif" font-size="14.00">lore:planques:squat_d_en_dol</text>
 </g> </g>
-<!-- pnj:tristanodunn&#45;&gt;lore:lieux:tir_na_nog --> +<!-- lore:lieux:munich&#45;&gt;lore:planques:squat_d_en_dol --> 
-<g id="edge84" class="edge"><title>pnj:tristanodunn&#45;&gt;lore:lieux:tir_na_nog</title> +<g id="edge97" class="edge"><title>lore:lieux:munich&#45;&gt;lore:planques:squat_d_en_dol</title> 
-<path fill="none" stroke="black" d="M653.416,-803.594C724.507,-796.445 833.115,-781.655 865,-756 898.831,-728.779 939.908,-605.136 956.971,-549.852"/> +<path fill="none" stroke="black" d="M2879.57,-2896.63C2669.37,-2895.06 2035.38,-2886.81 1512,-2844 1500.7,-2843.08 1488.89,-2841.89 1477.23,-2840.59"/> 
-<polygon fill="black" stroke="black" points="960.388,-550.645 959.962,-540.059 953.693,-548.6 960.388,-550.645"/>+<polygon fill="black" stroke="black" points="1477.37,-2837.08 1467.03,-2839.41 1476.56,-2844.03 1477.37,-2837.08"/>
 </g> </g>
-<!-- pnj:tristanodunn&#45;&gt;pnj:williamodunn --> +<!-- pnj:jed --> 
-<g id="edge82" class="edge"><title>pnj:tristanodunn&#45;&gt;pnj:williamodunn</title> +<g id="node77" class="node" onclick="click(evt)"><title>pnj:jed</title> 
-<path fill="none" stroke="blackd="M650.965,-802.074C707.787,-794.577 785.755,-780.305 805,-756 909.051,-624.592 795,-546.614 795,-379 795,-379 795,-379 795,-161 795,-64.0168 475.93,-32.5518 322.908,-22.9425"/> +<ellipse fill="#e5b030" fill-opacity="0.733333" stroke="#e5b030stroke-opacity="0.733333" cx="957" cy="-2826" rx="34.394" ry="18"/> 
-<polygon fill="blackstroke="blackpoints="322.824,-19.4309 312.629,-22.3142 322.397,-26.4179 322.824,-19.4309"/>+<text text-anchor="middlex="957y="-2822.3" font-family="Times,serif" font-size="14.00">pnj:jed</text>
 </g> </g>
-<!-- pnj:tristanodunn&#45;&gt;lore:organisations:danann_o_dunn --> +<!-- lore:lieux:munich&#45;&gt;pnj:jed --> 
-<g id="edge83" class="edge"><title>pnj:tristanodunn&#45;&gt;lore:organisations:danann_o_dunn</title> +<g id="edge98" class="edge"><title>lore:lieux:munich&#45;&gt;pnj:jed</title> 
-<path fill="none" stroke="black" d="M584.536,-791.871C582.148,-767.67 582.17,-723.211 584.348,-694.393"/> +<path fill="none" stroke="black" d="M2879.63,-2896.75C2576.77,-2895.4 1397.11,-2887.37 1029,-2844 1017.97,-2842.7 1006.22,-2840.64 995.428,-2838.39"/> 
-<polygon fill="black" stroke="black" points="587.856,-694.468 585.288,-684.189 580.885,-693.826 587.856,-694.468"/>+<polygon fill="black" stroke="black" points="995.955,-2834.92 985.437,-2836.19 994.454,-2841.76 995.955,-2834.92"/>
 </g> </g>
-<!-- pj:eidolon --> +<!-- lore:organisations:famille_von_schencker --> 
-<g id="node48" class="node"><title>pj:eidolon</title> +<g id="node78" class="node" onclick="click(evt)"><title>lore:organisations:famille_von_schencker</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfee" cx="743" cy="-2178" rx="46.2923" ry="18"/> +<ellipse fill="#e323e9" fill-opacity="0.733333" stroke="#e323e9" stroke-opacity="0.733333" cx="4747" cy="-2034" rx="159.472" ry="18"/> 
-<text text-anchor="middle" x="743" y="-2174.3" font-family="Times,serif" font-size="14.00">pj:eidolon</text>+<text text-anchor="middle" x="4747" y="-2030.3" font-family="Times,serif" font-size="14.00">lore:organisations:famille_von_schencker</text>
 </g> </g>
-<!-- pnj:tristanodunn&#45;&gt;pj:eidolon --> +<!-- lore:lieux:munich&#45;&gt;lore:organisations:famille_von_schencker --> 
-<g id="edge87" class="edge"><title>pnj:tristanodunn&#45;&gt;pj:eidolon</title> +<g id="edge99" class="edge"><title>lore:lieux:munich&#45;&gt;lore:organisations:famille_von_schencker</title> 
-<path fill="none" stroke="black" d="M595.898,-828.039C600.934,-854.685 604,-907.845 604,-953 604,-2035 604,-2035 604,-2035 604,-2093.93 665.844,-2136.01 707.146,-2158.4"/> +<path fill="none" stroke="black" d="M3022.57,-2896.97C3333.86,-2896.56 4561.22,-2891.87 4727,-2844 4801.84,-2822.39 4878,-2832.9 4878,-2755 4878,-2755 4878,-2755 4878,-2177 4878,-2135.53 4877.24,-2119.26 4850,-2088 4837.72,-2073.91 4820.87,-2063.27 4804.32,-2055.38"/> 
-<polygon fill="black" stroke="black" points="705.651,-2161.57 716.129,-2163.14 708.918,-2155.37 705.651,-2161.57"/>+<polygon fill="black" stroke="black" points="4805.74,-2052.18 4795.19,-2051.26 4802.87,-2058.56 4805.74,-2052.18"/>
 </g> </g>
-<!-- pnj:eidanodunn --> +<!-- lore:gangs:machinedreammck --> 
-<g id="node51" class="node"><title>pnj:eidanodunn</title> +<g id="node79" class="node" onclick="click(evt)"><title>lore:gangs:machinedreammck</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfee" cx="295" cy="-90" rx="65.7887" ry="18"/> +<ellipse fill="#63356c" fill-opacity="0.733333" stroke="#63356c" stroke-opacity="0.733333" cx="4321" cy="-2826" rx="116.979" ry="18"/> 
-<text text-anchor="middle" x="295" y="-86.3" font-family="Times,serif" font-size="14.00">pnj:eidanodunn</text>+<text text-anchor="middle" x="4321" y="-2822.3" font-family="Times,serif" font-size="14.00">lore:gangs:machinedreammck</text>
 </g> </g>
-<!-- pnj:tristanodunn&#45;&gt;pnj:eidanodunn --> +<!-- lore:lieux:munich&#45;&gt;lore:gangs:machinedreammck --> 
-<g id="edge86" class="edge"><title>pnj:tristanodunn&#45;&gt;pnj:eidanodunn</title> +<g id="edge100" class="edge"><title>lore:lieux:munich&#45;&gt;lore:gangs:machinedreammck</title> 
-<path fill="none" stroke="black" d="M521.854,-805.787C445.153,-800.545 326.653,-787.382 297,-756 158.809,-609.747 239,-508.214 239,-307 239,-307 239,-307 239,-233 239,-190.538 258.175,-144.387 274.375,-116.583"/> +<path fill="none" stroke="black" d="M3022.19,-2896.04C3211.28,-2893.07 3741.26,-2881.87 4181,-2844 4195.11,-2842.79 4210.03,-2841.17 4224.69,-2839.41"/> 
-<polygon fill="black" stroke="black" points="277.465,-118.24 279.723,-107.889 271.502,-114.572 277.465,-118.24"/>+<polygon fill="black" stroke="black" points="4225.27,-2842.87 4234.77,-2838.18 4224.42,-2835.92 4225.27,-2842.87"/>
 </g> </g>
-<!-- pj:endol --> +<!-- pnj:edrich --> 
-<g id="node46" class="node"><title>pj:endol</title> +<g id="node80" class="node" onclick="click(evt)"><title>pnj:edrich</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfee" cx="1136" cy="-2250" rx="39.7935" ry="18"/> +<ellipse fill="#e5b030" fill-opacity="0.733333" stroke="#e5b030" stroke-opacity="0.733333" cx="713" cy="-594" rx="46.2923" ry="18"/> 
-<text text-anchor="middle" x="1136" y="-2246.3" font-family="Times,serif" font-size="14.00">pj:endol</text>+<text text-anchor="middle" x="713" y="-590.3" font-family="Times,serif" font-size="14.00">pnj:edrich</text>
 </g> </g>
-<!-- lore:lieux:tir_na_nog&#45;&gt;pj:endol --> +<!-- lore:lieux:munich&#45;&gt;pnj:edrich --> 
-<g id="edge96" class="edge"><title>lore:lieux:tir_na_nog&#45;&gt;pj:endol</title> +<g id="edge101" class="edge"><title>lore:lieux:munich&#45;&gt;pnj:edrich</title> 
-<path fill="none" stroke="black" d="M981.118,-539.807C1003.43,-564.913 1041,-614.669 1041,-665 1041,-811 1041,-811 1041,-811 1041,-1002.14 1049,-1049.86 1049,-1241 1049,-1891 1049,-1891 1049,-1891 1049,-1949.07 1072.57,-1959.76 1087,-2016 1105.94,-2089.82 1123.02,-2178.17 1131.09,-2221.82"/> +<path fill="none" stroke="black" d="M2879.8,-2896.31C2627.37,-2893.52 1784.6,-2881.32 1670,-2844 1642.57,-2835.07 1641.3,-2821.85 1616,-2808 1563.63,-2779.33 1421.7,-2729.85 1370,-2700 1323.2,-2672.97 1313.13,-2663.07 1272,-2628 766.274,-2196.76 756.489,-1918.71 668,-1260 665.87,-1244.14 665.143,-1239.74 668,-1224 682.455,-1144.36 796,-963.94 796,-883 796,-883 796,-883 796,-737 796,-695.533 791.138,-682.411 768,-648 760.124,-636.286 748.919,-625.785 738.583,-617.279"/> 
-<polygon fill="black" stroke="black" points="1127.69,-2222.72 1132.94,-2231.93 1134.58,-2221.46 1127.69,-2222.72"/>+<polygon fill="black" stroke="black" points="740.566,-614.385 730.561,-610.901 736.21,-619.864 740.566,-614.385"/>
 </g> </g>
-<!-- lore:organisations:ira --> +<!-- pnj:fenihilung --> 
-<g id="node55" class="node"><title>lore:organisations:ira</title> +<g id="node81" class="node" onclick="click(evt)"><title>pnj:fenihilung</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfee" cx="1467" cy="-450" rx="85.2851" ry="18"/> +<ellipse fill="#e5b030" fill-opacity="0.733333" stroke="#e5b030" stroke-opacity="0.733333" cx="3188" cy="-2178" rx="58.4896" ry="18"/> 
-<text text-anchor="middle" x="1467" y="-446.3" font-family="Times,serif" font-size="14.00">lore:organisations:ira</text>+<text text-anchor="middle" x="3188" y="-2174.3" font-family="Times,serif" font-size="14.00">pnj:fenihilung</text>
 </g> </g>
-<!-- lore:lieux:tir_na_nog&#45;&gt;lore:organisations:ira --> +<!-- lore:lieux:munich&#45;&gt;pnj:fenihilung --> 
-<g id="edge97" class="edge"><title>lore:lieux:tir_na_nog&#45;&gt;lore:organisations:ira</title> +<g id="edge102" class="edge"><title>lore:lieux:munich&#45;&gt;pnj:fenihilung</title> 
-<path fill="none" stroke="black" d="M1031.76,-511.008C1123.38,-497.892 1287.74,-474.968 1386.19,-461.571"/> +<path fill="none" stroke="black" d="M2885.06,-2890.99C2824.29,-2883.7 2740.82,-2869.13 2721,-2844 2711.09,-2831.44 2718.74,-2823.84 2721,-2808 2730.76,-2739.7 2743.48,-2723.15 2779,-2664 2896.42,-2468.5 3088.63,-2269.03 3160.22,-2202.32"/> 
-<polygon fill="black" stroke="black" points="1386.95,-465 1396.39,-460.185 1386.01,-458.064 1386.95,-465"/>+<polygon fill="black" stroke="black" points="3162.96,-2204.55 3167.95,-2195.2 3158.22,-2199.4 3162.96,-2204.55"/>
 </g> </g>
-<!-- lore:corpos:sset&#45;&gt;pnj:brendanodunn --> +<!-- lore:organisations:fon --> 
-<g id="edge162" class="edge"><title>lore:corpos:sset&#45;&gt;pnj:brendanodunn</title> +<g id="node82" class="node" onclick="click(evt)"><title>lore:organisations:fon</title> 
-<path fill="none" stroke="blackd="M483.911,-252.127C473.558,-308.303 424.317,-492.278 404,-648 401.315,-668.576 400.346,-692.028 398.736,-709.691"/> +<ellipse fill="#e323e9" fill-opacity="0.733333" stroke="#e323e9stroke-opacity="0.733333" cx="2874" cy="-2394" rx="88.2844" ry="18"/> 
-<polygon fill="blackstroke="blackpoints="395.232,-709.543 397.63,-719.863 402.191,-710.3 395.232,-709.543"/>+<text text-anchor="middlex="2874y="-2390.3" font-family="Times,serif" font-size="14.00">lore:organisations:fon</text>
 </g> </g>
-<!-- lore:corpos:sset&#45;&gt;lore:lieux:tir_na_nog --> +<!-- lore:lieux:munich&#45;&gt;lore:organisations:fon --> 
-<g id="edge163" class="edge"><title>lore:corpos:sset&#45;&gt;lore:lieux:tir_na_nog</title> +<g id="edge103" class="edge"><title>lore:lieux:munich&#45;&gt;lore:organisations:fon</title> 
-<path fill="none" stroke="black" d="M511.295,-250.667C592.062,-298.791 836.662,-444.532 929.101,-499.61"/> +<path fill="none" stroke="black" d="M2880.68,-2894.72C2801.13,-2890.48 2678.87,-2878.39 2650,-2844 2592.39,-2775.36 2662.82,-2511.54 2726,-2448 2745.2,-2428.7 2771.91,-2416.39 2797.36,-2408.56"/> 
-<polygon fill="black" stroke="black" points="927.436,-502.692 937.818,-504.804 931.019,-496.679 927.436,-502.692"/>+<polygon fill="black" stroke="black" points="2798.39,-2411.9 2807.03,-2405.77 2796.45,-2405.17 2798.39,-2411.9"/>
 </g> </g>
-<!-- pnj:lilalee --> +<!-- pnj:az_ebo --> 
-<g id="node70" class="node"><title>pnj:lilalee</title> +<g id="node83" class="node" onclick="click(evt)"><title>pnj:az_ebo</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfee" cx="485" cy="-162" rx="43.5923" ry="18"/> +<ellipse fill="#e5b030" fill-opacity="0.733333" stroke="#e5b030" stroke-opacity="0.733333" cx="418" cy="-450" rx="50.0912" ry="18"/> 
-<text text-anchor="middle" x="485" y="-158.3" font-family="Times,serif" font-size="14.00">pnj:lilalee</text>+<text text-anchor="middle" x="418" y="-446.3" font-family="Times,serif" font-size="14.00">pnj:az_ebo</text>
 </g> </g>
-<!-- lore:corpos:sset&#45;&gt;pnj:lilalee --> +<!-- lore:lieux:munich&#45;&gt;pnj:az_ebo --> 
-<g id="edge161" class="edge"><title>lore:corpos:sset&#45;&gt;pnj:lilalee</title> +<g id="edge106" class="edge"><title>lore:lieux:munich&#45;&gt;pnj:az_ebo</title> 
-<path fill="none" stroke="black" d="M479.122,-216.055C478.304,-208.346 478.061,-199.027 478.395,-190.364"/> +<path fill="none" stroke="black" d="M2879.38,-2897.01C2575.98,-2896.77 1405.69,-2892.7 1249,-2844 1220.74,-2835.22 1220.5,-2818.92 1193,-2808 1111.9,-2775.81 1080.97,-2804.53 1000,-2772 860.598,-2716 836.597,-2671.06 740,-2556 578.758,-2363.94 268,-1781.77 268,-1531 268,-1531 268,-1531 268,-1241 268,-1139.46 188,-1128.54 188,-1027 188,-1027 188,-1027 188,-953 188,-753.519 335.984,-544.363 394.694,-474.941"/> 
-<polygon fill="black" stroke="black" points="481.894,-190.491 479.087,-180.275 474.911,-190.012 481.894,-190.491"/>+<polygon fill="black" stroke="black" points="397.51,-477.034 401.395,-467.177 392.211,-472.46 397.51,-477.034"/>
 </g> </g>
-<!-- pnj:williamodunn&#45;&gt;pnj:tristanodunn --> +<!-- pnj:niddon --> 
-<g id="edge586" class="edge"><title>pnj:williamodunn&#45;&gt;pnj:tristanodunn</title> +<g id="node84" class="node" onclick="click(evt)"><title>pnj:niddon</title> 
-<path fill="none" stroke="blackd="M313.063,-21.8044C465.437,-29.9272 813,-59.779 813,-161 813,-379 813,-379 813,-379 813,-546.614 927.051,-624.592 823,-756 803.59,-780.513 724.445,-794.821 663.448,-802.266"/> +<ellipse fill="#e5b030" fill-opacity="0.733333" stroke="#e5b030stroke-opacity="0.733333" cx="3855" cy="-2250" rx="49.2915" ry="18"/> 
-<polygon fill="blackstroke="blackpoints="662.964,-798.798 653.443,-803.446 663.784,-805.75 662.964,-798.798"/>+<text text-anchor="middlex="3855y="-2246.3" font-family="Times,serif" font-size="14.00">pnj:niddon</text>
 </g> </g>
-<!-- pnj:williamodunn&#45;&gt;lore:lieux:tir_na_nog --> +<!-- lore:lieux:munich&#45;&gt;pnj:niddon --> 
-<g id="edge583" class="edge"><title>pnj:williamodunn&#45;&gt;lore:lieux:tir_na_nog</title> +<g id="edge107" class="edge"><title>lore:lieux:munich&#45;&gt;pnj:niddon</title> 
-<path fill="none" stroke="black" d="M314.536,-18.0772C496.922,-17.6388 965,-29.3392 965,-161 965,-379 965,-379 965,-379 965,-419.004 965,-465.347 965,-493.92"/> +<path fill="none" stroke="black" d="M3020.08,-2893.02C3110.07,-2886.94 3261.29,-2872.88 3309,-2844 3359.65,-2813.34 3340.61,-2772.79 3387,-2736 3572.27,-2589.08 3846,-2703.45 3846,-2467 3846,-2467 3846,-2467 3846,-2393 3846,-2353 3846,-2306.65 3848.29,-2278.08"/> 
-<polygon fill="black" stroke="black" points="961.5,-493.951 965,-503.951 968.5,-493.951 961.5,-493.951"/>+<polygon fill="black" stroke="black" points="3851.78,-2278.35 3849.29,-2268.05 3844.82,-2277.65 3851.78,-2278.35"/>
 </g> </g>
-<!-- pnj:williamodunn&#45;&gt;lore:organisations:danann_o_dunn --> +<!-- pnj:gutwayn --> 
-<g id="edge582" class="edge"><title>pnj:williamodunn&#45;&gt;lore:organisations:danann_o_dunn</title> +<g id="node85" class="node" onclick="click(evt)"><title>pnj:gutwayn</title> 
-<path fill="none" stroke="blackd="M238.252,-36.2142C226.495,-62.2346 201,-113.588 201,-161 201,-307 201,-307 201,-307 201,-488.825 433.45,-601.826 539.043,-645.004"/> +<ellipse fill="#e5b030" fill-opacity="0.733333" stroke="#e5b030stroke-opacity="0.733333" cx="622" cy="-738" rx="53.8905" ry="18"/> 
-<polygon fill="blackstroke="blackpoints="537.967,-648.344 548.55,-648.844 540.589,-641.854 537.967,-648.344"/>+<text text-anchor="middlex="622y="-734.3" font-family="Times,serif" font-size="14.00">pnj:gutwayn</text>
 </g> </g>
-<!-- pnj:williamodunn&#45;&gt;pj:eidolon --> +<!-- lore:lieux:munich&#45;&gt;pnj:gutwayn --> 
-<g id="edge585" class="edge"><title>pnj:williamodunn&#45;&gt;pj:eidolon</title> +<g id="edge108" class="edge"><title>lore:lieux:munich&#45;&gt;pnj:gutwayn</title> 
-<path fill="none" stroke="black" d="M191.532,-30.6161C129.85,-47.2881 35,-84.7988 35,-161 35,-1315 35,-1315 35,-1315 35,-1605.57 348,-1598.43 348,-1889 348,-2035 348,-2035 348,-2035 348,-2095.5 396.352,-2098.04 451,-2124 527.683,-2160.42 626.085,-2172.02 686.91,-2175.6"/> +<path fill="none" stroke="black" d="M2879.51,-2896.33C2613.97,-2893.5 1693.68,-2880.94 1568,-2844 1537.8,-2835.12 1535.88,-2820.53 1507,-2808 1350.63,-2740.16 1299.34,-2757.85 1139,-2700 1062.97,-2672.57 1037.1,-2675.91 972,-2628 836.19,-2528.05 812.118,-2484.38 725,-2340 581.809,-2102.69 532,-2024.16 532,-1747 532,-1747 532,-1747 532,-1673 532,-1671.68 400,-1316.32 400,-1315 400,-1315 400,-1315 400,-1169 400,-1124.33 471.631,-965.784 528,-864 548.447,-827.079 576.749,-787.216 597.198,-762.678"/> 
-<polygon fill="black" stroke="black" points="686.905,-2179.1 697.077,-2176.14 687.278,-2172.11 686.905,-2179.1"/>+<polygon fill="black" stroke="black" points="599.956,-764.839 603.81,-754.97 594.643,-760.281 599.956,-764.839"/>
 </g> </g>
-<!-- pnj:williamodunn&#45;&gt;pnj:eidanodunn --> +<!-- pnj:sokouzy --> 
-<g id="edge584" class="edge"><title>pnj:williamodunn&#45;&gt;pnj:eidanodunn</title> +<g id="node86" class="node" onclick="click(evt)"><title>pnj:sokouzy</title> 
-<path fill="none" stroke="blackd="M261.333,-35.789C268.405,-44.1057 276.215,-54.3238 282.633,-63.5751"/> +<ellipse fill="#e5b030" fill-opacity="0.733333" stroke="#e5b030stroke-opacity="0.733333" cx="2803" cy="-2826" rx="54.6905" ry="18"/> 
-<polygon fill="blackstroke="blackpoints="279.829,-65.6787 288.29,-72.055 285.652,-61.7938 279.829,-65.6787"/>+<text text-anchor="middlex="2803y="-2822.3" font-family="Times,serif" font-size="14.00">pnj:sokouzy</text>
 </g> </g>
-<!-- lore:organisations:danann_o_dunn&#45;&gt;pnj:brendanodunn --> +<!-- lore:lieux:munich&#45;&gt;pnj:sokouzy --> 
-<g id="edge524" class="edge"><title>lore:organisations:danann_o_dunn&#45;&gt;pnj:brendanodunn</title> +<g id="edge110" class="edge"><title>lore:lieux:munich&#45;&gt;pnj:sokouzy</title> 
-<path fill="none" stroke="black" d="M549.72,-683.208C519.494,-694.279 477.911,-708.914 444.846,-720.124"/> +<path fill="none" stroke="black" d="M2914.36,-2882.33C2890.99,-2871.9 2860.98,-2857.78 2837.94,-2846.42"/> 
-<polygon fill="black" stroke="black" points="443.679,-716.824 435.323,-723.337 445.917,-723.457 443.679,-716.824"/>+<polygon fill="black" stroke="black" points="2839.36,-2843.22 2828.85,-2841.9 2836.25,-2849.48 2839.36,-2843.22"/>
 </g> </g>
-<!-- lore:organisations:danann_o_dunn&#45;&gt;pnj:tristanodunn --> +<!-- lore:planques:box_m2 --> 
-<g id="edge526" class="edge"><title>lore:organisations:danann_o_dunn&#45;&gt;pnj:tristanodunn</title> +<g id="node87" class="node" onclick="click(evt)"><title>lore:planques:box_m2</title> 
-<path fill="none" stroke="blackd="M594.47,-684.189C596.854,-708.424 596.828,-752.888 594.646,-781.679"/> +<ellipse fill="#92c6a8" fill-opacity="0.733333" stroke="#92c6a8stroke-opacity="0.733333" cx="4529" cy="-1674" rx="90.9839" ry="18"/> 
-<polygon fill="blackstroke="blackpoints="591.14,-781.592 593.705,-791.871 598.11,-782.236 591.14,-781.592"/>+<text text-anchor="middlex="4529y="-1670.3" font-family="Times,serif" font-size="14.00">lore:planques:box_m2</text>
 </g> </g>
-<!-- lore:organisations:danann_o_dunn&#45;&gt;lore:lieux:tir_na_nog --> +<!-- lore:lieux:munich&#45;&gt;lore:planques:box_m2 --> 
-<g id="edge525" class="edge"><title>lore:organisations:danann_o_dunn&#45;&gt;lore:lieux:tir_na_nog</title> +<g id="edge111" class="edge"><title>lore:lieux:munich&#45;&gt;lore:planques:box_m2</title> 
-<path fill="none" stroke="black" d="M597.729,-647.779C607.944,-627.152 627.979,-593.23 656,-576 692.386,-553.627 800.305,-538.765 878.367,-530.615"/> +<path fill="none" stroke="black" d="M3002.11,-2885.29C3027.42,-2877.46 3056.72,-2864.67 3077,-2844 3106.55,-2813.89 3110,-2797.19 3110,-2755 3110,-2755 3110,-2755 3110,-2681 3110,-2585 3167.48,-2561.59 3254,-2520 3307.65,-2494.21 3326.41,-2502.47 3383,-2484 3426.32,-2469.86 3435.36,-2461.12 3479,-2448 3547.56,-2427.39 3591.39,-2467.99 3636,-2412 3645.97,-2399.49 3639.35,-2391.65 3636,-2376 3635.8,-2375.06 3523.34,-2124.9 3523,-2124 3511.24,-2092.67 3505.94,-2085.09 3501,-2052 3493.8,-2003.8 3484.15,-1977.01 3520,-1944 3587.41,-1881.93 3636.15,-1937.2 3723,-1908 3822.86,-1874.43 3834.74,-1835.29 3934,-1800 4109,-1737.78 4324.94,-1701.54 4442.64,-1685.32"/> 
-<polygon fill="black" stroke="black" points="879.101,-534.058 888.692,-529.557 878.387,-527.094 879.101,-534.058"/>+<polygon fill="black" stroke="black" points="4443.25,-1688.77 4452.68,-1683.95 4442.3,-1681.83 4443.25,-1688.77"/>
 </g> </g>
-<!-- lore:organisations:danann_o_dunn&#45;&gt;pnj:williamodunn --> +<!-- pnj:janiscalvin --> 
-<g id="edge527" class="edge"><title>lore:organisations:danann_o_dunn&#45;&gt;pnj:williamodunn</title> +<g id="node88" class="node" onclick="click(evt)"><title>pnj:janiscalvin</title> 
-<path fill="none" stroke="blackd="M540.17,-649.14C431.416,-609.381 183,-494.966 183,-307 183,-307 183,-307 183,-161 183,-118.168 203.807,-72.1191 221.186,-44.4376"/> +<ellipse fill="#e5b030" fill-opacity="0.733333" stroke="#e5b030stroke-opacity="0.733333" cx="3950" cy="-2826" rx="61.1893" ry="18"/> 
-<polygon fill="blackstroke="blackpoints="224.312,-46.0558 226.913,-35.7853 218.475,-42.192 224.312,-46.0558"/>+<text text-anchor="middlex="3950y="-2822.3" font-family="Times,serif" font-size="14.00">pnj:janiscalvin</text>
 </g> </g>
-<!-- lore:organisations:danann_o_dunn&#45;&gt;pj:eidolon --> +<!-- lore:lieux:munich&#45;&gt;pnj:janiscalvin --> 
-<g id="edge522" class="edge"><title>lore:organisations:danann_o_dunn&#45;&gt;pj:eidolon</title> +<g id="edge112" class="edge"><title>lore:lieux:munich&#45;&gt;pnj:janiscalvin</title> 
-<path fill="none" stroke="black" d="M603.264,-684.188C620.516,-707.387 650.405,-750.597 667,-792 682.048,-829.543 686,-840.553 686,-881 686,-2035 686,-2035 686,-2035 686,-2075.97 693.664,-2086.43 710,-2124 714.17,-2133.59 719.884,-2143.48 725.387,-2152.08"/> +<path fill="none" stroke="black" d="M3020.9,-2894.11C3167.34,-2887.94 3516.63,-2871.73 3809,-2844 3833.66,-2841.66 3860.81,-2838.3 3884.7,-2835.18"/> 
-<polygon fill="black" stroke="black" points="722.53,-2154.11 730.97,-2160.51 728.366,-2150.24 722.53,-2154.11"/>+<polygon fill="black" stroke="black" points="3885.26,-2838.64 3894.72,-2833.87 3884.35,-2831.7 3885.26,-2838.64"/>
 </g> </g>
-<!-- lore:organisations:danann_o_dunn&#45;&gt;pnj:eidanodunn --> +<!-- pnj:joachim_finkerbachen --> 
-<g id="edge529" class="edge"><title>lore:organisations:danann_o_dunn&#45;&gt;pnj:eidanodunn</title> +<g id="node89" class="node" onclick="click(evt)"><title>pnj:joachim_finkerbachen</title> 
-<path fill="none" stroke="blackd="M575.944,-647.869C532.854,-586.282 402.948,-369.701 318,-180 308.856,-159.581 300.381,-135.684 295.809,-117.797"/> +<ellipse fill="#e5b030" fill-opacity="0.733333" stroke="#e5b030stroke-opacity="0.733333" cx="1312" cy="-2970" rx="103.182" ry="18"/> 
-<polygon fill="blackstroke="blackpoints="299.22,-117.009 293.594,-108.032 292.393,-118.558 299.22,-117.009"/>+<text text-anchor="middlex="1312y="-2966.3" font-family="Times,serif" font-size="14.00">pnj:joachim_finkerbachen</text>
 </g> </g>
-<!-- lore:organisations:danann_o_dunn&#45;&gt;pnj:lilalee --> +<!-- lore:lieux:munich&#45;&gt;pnj:joachim_finkerbachen --> 
-<g id="edge523" class="edge"><title>lore:organisations:danann_o_dunn&#45;&gt;pnj:lilalee</title> +<g id="edge114" class="edge"><title>lore:lieux:munich&#45;&gt;pnj:joachim_finkerbachen</title> 
-<path fill="none" stroke="black" d="M584.288,-647.951C581,-621.292 581,-568.115 581,-523 581,-523 581,-523 581,-305 581,-263.533 577.643,-249.35 553,-216 543.205,-202.744 529.062,-191.664 516.126,-183.12"/> +<path fill="none" stroke="black" d="M2881.36,-2902.1C2625.23,-2913.25 1734.48,-2951.3 1421.62,-2964.47"/> 
-<polygon fill="black" stroke="black" points="517.752,-180.007 507.43,-177.615 514.007,-185.922 517.752,-180.007"/>+<polygon fill="black" stroke="black" points="1421.03,-2960.99 1411.19,-2964.91 1421.33,-2967.98 1421.03,-2960.99"/>
 </g> </g>
-<!-- pnj:damonneone --> +<!-- pnj:gin --> 
-<g id="node84" class="node"><title>pnj:damonneone</title> +<g id="node90" class="node" onclick="click(evt)"><title>pnj:gin</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfee" cx="735" cy="-594" rx="70.3881" ry="18"/> +<ellipse fill="#e5b030" fill-opacity="0.733333" stroke="#e5b030" stroke-opacity="0.733333" cx="3647" cy="-2466" rx="34.394" ry="18"/> 
-<text text-anchor="middle" x="735" y="-590.3" font-family="Times,serif" font-size="14.00">pnj:damonneone</text>+<text text-anchor="middle" x="3647" y="-2462.3" font-family="Times,serif" font-size="14.00">pnj:gin</text>
 </g> </g>
-<!-- lore:organisations:danann_o_dunn&#45;&gt;pnj:damonneone --> +<!-- lore:lieux:munich&#45;&gt;pnj:gin --> 
-<g id="edge528" class="edge"><title>lore:organisations:danann_o_dunn&#45;&gt;pnj:damonneone</title> +<g id="edge115" class="edge"><title>lore:lieux:munich&#45;&gt;pnj:gin</title> 
-<path fill="none" stroke="black" d="M618.872,-648.233C639.187,-637.888 666.653,-624.595 689.821,-613.881"/> +<path fill="none" stroke="black" d="M3020.47,-2893.7C3073.98,-2888.53 3148.19,-2875.67 3206,-2844 3264.44,-2811.98 3263.49,-2783.72 3310,-2736 3341.37,-2703.81 3347.3,-2693.74 3381,-2664 3400.73,-2646.59 3413.09,-2649.68 3428,-2628 3456.38,-2586.76 3424.47,-2555.26 3460,-2520 3501.04,-2479.28 3529.69,-2500.83 3585,-2484 3591.93,-2481.89 3599.34,-2479.56 3606.59,-2477.32"/> 
-<polygon fill="black" stroke="black" points="691.493,-616.965 699.123,-609.613 688.574,-610.602 691.493,-616.965"/>+<polygon fill="black" stroke="black" points="3607.77,-2480.62 3616.31,-2474.35 3605.72,-2473.92 3607.77,-2480.62"/>
 </g> </g>
-<!-- lore:lieux:zweibruecken --> +<!-- pnj:youzo --> 
-<g id="node14" class="node"><title>lore:lieux:zweibruecken</title> +<g id="node91" class="node" onclick="click(evt)"><title>pnj:youzo</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfee" cx="4942" cy="-2754" rx="94.4839" ry="18"/> +<ellipse fill="#e5b030" fill-opacity="0.733333" stroke="#e5b030" stroke-opacity="0.733333" cx="2868" cy="-2754" rx="46.2923" ry="18"/> 
-<text text-anchor="middle" x="4942" y="-2750.3" font-family="Times,serif" font-size="14.00">lore:lieux:zweibruecken</text>+<text text-anchor="middle" x="2868" y="-2750.3" font-family="Times,serif" font-size="14.00">pnj:youzo</text>
 </g> </g>
-<!-- lore:lieux:sox --> +<!-- lore:lieux:munich&#45;&gt;pnj:youzo --> 
-<g id="node15" class="node"><title>lore:lieux:sox</title> +<g id="edge116" class="edge"><title>lore:lieux:munich&#45;&gt;pnj:youzo</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfeecx="5282" cy="-2826" rx="57.6901" ry="18"/> +<path fill="none" stroke="blackd="M2936.6,-2880.15C2919.71,-2855.73 2892.85,-2810.26 2878.03,-2781.38"/> 
-<text text-anchor="middlex="5282y="-2822.3" font-family="Times,serif" font-size="14.00">lore:lieux:sox</text>+<polygon fill="blackstroke="blackpoints="2881.08,-2779.66 2873.49,-2772.27 2874.82,-2782.78 2881.08,-2779.66"/>
 </g> </g>
-<!-- lore:lieux:zweibruecken&#45;&gt;lore:lieux:sox --> +<!-- pnj:song_mi --> 
-<g id="edge14" class="edge"><title>lore:lieux:zweibruecken&#45;&gt;lore:lieux:sox</title> +<g id="node92" class="node" onclick="click(evt)"><title>pnj:song_mi</title> 
-<path fill="none" stroke="blackd="M5006.51,-2767.2C5070.19,-2779.9 5166.41,-2799.71 5226.7,-2812.52"/> +<ellipse fill="#e5b030" fill-opacity="0.733333" stroke="#e5b030stroke-opacity="0.733333" cx="3885" cy="-2754" rx="55.4913" ry="18"/> 
-<polygon fill="blackstroke="blackpoints="5226.28,-2816.01 5236.79,-2814.67 5227.74,-2809.16 5226.28,-2816.01"/>+<text text-anchor="middlex="3885y="-2750.3" font-family="Times,serif" font-size="14.00">pnj:song_mi</text>
 </g> </g>
-<!-- lore:organisations:rote_kasern --> +<!-- lore:lieux:munich&#45;&gt;pnj:song_mi --> 
-<g id="node16" class="node"><title>lore:organisations:rote_kasern</title> +<g id="edge118" class="edge"><title>lore:lieux:munich&#45;&gt;pnj:song_mi</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfee" cx="5196cy="-2682" rx="118.079" ry="18"/> +<path fill="none" stroke="blackd="M3022.51,-2897.37C3193.08,-2897.36 3619.18,-2892.22 3753,-2844 3792.61,-2829.73 3830.67,-2798.62 3855.88,-2777.24"/> 
-<text text-anchor="middlex="5196y="-2678.3" font-family="Times,serif" font-size="14.00">lore:organisations:rote_kasern</text>+<polygon fill="blackstroke="blackpoints="3858.25,-2779.82 3863.6,-2770.68 3853.72,-2774.49 3858.25,-2779.82"/>
 </g> </g>
-<!-- lore:lieux:zweibruecken&#45;&gt;lore:organisations:rote_kasern --> +<!-- pnj:arima --> 
-<g id="edge15" class="edge"><title>lore:lieux:zweibruecken&#45;&gt;lore:organisations:rote_kasern</title> +<g id="node93" class="node" onclick="click(evt)"><title>pnj:arima</title> 
-<path fill="none" stroke="blackd="M4989.33,-2738.41C5028.2,-2727.31 5083.65,-2712 5127.37,-2700.28"/> +<ellipse fill="#e5b030" fill-opacity="0.733333" stroke="#e5b030stroke-opacity="0.733333" cx="724" cy="-666" rx="43.5923" ry="18"/> 
-<polygon fill="blackstroke="blackpoints="5128.32,-2703.65 5137.08,-2697.69 5126.51,-2696.89 5128.32,-2703.65"/>+<text text-anchor="middlex="724y="-662.3" font-family="Times,serif" font-size="14.00">pnj:arima</text>
 </g> </g>
-<!-- lore:lieux:sox&#45;&gt;lore:lieux:zweibruecken --> +<!-- lore:lieux:munich&#45;&gt;pnj:arima --> 
-<g id="edge512" class="edge"><title>lore:lieux:sox&#45;&gt;lore:lieux:zweibruecken</title> +<g id="edge122" class="edge"><title>lore:lieux:munich&#45;&gt;pnj:arima</title> 
-<path fill="none" stroke="black" d="M5233.54,-2815.99C5175.07,-2804.44 5076.56,-2784.22 5010.38,-2770.25"/> +<path fill="none" stroke="black" d="M2879.67,-2896.16C2621.38,-2892.76 1744.37,-2878.57 1624,-2844 1593,-2835.1 1590.31,-2821.44 1561,-2808 1473.99,-2768.09 1450.02,-2762.37 1358,-2736 1286.68,-2715.56 1262.65,-2730.46 1195,-2700 1007.4,-2615.53 1017.29,-2511.73 904,-2340 819.826,-2212.41 778.758,-2191.38 716,-2052 639.461,-1882.01 494,-1429.42 494,-1243 494,-1243 494,-1243 494,-1097 494,-986.616 523.237,-958.671 580,-864 613.025,-808.92 641.354,-810.075 676,-756 688.806,-736.013 699.317,-711.109 707.681,-692.732"/> 
-<polygon fill="black" stroke="black" points="5010.97,-2766.8 5000.46,-2768.15 5009.52,-2773.64 5010.97,-2766.8"/>+<polygon fill="black" stroke="black" points="710.922,-694.064 711.984,-683.523 704.58,-691.101 710.922,-694.064"/>
 </g> </g>
-<!-- lore:lieux:sox&#45;&gt;lore:organisations:rote_kasern --> +<!-- lore:organisations:chrysantheme_renaissante --> 
-<g id="edge513" class="edge"><title>lore:lieux:sox&#45;&gt;lore:organisations:rote_kasern</title> +<g id="node94" class="node" onclick="click(evt)"><title>lore:organisations:chrysantheme_renaissante</title> 
-<path fill="none" stroke="blackd="M5226.97,-2820.33C5194.15,-2814.5 5155.2,-2801.4 5135,-2772 5120.17,-2750.42 5139.28,-2724.44 5160.05,-2706.13"/> +<ellipse fill="#e323e9" fill-opacity="0.733333" stroke="#e323e9stroke-opacity="0.733333" cx="3648" cy="-2538" rx="170.07" ry="18"/> 
-<polygon fill="blackstroke="blackpoints="5162.57,-2708.59 5168.03,-2699.52 5158.1,-2703.21 5162.57,-2708.59"/>+<text text-anchor="middlex="3648y="-2534.3" font-family="Times,serif" font-size="14.00">lore:organisations:chrysantheme_renaissante</text>
 </g> </g>
-<!-- lore:lieux:nancy --> +<!-- lore:lieux:munich&#45;&gt;lore:organisations:chrysantheme_renaissante --> 
-<g id="node22" class="node"><title>lore:lieux:nancy</title> +<g id="edge123" class="edge"><title>lore:lieux:munich&#45;&gt;lore:organisations:chrysantheme_renaissante</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfee" cx="6295cy="-2898" rx="66.0889" ry="18"/> +<path fill="none" stroke="blackd="M3020.81,-2893.92C3107.95,-2888.78 3250.61,-2875.68 3292,-2844 3333.71,-2812.07 3305.76,-2775.83 3340,-2736 3350.36,-2723.95 3533.03,-2610.18 3612.05,-2561.22"/> 
-<text text-anchor="middlex="6295y="-2894.3" font-family="Times,serif" font-size="14.00">lore:lieux:nancy</text>+<polygon fill="blackstroke="blackpoints="3614.05,-2564.1 3620.71,-2555.86 3610.37,-2558.15 3614.05,-2564.1"/>
 </g> </g>
-<!-- lore:lieux:sox&#45;&gt;lore:lieux:nancy --> +<!-- lore:gangs:1thundershock --> 
-<g id="edge511" class="edge"><title>lore:lieux:sox&#45;&gt;lore:lieux:nancy</title> +<g id="node95" class="node" onclick="click(evt)"><title>lore:gangs:1thundershock</title> 
-<path fill="none" stroke="blackd="M5338.02,-2830.65C5509.78,-2842.21 6028.63,-2878.05 6221.67,-2891.67"/> +<ellipse fill="#63356c" fill-opacity="0.733333" stroke="#63356cstroke-opacity="0.733333" cx="2002" cy="-2754" rx="102.882" ry="18"/> 
-<polygon fill="blackstroke="blackpoints="6221.49,-2895.17 6231.71,-2892.38 6221.98,-2888.18 6221.49,-2895.17"/>+<text text-anchor="middlex="2002y="-2750.3" font-family="Times,serif" font-size="14.00">lore:gangs:1thundershock</text>
 </g> </g>
-<!-- lore:organisations:swamp_rats --> +<!-- lore:lieux:munich&#45;&gt;lore:gangs:1thundershock --> 
-<g id="node69" class="node"><title>lore:organisations:swamp_rats</title> +<g id="edge126" class="edge"><title>lore:lieux:munich&#45;&gt;lore:gangs:1thundershock</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfeecx="4194" cy="-2034" rx="120.479" ry="18"/> +<path fill="none" stroke="blackd="M2879.96,-2895.97C2654.62,-2892.26 1969.28,-2878.03 1937,-2844 1918.04,-2824.01 1940.9,-2796.65 1964.71,-2777.57"/> 
-<text text-anchor="middlex="4194y="-2030.3" font-family="Times,serif" font-size="14.00">lore:organisations:swamp_rats</text>+<polygon fill="blackstroke="blackpoints="1966.93,-2780.28 1972.76,-2771.43 1962.68,-2774.71 1966.93,-2780.28"/>
 </g> </g>
-<!-- lore:lieux:sox&#45;&gt;lore:organisations:swamp_rats --> +<!-- lore:organisations:munich_people_voice --> 
-<g id="edge510" class="edge"><title>lore:lieux:sox&#45;&gt;lore:organisations:swamp_rats</title> +<g id="node96" class="node" onclick="click(evt)"><title>lore:organisations:munich_people_voice</title> 
-<path fill="none" stroke="blackd="M5277.08,-2808C5277.07,-2787.92 5284.43,-2754.87 5305,-2736 5351.08,-2693.74 5387.49,-2732.35 5441,-2700 5510.85,-2657.77 5519.14,-2629.33 5555,-2556 5604.32,-2455.16 5627.99,-2371.1 5538,-2304 5340.76,-2156.93 4588.61,-2072.66 4303.97,-2045.12"/> +<ellipse fill="#e323e9" fill-opacity="0.733333" stroke="#e323e9stroke-opacity="0.733333" cx="3954" cy="-2682" rx="155.972" ry="18"/> 
-<polygon fill="blackstroke="blackpoints="4303.92,-2041.6 4293.63,-2044.12 4303.25,-2048.56 4303.92,-2041.6"/>+<text text-anchor="middlex="3954y="-2678.3" font-family="Times,serif" font-size="14.00">lore:organisations:munich_people_voice</text>
 </g> </g>
-<!-- lore:organisations:rote_kasern&#45;&gt;lore:lieux:zweibruecken --> +<!-- lore:lieux:munich&#45;&gt;lore:organisations:munich_people_voice --> 
-<g id="edge242" class="edge"><title>lore:organisations:rote_kasern&#45;&gt;lore:lieux:zweibruecken</title> +<g id="edge130" class="edge"><title>lore:lieux:munich&#45;&gt;lore:organisations:munich_people_voice</title> 
-<path fill="none" stroke="black" d="M5146.06,-2698.33C5106.23,-2709.69 5050.23,-2725.13 5006.93,-2736.71"/> +<path fill="none" stroke="black" d="M3021.01,-2894.05C3190.47,-2886.81 3612.86,-2867.08 3673,-2844 3746.04,-2815.97 3744.1,-2774.86 3812,-2736 3835.33,-2722.65 3862.68,-2711.12 3887.18,-2702.25"/> 
-<polygon fill="black" stroke="black" points="5005.82,-2733.38 4997.06,-2739.34 5007.62,-2740.14 5005.82,-2733.38"/>+<polygon fill="black" stroke="black" points="3888.5,-2705.5 3896.76,-2698.87 3886.17,-2698.9 3888.5,-2705.5"/>
 </g> </g>
-<!-- lore:organisations:rote_kasern&#45;&gt;lore:lieux:sox --> +<!-- pnj:milla --> 
-<g id="edge240" class="edge"><title>lore:organisations:rote_kasern&#45;&gt;lore:lieux:sox</title> +<g id="node97" class="node" onclick="click(evt)"><title>pnj:milla</title> 
-<path fill="none" stroke="blackd="M5180.53,-2700.18C5162.08,-2718.45 5136.48,-2747.96 5153,-2772 5168.59,-2794.69 5195.34,-2807.67 5220.5,-2815.09"/> +<ellipse fill="#e5b030" fill-opacity="0.733333" stroke="#e5b030stroke-opacity="0.733333" cx="2899" cy="-2682" rx="40.0939" ry="18"/> 
-<polygon fill="blackstroke="blackpoints="5219.84,-2818.54 5230.41,-2817.77 5221.67,-2811.78 5219.84,-2818.54"/>+<text text-anchor="middlex="2899y="-2678.3" font-family="Times,serif" font-size="14.00">pnj:milla</text>
 </g> </g>
-<!-- lore:lieux:europe --> +<!-- lore:lieux:munich&#45;&gt;pnj:milla --> 
-<g id="node23" class="node"><title>lore:lieux:europe</title> +<g id="edge131" class="edge"><title>lore:lieux:munich&#45;&gt;pnj:milla</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfee" cx="5495cy="-1242" rx="69.5877" ry="18"/> +<path fill="none" stroke="blackd="M2944.01,-2879.75C2937.44,-2849.91 2929.7,-2786.98 2914,-2736 2911.3,-2727.22 2907.48,-2717.98 2904.09,-2709.72"/> 
-<text text-anchor="middlex="5495y="-1238.3" font-family="Times,serif" font-size="14.00">lore:lieux:europe</text>+<polygon fill="blackstroke="blackpoints="2907.25,-2708.2 2900.27,-2700.23 2900.76,-2710.82 2907.25,-2708.2"/>
 </g> </g>
-<!-- lore:organisations:rote_kasern&#45;&gt;lore:lieux:europe --> +<!-- pnj:stocks --> 
-<g id="edge241" class="edge"><title>lore:organisations:rote_kasern&#45;&gt;lore:lieux:europe</title> +<g id="node98" class="node" onclick="click(evt)"><title>pnj:stocks</title> 
-<path fill="none" stroke="blackd="M5183.6,-2663.98C5118.37,-2572.29 4825.53,-2131.53 5026,-1872 5027.04,-1870.65 5481.52,-1692.85 5483,-1692 5615.98,-1614.98 5686.43,-1614.51 5753,-1476 5803.02,-1371.92 5634.16,-1293.27 5545.65,-1260.17"/> +<ellipse fill="#e5b030" fill-opacity="0.733333" stroke="#e5b030stroke-opacity="0.733333" cx="5394" cy="-738" rx="48.1917" ry="18"/> 
-<polygon fill="blackstroke="blackpoints="5546.65,-1256.81 5536.06,-1256.64 5544.23,-1263.38 5546.65,-1256.81"/>+<text text-anchor="middlex="5394y="-734.3" font-family="Times,serif" font-size="14.00">pnj:stocks</text>
 </g> </g>
-<!-- lore:organisations:camorra --> +<!-- lore:lieux:munich&#45;&gt;pnj:stocks --> 
-<g id="node64" class="node"><title>lore:organisations:camorra</title> +<g id="edge132" class="edge"><title>lore:lieux:munich&#45;&gt;pnj:stocks</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfee" cx="4934" cy="-2610" rx="105.881" ry="18"/> +<path fill="none" stroke="black" d="M3022.23,-2896.17C3365.13,-2892.11 4832.5,-2873.36 4925,-2844 4979.99,-2826.55 4990.17,-2810.64 5033,-2772 5356.7,-2479.98 5310.71,-2279.52 5658,-2016 5689.38,-1992.19 5703.57,-1997.23 5739,-1980 5800.51,-1950.09 5831.48,-1960.76 5875,-1908 5922.59,-1850.3 5924,-1821.8 5924,-1747 5924,-1747 5924,-1747 5924,-1673 5924,-1452.82 5678,-1463.18 5678,-1243 5678,-1243 5678,-1243 5678,-1097 5678,-953.781 5678.03,-890.437 5574,-792 5555.15,-774.161 5491.82,-758.787 5445.51,-749.26"/> 
-<text text-anchor="middle" x="4934" y="-2606.3" font-family="Times,serif" font-size="14.00">lore:organisations:camorra</text> +<polygon fill="black" stroke="black" points="5446.11,-745.811 5435.61,-747.259 5444.72,-752.672 5446.11,-745.811"/>
-</g> +
-<!-- lore:organisations:rote_kasern&#45;&gt;lore:organisations:camorra --> +
-<g id="edge239" class="edge"><title>lore:organisations:rote_kasern&#45;&gt;lore:organisations:camorra</title> +
-<path fill="none" stroke="black" d="M5140.12,-2666.07C5098.57,-2654.97 5041.79,-2639.8 4998.35,-2628.19"/> +
-<polygon fill="black" stroke="black" points="4999.02,-2624.75 4988.45,-2625.55 4997.21,-2631.51 4999.02,-2624.75"/>+
 </g> </g>
 <!-- pnj:kromashi --> <!-- pnj:kromashi -->
-<g id="node17" class="node"><title>pnj:kromashi</title> +<g id="node99" class="node" onclick="click(evt)"><title>pnj:kromashi</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfee" cx="2149" cy="-2466" rx="57.3905" ry="18"/> +<ellipse fill="#e5b030" fill-opacity="0.733333" stroke="#e5b030" stroke-opacity="0.733333" cx="4053" cy="-2754" rx="57.3905" ry="18"/> 
-<text text-anchor="middle" x="2149" y="-2462.3" font-family="Times,serif" font-size="14.00">pnj:kromashi</text>+<text text-anchor="middle" x="4053" y="-2750.3" font-family="Times,serif" font-size="14.00">pnj:kromashi</text>
 </g> </g>
-<!-- pnj:janiscalvin --> +<!-- lore:lieux:munich&#45;&gt;pnj:kromashi --> 
-<g id="node18" class="node"><title>pnj:janiscalvin</title> +<g id="edge136" class="edge"><title>lore:lieux:munich&#45;&gt;pnj:kromashi</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfeecx="2177" cy="-2394" rx="61.1893" ry="18"/> +<path fill="none" stroke="blackd="M3022.11,-2895.54C3253.36,-2890.62 3970.98,-2873.34 4011,-2844 4030.56,-2829.66 4038.53,-2802.41 4043.49,-2781.82"/> 
-<text text-anchor="middlex="2177y="-2390.3" font-family="Times,serif" font-size="14.00">pnj:janiscalvin</text>+<polygon fill="blackstroke="blackpoints="4046.91,-2782.58 4045.79,-2772.05 4040.09,-2780.98 4046.91,-2782.58"/>
 </g> </g>
-<!-- pnj:kromashi&#45;&gt;pnj:janiscalvin --> +<!-- lore:gangs:jerenton --> 
-<g id="edge16" class="edge"><title>pnj:kromashi&#45;&gt;pnj:janiscalvin</title> +<g id="node100" class="node" onclick="click(evt)"><title>lore:gangs:jerenton</title> 
-<path fill="none" stroke="blackd="M2150.01,-2447.7C2152.41,-2439.61 2156.12,-2429.81 2160.11,-2420.87"/> +<ellipse fill="#63356c" fill-opacity="0.733333" stroke="#63356cstroke-opacity="0.733333" cx="2033" cy="-2826" rx="77.9862" ry="18"/> 
-<polygon fill="blackstroke="blackpoints="2163.37,-2422.16 2164.51,-2411.62 2157.05,-2419.15 2163.37,-2422.16"/>+<text text-anchor="middlex="2033y="-2822.3" font-family="Times,serif" font-size="14.00">lore:gangs:jerenton</text>
 </g> </g>
-<!-- lore:lieux:munich --> +<!-- lore:lieux:munich&#45;&gt;lore:gangs:jerenton --> 
-<g id="node19" class="node"><title>lore:lieux:munich</title> +<g id="edge137" class="edge"><title>lore:lieux:munich&#45;&gt;lore:gangs:jerenton</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfeecx="2487" cy="-2538" rx="71.4873" ry="18"/> +<path fill="none" stroke="blackd="M2880.02,-2895.42C2735.49,-2891.48 2397.29,-2878.89 2116,-2844 2109.29,-2843.17 2102.32,-2842.16 2095.4,-2841.04"/> 
-<text text-anchor="middlex="2487y="-2534.3" font-family="Times,serif" font-size="14.00">lore:lieux:munich</text>+<polygon fill="blackstroke="blackpoints="2095.78,-2837.56 2085.34,-2839.36 2094.62,-2844.46 2095.78,-2837.56"/>
 </g> </g>
-<!-- pnj:kromashi&#45;&gt;lore:lieux:munich --> +<!-- pnj:jinks&#45;&gt;pnj:fgf --> 
-<g id="edge17" class="edge"><title>pnj:kromashi&#45;&gt;lore:lieux:munich</title> +<g id="edge76" class="edge"><title>pnj:jinks&#45;&gt;pnj:fgf</title> 
-<path fill="none" stroke="black" d="M2195.92,-2476.45C2206.85,-2478.99 2218.35,-2481.67 2229,-2484 2295.54,-2498.57 2371.8,-2513.53 2424.13,-2523.83"/> +<path fill="none" stroke="black" d="M2218.03,-611.671C2196.51,-646.339 2142,-729.601 2142,-809 2142,-1243 2142,-1243 2142,-1243 2142,-1376.8 2048,-1395.2 2048,-1529 2048,-1819 2048,-1819 2048,-1819 2048,-1958.81 2053.64,-2011.23 1971,-2124 1932.75,-2176.19 1030.02,-2694.95 980,-2736 946.212,-2763.73 928.999,-2767.32 913,-2808 884.108,-2881.46 978.129,-2894.21 1054,-2916 1142.33,-2941.37 1388.61,-2902.42 1466,-2952 1568.9,-3017.92 1617.34,-3167.62 1629.19,-3229.47"/> 
-<polygon fill="black" stroke="black" points="2423.77,-2527.33 2434.26,-2525.82 2425.13,-2520.46 2423.77,-2527.33"/>+<polygon fill="black" stroke="black" points="1625.79,-3230.36 1630.94,-3239.63 1632.69,-3229.18 1625.79,-3230.36"/>
 </g> </g>
-<!-- pnj:janiscalvin&#45;&gt;pnj:kromashi --> +<!-- pnj:jinks&#45;&gt;lore:lieux:munich --> 
-<g id="edge489" class="edge"><title>pnj:janiscalvin&#45;&gt;pnj:kromashi</title> +<g id="edge75" class="edge"><title>pnj:jinks&#45;&gt;lore:lieux:munich</title> 
-<path fill="none" stroke="black" d="M2175.95,-2412.45C2173.54,-2420.53 2169.84,-2430.29 2165.86,-2439.2"/> +<path fill="none" stroke="black" d="M2231.91,-612.049C2235.49,-638.708 2236,-691.884 2236,-737 2236,-883 2236,-883 2236,-883 2236,-1042.11 2236,-1081.89 2236,-1241 2236,-1459 2236,-1459 2236,-1459 2236,-1530.59 2236.65,-1548.63 2231,-1620 2224.63,-1700.4 2213.12,-1719.51 2208,-1800 2206.98,-1815.97 2205.75,-1820.16 2208,-1836 2225.51,-1959.24 2286,-1980.52 2286,-2105 2286,-2467 2286,-2467 2286,-2467 2286,-2555.62 2346.42,-2789.11 2416,-2844 2451.16,-2871.74 2730.27,-2887.39 2870.83,-2893.69"/> 
-<polygon fill="black" stroke="black" points="2162.61,-2437.88 2161.48,-2448.41 2168.93,-2440.88 2162.61,-2437.88"/>+<polygon fill="black" stroke="black" points="2870.97,-2897.2 2881.12,-2894.15 2871.28,-2890.21 2870.97,-2897.2"/>
 </g> </g>
-<!-- pnj:janiscalvin&#45;&gt;lore:lieux:munich --> +<!-- pnj:milenasimons --> 
-<g id="edge487" class="edge"><title>pnj:janiscalvin&#45;&gt;lore:lieux:munich</title> +<g id="node5" class="node" onclick="click(evt)"><title>pnj:milenasimons</title> 
-<path fill="none" stroke="blackd="M2196.56,-2411.08C2216.9,-2431.17 2249.71,-2465.21 2285,-2484 2325.88,-2505.76 2376,-2518.83 2416.15,-2526.55"/> +<ellipse fill="#e5b030" fill-opacity="0.733333" stroke="#e5b030stroke-opacity="0.733333" cx="1701" cy="-306" rx="72.5877" ry="18"/> 
-<polygon fill="blackstroke="blackpoints="2415.66,-2530.02 2426.13,-2528.4 2416.93,-2523.14 2415.66,-2530.02"/>+<text text-anchor="middlex="1701y="-302.3" font-family="Times,serif" font-size="14.00">pnj:milenasimons</text>
 </g> </g>
-<!-- pnj:song_mi --> +<!-- lore:corpos:ares --> 
-<g id="node57" class="node"><title>pnj:song_mi</title> +<g id="node6" class="node" onclick="click(evt)"><title>lore:corpos:ares</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfee" cx="2277" cy="-2250" rx="55.4913" ry="18"/> +<ellipse fill="#41c2b5" fill-opacity="0.733333" stroke="#41c2b5" stroke-opacity="0.733333" cx="1861" cy="-450" rx="68.7879" ry="18"/> 
-<text text-anchor="middle" x="2277" y="-2246.3" font-family="Times,serif" font-size="14.00">pnj:song_mi</text>+<text text-anchor="middle" x="1861" y="-446.3" font-family="Times,serif" font-size="14.00">lore:corpos:ares</text>
 </g> </g>
-<!-- pnj:janiscalvin&#45;&gt;pnj:song_mi --> +<!-- pnj:milenasimons&#45;&gt;lore:corpos:ares --> 
-<g id="edge488" class="edge"><title>pnj:janiscalvin&#45;&gt;pnj:song_mi</title> +<g id="edge4" class="edge"><title>pnj:milenasimons&#45;&gt;lore:corpos:ares</title> 
-<path fill="none" stroke="black" d="M2210.41,-2378.75C2227.16,-2369.95 2246.31,-2357.05 2258,-2340 2270.45,-2321.83 2274.98,-2297.06 2276.52,-2278.26"/> +<path fill="none" stroke="black" d="M1716.9,-323.739C1730.92,-342.97 1751.77,-374.616 1776,-396 1790.44,-408.746 1808.45,-419.803 1824.24,-428.472"/> 
-<polygon fill="black" stroke="black" points="2280.01,-2278.43 2277.1,-2268.24 2273.02,-2278.02 2280.01,-2278.43"/>+<polygon fill="black" stroke="black" points="1822.77,-431.656 1833.24,-433.295 1826.08,-425.486 1822.77,-431.656"/>
 </g> </g>
-<!-- lore:organisations:munich_people_voice --> +<!-- lore:corpos:ares&#45;&gt;pnj:milenasimons --> 
-<g id="node58" class="node"><title>lore:organisations:munich_people_voice</title> +<g id="edge257" class="edge"><title>lore:corpos:ares&#45;&gt;pnj:milenasimons</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfeecx="2093" cy="-2322" rx="155.972" ry="18"/> +<path fill="none" stroke="blackd="M1821.02,-435.047C1800.58,-425.737 1776.4,-412.239 1758,-396 1737.39,-377.816 1719.23,-352.21 1708.77,-333.129"/> 
-<text text-anchor="middlex="2093y="-2318.3" font-family="Times,serif" font-size="14.00">lore:organisations:munich_people_voice</text>+<polygon fill="blackstroke="blackpoints="1711.81,-331.398 1704.15,-324.084 1705.58,-334.582 1711.81,-331.398"/>
 </g> </g>
-<!-- pnj:janiscalvin&#45;&gt;lore:organisations:munich_people_voice --> +<!-- pnj:michaelcarpenter --> 
-<g id="edge490" class="edge"><title>pnj:janiscalvin&#45;&gt;lore:organisations:munich_people_voice</title> +<g id="node133" class="node" onclick="click(evt)"><title>pnj:michaelcarpenter</title> 
-<path fill="none" stroke="blackd="M2157.52,-2376.76C2146.73,-2367.77 2133.12,-2356.44 2121.19,-2346.49"/> +<ellipse fill="#e5b030" fill-opacity="0.733333" stroke="#e5b030stroke-opacity="0.733333" cx="1861" cy="-378" rx="85.2851" ry="18"/> 
-<polygon fill="blackstroke="blackpoints="2123.18,-2343.59 2113.25,-2339.88 2118.7,-2348.97 2123.18,-2343.59"/>+<text text-anchor="middlex="1861y="-374.3" font-family="Times,serif" font-size="14.00">pnj:michaelcarpenter</text>
 </g> </g>
-<!-- lore:lieux:munich&#45;&gt;pnj:kromashi --> +<!-- lore:corpos:ares&#45;&gt;pnj:michaelcarpenter --> 
-<g id="edge555" class="edge"><title>lore:lieux:munich&#45;&gt;pnj:kromashi</title> +<g id="edge258" class="edge"><title>lore:corpos:ares&#45;&gt;pnj:michaelcarpenter</title> 
-<path fill="none" stroke="black" d="M2428.97,-2527.43C2372.84,-2517.25 2285.79,-2500.37 2211,-2484 2207.07,-2483.14 2203.03,-2482.23 2198.97,-2481.3"/> +<path fill="none" stroke="black" d="M1855.12,-432.055C1854.3,-424.346 1854.06,-415.027 1854.39,-406.364"/> 
-<polygon fill="black" stroke="black" points="2199.47,-2477.82 2188.93,-2478.96 2197.88,-2484.64 2199.47,-2477.82"/>+<polygon fill="black" stroke="black" points="1857.89,-406.491 1855.09,-396.275 1850.91,-406.012 1857.89,-406.491"/>
 </g> </g>
-<!-- lore:lieux:munich&#45;&gt;pnj:janiscalvin --> +<!-- pnj:sorenjohanson --> 
-<g id="edge567" class="edge"><title>lore:lieux:munich&#45;&gt;pnj:janiscalvin</title> +<g id="node134" class="node" onclick="click(evt)"><title>pnj:sorenjohanson</title> 
-<path fill="none" stroke="blackd="M2422.3,-2530.26C2376.61,-2523.32 2315.34,-2509.73 2267,-2484 2236.52,-2467.77 2207.89,-2440.17 2191.13,-2420"/> +<ellipse fill="#e5b030" fill-opacity="0.733333" stroke="#e5b030stroke-opacity="0.733333" cx="3497" cy="-378" rx="76.8869" ry="18"/> 
-<polygon fill="blackstroke="blackpoints="2193.86,-2417.8 2184.9,-2412.13 2188.37,-2422.15 2193.86,-2417.8"/>+<text text-anchor="middlex="3497y="-374.3" font-family="Times,serif" font-size="14.00">pnj:sorenjohanson</text>
 </g> </g>
-<!-- pnj:joachim_finkerbachen --> +<!-- lore:corpos:ares&#45;&gt;pnj:sorenjohanson --> 
-<g id="node29" class="node"><title>pnj:joachim_finkerbachen</title> +<g id="edge259" class="edge"><title>lore:corpos:ares&#45;&gt;pnj:sorenjohanson</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfeecx="332" cy="-2466" rx="103.182" ry="18"/> +<path fill="none" stroke="blackd="M1928.34,-445.992C2187.96,-434.67 3123.32,-394.646 3411.75,-382.512"/> 
-<text text-anchor="middlex="332y="-2462.3" font-family="Times,serif" font-size="14.00">pnj:joachim_finkerbachen</text>+<polygon fill="blackstroke="blackpoints="3412.3,-385.992 3422.14,-382.075 3412,-378.999 3412.3,-385.992"/>
 </g> </g>
-<!-- lore:lieux:munich&#45;&gt;pnj:joachim_finkerbachen --> +<!-- pnj:leik&#45;&gt;pnj:fgf --> 
-<g id="edge553" class="edge"><title>lore:lieux:munich&#45;&gt;pnj:joachim_finkerbachen</title> +<g id="edge9" class="edge"><title>pnj:leik&#45;&gt;pnj:fgf</title> 
-<path fill="none" stroke="black" d="M2415.63,-2536.36C2100.44,-2533.29 831.996,-2518.79 436,-2484 427.241,-2483.23 418.128,-2482.22 409.093,-2481.07"/> +<path fill="none" stroke="black" d="M3261.48,-667.35C3106.33,-669.09 2506.6,-678.47 2434,-720 2258.63,-820.316 2180,-894.963 2180,-1097 2180,-1387 2180,-1387 2180,-1387 2180,-1676.41 2098,-1743.59 2098,-2033 2098,-2107 2098,-2107 2098,-2107 2098,-2111.78 916.366,-2803.85 914,-2808 906.076,-2821.9 903.739,-2831.72 914,-2844 1087.48,-3051.56 1287.53,-2802.53 1513,-2952 1608.09,-3015.04 1626.6,-3167.02 1630.17,-3229.49"/> 
-<polygon fill="black" stroke="black" points="409.322,-2477.57 398.948,-2479.72 408.399,-2484.51 409.322,-2477.57"/>+<polygon fill="black" stroke="black" points="1626.68,-3229.91 1630.66,-3239.73 1633.68,-3229.57 1626.68,-3229.91"/>
 </g> </g>
-<!-- pnj:stocks --> +<!-- pnj:leik&#45;&gt;lore:lieux:munich --> 
-<g id="node31" class="node"><title>pnj:stocks</title> +<g id="edge7" class="edge"><title>pnj:leik&#45;&gt;lore:lieux:munich</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfeecx="2787" cy="-1098" rx="48.1917" ry="18"/> +<path fill="none" stroke="blackd="M3261.26,-667.309C3132.52,-670.608 2698.31,-699.867 2472,-936 2351.73,-1061.49 2368,-1139.19 2368,-1313 2368,-1603 2368,-1603 2368,-1603 2368,-1707.92 2380.14,-1743.83 2330,-1836 2290.45,-1908.69 2192,-1878.25 2192,-1961 2192,-2251 2192,-2251 2192,-2251 2192,-2390.18 2224.97,-2422.12 2263,-2556 2272.23,-2588.48 2333.47,-2823.11 2360,-2844 2399.45,-2875.07 2717.5,-2889.35 2870.05,-2894.55"/> 
-<text text-anchor="middlex="2787y="-1094.3" font-family="Times,serif" font-size="14.00">pnj:stocks</text>+<polygon fill="blackstroke="blackpoints="2870.19,-2898.05 2880.3,-2894.89 2870.42,-2891.06 2870.19,-2898.05"/>
 </g> </g>
-<!-- lore:lieux:munich&#45;&gt;pnj:stocks --> +<!-- pnj:leik&#45;&gt;pnj:jinks --> 
-<g id="edge558" class="edge"><title>lore:lieux:munich&#45;&gt;pnj:stocks</title> +<g id="edge11" class="edge"><title>pnj:leik&#45;&gt;pnj:jinks</title> 
-<path fill="none" stroke="black" d="M2521.88,-2522.02C2540.34,-2513.46 2562.07,-2500.98 2577,-2484 2672.78,-2375.1 2693,-2324.03 2693,-2179 2693,-2179 2693,-2179 2693,-1313 2693,-1270.66 2707.22,-1261.44 2727,-1224 2736.1,-1206.78 2743.6,-1205.58 2752,-1188 2761.61,-1167.87 2768.44,-1143.46 2774.1,-1125.29"/> +<path fill="none" stroke="black" d="M3262.03,-662.651C3102.73,-652.249 2460.58,-610.317 2275.9,-598.259"/> 
-<polygon fill="black" stroke="black" points="2777.47,-1126.25 2777.23,-1115.66 2770.81,-1124.09 2777.47,-1126.25"/>+<polygon fill="black" stroke="black" points="2275.88,-594.75 2265.67,-597.591 2275.42,-601.735 2275.88,-594.75"/>
 </g> </g>
-<!-- pnj:leik --> +<!-- pnj:leik&#45;&gt;lore:planques:box_m1 --> 
-<g id="node32" class="node"><title>pnj:leik</title> +<g id="edge5" class="edge"><title>pnj:leik&#45;&gt;lore:planques:box_m1</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfee" cx="2596cy="-1026" rx="36.2938" ry="18"/> +<path fill="none" stroke="blackd="M3334.14,-668.178C3461.84,-672.708 3902.67,-690.263 4265,-720 4530.76,-741.811 4843.91,-779.209 4990.12,-797.812"/> 
-<text text-anchor="middlex="2596y="-1022.3" font-family="Times,serif" font-size="14.00">pnj:leik</text>+<polygon fill="blackstroke="blackpoints="4990,-801.324 5000.36,-799.118 4990.88,-794.38 4990,-801.324"/>
 </g> </g>
-<!-- lore:lieux:munich&#45;&gt;pnj:leik --> +<!-- lore:objets:nanoforge --> 
-<g id="edge539" class="edge"><title>lore:lieux:munich&#45;&gt;pnj:leik</title> +<g id="node9" class="node" onclick="click(evt)"><title>lore:objets:nanoforge</title> 
-<path fill="none" stroke="blackd="M2415.76,-2535.95C2296.14,-2533.1 2061.29,-2522.6 1990,-2484 1913.17,-2442.4 1904.42,-2391.12 1911,-2304 1931.73,-2029.66 1898.32,-1270.31 2097,-1080 2105.1,-1072.24 2428.53,-1041.65 2550.35,-1030.82"/> +<ellipse fill="#24cb1f" fill-opacity="0.733333" stroke="#24cb1fstroke-opacity="0.733333" cx="4725" cy="-882" rx="87.1846" ry="18"/> 
-<polygon fill="blackstroke="blackpoints="2550.82,-1034.29 2560.48,-1029.93 2550.21,-1027.32 2550.82,-1034.29"/>+<text text-anchor="middlex="4725y="-878.3" font-family="Times,serif" font-size="14.00">lore:objets:nanoforge</text>
 </g> </g>
-<!-- lore:organisations:mi&#45;seng_lung --> +<!-- pnj:leik&#45;&gt;lore:objets:nanoforge --> 
-<g id="node33" class="node"><title>lore:organisations:mi&#45;seng_lung</title> +<g id="edge6" class="edge"><title>pnj:leik&#45;&gt;lore:objets:nanoforge</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfeecx="4107" cy="-1314" rx="124.278" ry="18"/> +<path fill="none" stroke="blackd="M3334.57,-668.067C3475.85,-672.376 3985.97,-689.735 4145,-720 4195.95,-729.696 4206.26,-741.317 4256,-756 4400.31,-798.599 4571.47,-842.584 4661.83,-865.298"/> 
-<text text-anchor="middlex="4107y="-1310.3" font-family="Times,serif" font-size="14.00">lore:organisations:mi&#45;seng_lung</text>+<polygon fill="blackstroke="blackpoints="4661.09,-868.722 4671.64,-867.762 4662.79,-861.933 4661.09,-868.722"/>
 </g> </g>
-<!-- lore:lieux:munich&#45;&gt;lore:organisations:mi&#45;seng_lung --> +<!-- pnj:leik&#45;&gt;pnj:jinhong --> 
-<g id="edge531" class="edge"><title>lore:lieux:munich&#45;&gt;lore:organisations:mi&#45;seng_lung</title> +<g id="edge8" class="edge"><title>pnj:leik&#45;&gt;pnj:jinhong</title> 
-<path fill="none" stroke="black" d="M2557.98,-2535.7C2795.73,-2531.18 3551.04,-2514.7 3593,-2484 3627.05,-2459.09 3626,-2437.19 3626,-2395 3626,-2395 3626,-2395 3626,-2321 3626,-2278.81 3638.31,-2268.77 3659,-2232 3693.75,-2170.23 3758,-2177.87 3758,-2107 3758,-2107 3758,-2107 3758,-1961 3758,-1856.9 3751.15,-1827.43 3782,-1728 3825.2,-1588.77 3863.6,-1564.77 3939,-1440 3958.89,-1407.08 3957.94,-1393.19 3987,-1368 4003.37,-1353.81 4024.19,-1342.55 4043.93,-1334.12"/> +<path fill="none" stroke="black" d="M3261.66,-664.031C3121.55,-660.136 2602.96,-644.256 2177,-612 2141.7,-609.327 2102.2,-605.236 2070.93,-601.737"/> 
-<polygon fill="black" stroke="black" points="4045.28,-1337.35 4053.21,-1330.32 4042.63,-1330.87 4045.28,-1337.35"/>+<polygon fill="black" stroke="black" points="2070.99,-598.221 2060.66,-600.576 2070.2,-605.177 2070.99,-598.221"/>
 </g> </g>
-<!-- lore:organisations:chrysantheme_renaissante --> +<!-- pnj:leik&#45;&gt;lore:organisations:mi&#45;seng_lung --> 
-<g id="node34" class="node"><title>lore:organisations:chrysantheme_renaissante</title> +<g id="edge10" class="edge"><title>pnj:leik&#45;&gt;lore:organisations:mi&#45;seng_lung</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfeecx="2654" cy="-594" rx="170.07" ry="18"/> +<path fill="none" stroke="blackd="M3261.41,-666.974C3109.49,-667.183 2533.33,-671.207 2470,-720 2347.31,-814.534 2313.12,-1250.81 2336,-1404 2346.27,-1472.74 2362.93,-1487.42 2397,-1548 2415.16,-1580.29 2419.3,-1588.62 2439,-1620 2441.16,-1623.44 2766,-2100.94 2766,-2105 2766,-2179 2766,-2179 2766,-2179 2766,-2282.67 2706.53,-2335.96 2777,-2412 2797.57,-2434.2 2962.84,-2449.49 3081.85,-2457.75"/> 
-<text text-anchor="middlex="2654y="-590.3" font-family="Times,serif" font-size="14.00">lore:organisations:chrysantheme_renaissante</text>+<polygon fill="blackstroke="blackpoints="3081.92,-2461.27 3092.14,-2458.46 3082.4,-2454.28 3081.92,-2461.27"/>
 </g> </g>
-<!-- lore:lieux:munich&#45;&gt;lore:organisations:chrysantheme_renaissante --> +<!-- pnj:leik&#45;&gt;pnj:keito_lung --> 
-<g id="edge561" class="edge"><title>lore:lieux:munich&#45;&gt;lore:organisations:chrysantheme_renaissante</title> +<g id="edge12" class="edge"><title>pnj:leik&#45;&gt;pnj:keito_lung</title> 
-<path fill="none" stroke="black" d="M2508.54,-2520.76C2519.78,-2511.22 2532.84,-2498.25 2541,-2484 2557.39,-2455.37 2552.07,-2444.25 2559,-2412 2589.3,-2271.09 2590.61,-2231.05 2573,-2088 2564.94,-2022.52 2559.56,-2005.99 2537,-1944 2479.36,-1785.6 2371,-1771.56 2371,-1603 2371,-1603 2371,-1603 2371,-1241 2371,-1169.05 2360.53,-1146.5 2388,-1080 2411.53,-1023.03 2442.22,-1024.2 2475,-972 2552.74,-848.195 2619.13,-685.357 2643.77,-621.921"/> +<path fill="none" stroke="black" d="M3333.84,-662.77C3493.14,-652.858 4138.56,-612.699 4353.2,-599.343"/> 
-<polygon fill="black" stroke="black" points="2647.16,-622.864 2647.49,-612.274 2640.63,-620.344 2647.16,-622.864"/>+<polygon fill="black" stroke="black" points="4353.63,-602.823 4363.4,-598.709 4353.2,-595.837 4353.63,-602.823"/>
 </g> </g>
-<!-- lore:planques:box_m1 --> +<!-- lore:planques:box_m1&#45;&gt;pnj:fgf --> 
-<g id="node35" class="node"><title>lore:planques:box_m1</title> +<g id="edge511" class="edge"><title>lore:planques:box_m1&#45;&gt;pnj:fgf</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfeecx="2661" cy="-1170" rx="90.9839" ry="18"/> +<path fill="none" stroke="blackd="M5156.6,-817.138C5192.76,-823.813 5233.09,-837.249 5261,-864 5348.97,-948.32 5432,-1263.15 5432,-1385 5432,-1459 5432,-1459 5432,-1459 5432,-1555.6 5394,-1576.4 5394,-1673 5394,-1747 5394,-1747 5394,-1747 5394,-1881.98 5502.73,-1884.93 5535,-2016 5644.16,-2459.38 5465,-2584.38 5465,-3041 5465,-3115 5465,-3115 5465,-3115 5465,-3214.78 2104.22,-3252.19 1675.75,-3256.56"/> 
-<text text-anchor="middlex="2661y="-1166.3" font-family="Times,serif" font-size="14.00">lore:planques:box_m1</text>+<polygon fill="blackstroke="blackpoints="1675.58,-3253.06 1665.61,-3256.66 1675.65,-3260.06 1675.58,-3253.06"/>
 </g> </g>
-<!-- lore:lieux:munich&#45;&gt;lore:planques:box_m1 --> +<!-- lore:planques:box_m1&#45;&gt;lore:lieux:munich --> 
-<g id="edge563" class="edge"><title>lore:lieux:munich&#45;&gt;lore:planques:box_m1</title> +<g id="edge509" class="edge"><title>lore:planques:box_m1&#45;&gt;lore:lieux:munich</title> 
-<path fill="none" stroke="black" d="M2417.05,-2534.28C2310.92,-2529.06 2115.4,-2515.26 2054,-2484 1975.83,-2444.19 1951.26,-2421.58 1919,-2340 1913.12,-2325.12 1912.95,-2318.81 1919,-2304 1982.38,-2148.94 2183,-2202.51 2183,-2035 2183,-2035 2183,-2035 2183,-1385 2183,-1221.94 2420.54,-1182.58 2560.77,-1173.45"/> +<path fill="none" stroke="black" d="M5040.8,-826.843C5025.61,-835.315 5009,-847.474 5000,-864 4992.35,-878.053 4996.04,-884.497 5000,-900 5013.53,-952.995 5038.32,-957.366 5059,-1008 5137.43,-1199.98 5186,-1249.62 5186,-1457 5186,-1531 5186,-1531 5186,-1531 5186,-1676.19 5134.1,-1706.23 5069,-1836 5039.53,-1894.74 4990,-1895.28 4990,-1961 4990,-2035 4990,-2035 4990,-2035 4990,-2131.6 5028,-2152.4 5028,-2249 5028,-2755 5028,-2755 5028,-2755 5028,-2850.67 4925.21,-2822.44 4832,-2844 4655.79,-2884.75 3371.68,-2894.7 3032.79,-2896.61"/> 
-<polygon fill="black" stroke="black" points="2561.34,-1176.92 2571.1,-1172.81 2560.91,-1169.93 2561.34,-1176.92"/>+<polygon fill="black" stroke="black" points="3032.54,-2893.11 3022.56,-2896.67 3032.58,-2900.11 3032.54,-2893.11"/>
 </g> </g>
-<!-- lore:organisations:fon --> +<!-- lore:planques:box_m1&#45;&gt;pnj:leik --> 
-<g id="node38" class="node"><title>lore:organisations:fon</title> +<g id="edge510" class="edge"><title>lore:planques:box_m1&#45;&gt;pnj:leik</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfeecx="3416" cy="-1242" rx="88.2844" ry="18"/> +<path fill="none" stroke="blackd="M4997.03,-799.989C4851.5,-782.281 4523.58,-742.699 4247,-720 3900.75,-691.583 3482.81,-674.29 3344.69,-668.858"/> 
-<text text-anchor="middlex="3416y="-1238.3" font-family="Times,serif" font-size="14.00">lore:organisations:fon</text>+<polygon fill="blackstroke="blackpoints="3344.6,-665.351 3334.47,-668.457 3344.32,-672.346 3344.6,-665.351"/>
 </g> </g>
-<!-- lore:lieux:munich&#45;&gt;lore:organisations:fon --> +<!-- lore:planques:box_m1&#45;&gt;lore:objets:nanoforge --> 
-<g id="edge557" class="edge"><title>lore:lieux:munich&#45;&gt;lore:organisations:fon</title> +<g id="edge507" class="edge"><title>lore:planques:box_m1&#45;&gt;lore:objets:nanoforge</title> 
-<path fill="none" stroke="black" d="M2558.39,-2537.02C2746.16,-2536.42 3243.34,-2530.41 3300,-2484 3331.69,-2458.04 3324,-2435.97 3324,-2395 3324,-2395 3324,-2395 3324,-2177 3324,-2079.62 3371,-2060.38 3371,-1963 3371,-1963 3371,-1963 3371,-1385 3371,-1342.9 3389.2,-1296.91 3402.45,-1269.02"/> +<path fill="none" stroke="black" d="M5014.61,-823.823C4954.91,-836.198 4862.15,-854.864 4797.72,-867.471"/> 
-<polygon fill="black" stroke="black" points="3405.64,-1270.46 3406.89,-1259.94 3399.35,-1267.38 3405.64,-1270.46"/>+<polygon fill="black" stroke="black" points="4796.78,-864.089 4787.63,-869.441 4798.12,-870.96 4796.78,-864.089"/>
 </g> </g>
-<!-- lore:gangs:jerenton --> +<!-- lore:planques:box_m1&#45;&gt;pnj:stocks --> 
-<g id="node42" class="node"><title>lore:gangs:jerenton</title> +<g id="edge508" class="edge"><title>lore:planques:box_m1&#45;&gt;pnj:stocks</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfee" cx="1220cy="-2466" rx="77.9862" ry="18"/> +<path fill="none" stroke="blackd="M5133.25,-796.426C5184.04,-786.374 5258.39,-771.452 5323,-756 5329.87,-754.358 5337.12,-752.49 5344.3,-750.607"/> 
-<text text-anchor="middlex="1220y="-2462.3" font-family="Times,serif" font-size="14.00">lore:gangs:jerenton</text>+<polygon fill="blackstroke="blackpoints="5345.2,-753.987 5353.98,-748.051 5343.42,-747.219 5345.2,-753.987"/>
 </g> </g>
-<!-- lore:lieux:munich&#45;&gt;lore:gangs:jerenton --> +<!-- lore:corpos:gomorrah --> 
-<g id="edge568" class="edge"><title>lore:lieux:munich&#45;&gt;lore:gangs:jerenton</title> +<g id="node112" class="node" onclick="click(evt)"><title>lore:corpos:gomorrah</title> 
-<path fill="none" stroke="blackd="M2415.25,-2537.2C2230.16,-2537.02 1722.2,-2531.95 1303,-2484 1296.28,-2483.23 1289.31,-2482.26 1282.39,-2481.18"/> +<ellipse fill="#41c2b5" fill-opacity="0.733333" stroke="#41c2b5stroke-opacity="0.733333" cx="5654" cy="-666" rx="89.0842" ry="18"/> 
-<polygon fill="blackstroke="blackpoints="1282.75,-2477.69 1272.32,-2479.52 1281.61,-2484.6 1282.75,-2477.69"/>+<text text-anchor="middlex="5654y="-662.3" font-family="Times,serif" font-size="14.00">lore:corpos:gomorrah</text>
 </g> </g>
-<!-- lore:gangs:1thundershock --> +<!-- lore:planques:box_m1&#45;&gt;lore:corpos:gomorrah --> 
-<g id="node43" class="node"><title>lore:gangs:1thundershock</title> +<g id="edge506" class="edge"><title>lore:planques:box_m1&#45;&gt;lore:corpos:gomorrah</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfeecx="1335" cy="-2394" rx="102.882" ry="18"/> +<path fill="none" stroke="blackd="M5112.22,-793.58C5163.27,-774.021 5255.6,-740.388 5337,-720 5414.84,-700.505 5505.26,-686.188 5569.56,-677.383"/> 
-<text text-anchor="middlex="1335y="-2390.3" font-family="Times,serif" font-size="14.00">lore:gangs:1thundershock</text>+<polygon fill="blackstroke="blackpoints="5570.21,-680.827 5579.65,-676.017 5569.27,-673.89 5570.21,-680.827"/>
 </g> </g>
-<!-- lore:lieux:munich&#45;&gt;lore:gangs:1thundershock --> +<!-- lore:objets:nanoforge&#45;&gt;lore:corpos:ares --> 
-<g id="edge569" class="edge"><title>lore:lieux:munich&#45;&gt;lore:gangs:1thundershock</title> +<g id="edge339" class="edge"><title>lore:objets:nanoforge&#45;&gt;lore:corpos:ares</title> 
-<path fill="none" stroke="black" d="M2415.61,-2535.84C2174.22,-2531.53 1401.53,-2515.11 1359,-2484 1339.52,-2469.75 1331.53,-2442.67 1329.94,-2422.11"/> +<path fill="none" stroke="black" d="M4713.6,-863.899C4697.49,-838.023 4670,-786.852 4670,-739 4670,-739 4670,-739 4670,-593 4670,-541.841 4643.03,-526.327 4597,-504 4535.64,-474.236 2381.84,-455.216 1939.8,-451.621"/> 
-<polygon fill="black" stroke="black" points="1333.44,-2421.95 1329.67,-2412.05 1326.44,-2422.14 1333.44,-2421.95"/>+<polygon fill="black" stroke="black" points="1939.71,-448.12 1929.68,-451.539 1939.65,-455.12 1939.71,-448.12"/>
 </g> </g>
-<!-- pnj:jinhong --> +<!-- lore:objets:nanoforge&#45;&gt;lore:planques:box_m1 --> 
-<g id="node56" class="node"><title>pnj:jinhong</title> +<g id="edge337" class="edge"><title>lore:objets:nanoforge&#45;&gt;lore:planques:box_m1</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfeecx="2416" cy="-954" rx="50.0912" ry="18"/> +<path fill="none" stroke="blackd="M4782.29,-868.405C4841.47,-856.131 4933.96,-837.515 4998.72,-824.835"/> 
-<text text-anchor="middlex="2416y="-950.3" font-family="Times,serif" font-size="14.00">pnj:jinhong</text>+<polygon fill="blackstroke="blackpoints="4999.72,-828.205 5008.86,-822.853 4998.38,-821.335 4999.72,-828.205"/>
 </g> </g>
-<!-- lore:lieux:munich&#45;&gt;pnj:jinhong --> +<!-- lore:organisations:swamp_rats --> 
-<g id="edge532" class="edge"><title>lore:lieux:munich&#45;&gt;pnj:jinhong</title> +<g id="node44" class="node" onclick="click(evt)"><title>lore:organisations:swamp_rats</title> 
-<path fill="none" stroke="blackd="M2483.9,-2519.95C2480.62,-2469.82 2479.06,-2320.91 2407,-2232 2383.21,-2202.65 2353.71,-2225.41 2330,-2196 2263.34,-2113.33 2277,-2069.2 2277,-1963 2277,-1963 2277,-1963 2277,-1889 2277,-1792.4 2239,-1771.6 2239,-1675 2239,-1675 2239,-1675 2239,-1385 2239,-1246.67 2013,-1309.33 2013,-1171 2013,-1171 2013,-1171 2013,-1097 2013,-1024.99 2248.85,-979.407 2359.77,-962.462"/> +<ellipse fill="#e323e9" fill-opacity="0.733333" stroke="#e323e9stroke-opacity="0.733333" cx="4906" cy="-1818" rx="120.479" ry="18"/> 
-<polygon fill="blackstroke="blackpoints="2360.41,-965.905 2369.78,-960.959 2359.37,-958.983 2360.41,-965.905"/>+<text text-anchor="middlex="4906y="-1814.3" font-family="Times,serif" font-size="14.00">lore:organisations:swamp_rats</text>
 </g> </g>
-<!-- lore:lieux:munich&#45;&gt;pnj:song_mi --> +<!-- lore:objets:nanoforge&#45;&gt;lore:organisations:swamp_rats --> 
-<g id="edge533" class="edge"><title>lore:lieux:munich&#45;&gt;pnj:song_mi</title> +<g id="edge340" class="edge"><title>lore:objets:nanoforge&#45;&gt;lore:organisations:swamp_rats</title> 
-<path fill="none" stroke="black" d="M2421.15,-2530.95C2387.11,-2524.52 2347.74,-2511.28 2323,-2484 2295.58,-2453.76 2277.86,-2332.78 2275.16,-2278.09"/> +<path fill="none" stroke="black" d="M4770.93,-897.44C4791.39,-906.298 4814.43,-919.189 4831,-936 4856.4,-961.77 4855.99,-974.238 4869,-1008 4928.4,-1162.09 4940.39,-1204.15 4961,-1368 4981.09,-1527.73 4939.3,-1720.27 4917.37,-1790.08"/> 
-<polygon fill="black" stroke="black" points="2278.66,-2277.95 2274.82,-2268.08 2271.66,-2278.19 2278.66,-2277.95"/>+<polygon fill="black" stroke="black" points="4913.96,-1789.25 4914.16,-1799.84 4920.61,-1791.43 4913.96,-1789.25"/>
 </g> </g>
-<!-- lore:lieux:munich&#45;&gt;lore:organisations:munich_people_voice --> +<!-- lore:objets:nanoforge&#45;&gt;lore:corpos:gomorrah --> 
-<g id="edge544" class="edge"><title>lore:lieux:munich&#45;&gt;lore:organisations:munich_people_voice</title> +<g id="edge338" class="edge"><title>lore:objets:nanoforge&#45;&gt;lore:corpos:gomorrah</title> 
-<path fill="none" stroke="black" d="M2418.06,-2533.2C2306.3,-2526.08 2096.07,-2509.16 2074,-2484 2041.42,-2446.86 2058.49,-2384.45 2075.2,-2349.24"/> +<path fill="none" stroke="black" d="M4743.7,-864.056C4767.21,-843.708 4809.65,-810.067 4852,-792 5089.96,-690.473 5399.1,-670.279 5554.93,-666.977"/> 
-<polygon fill="black" stroke="black" points="2078.45,-2350.57 2079.86,-2340.07 2072.21,-2347.4 2078.45,-2350.57"/>+<polygon fill="black" stroke="black" points="5555.04,-670.476 5564.97,-666.783 5554.9,-663.477 5555.04,-670.476"/>
 </g> </g>
-<!-- pnj:fenihilung --> +<!-- pnj:jinhong&#45;&gt;lore:lieux:munich --> 
-<g id="node59" class="node"><title>pnj:fenihilung</title> +<g id="edge581" class="edge"><title>pnj:jinhong&#45;&gt;lore:lieux:munich</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfeecx="3946" cy="-1026" rx="58.4896" ry="18"/> +<path fill="none" stroke="blackd="M2012.23,-612.28C2000.65,-663.586 1954,-819.761 1954,-953 1954,-1675 1954,-1675 1954,-1675 1954,-1840.94 2060,-1867.06 2060,-2033 2060,-2251 2060,-2251 2060,-2251 2060,-2320.75 2209.6,-2802.96 2266,-2844 2314.11,-2879.01 2699.06,-2891.52 2869.91,-2895.43"/> 
-<text text-anchor="middlex="3946y="-1022.3" font-family="Times,serif" font-size="14.00">pnj:fenihilung</text>+<polygon fill="blackstroke="blackpoints="2870.03,-2898.93 2880.11,-2895.66 2870.19,-2891.94 2870.03,-2898.93"/>
 </g> </g>
-<!-- lore:lieux:munich&#45;&gt;pnj:fenihilung --> +<!-- pnj:jinhong&#45;&gt;lore:organisations:mi&#45;seng_lung --> 
-<g id="edge559" class="edge"><title>lore:lieux:munich&#45;&gt;pnj:fenihilung</title> +<g id="edge583" class="edge"><title>pnj:jinhong&#45;&gt;lore:organisations:mi&#45;seng_lung</title> 
-<path fill="none" stroke="black" d="M2558.66,-2537.45C2765.67,-2538.06 3353.8,-2535.08 3423,-2484 3456.94,-2458.95 3456,-2437.19 3456,-2395 3456,-2395 3456,-2395 3456,-2321 3456,-2157.47 3541,-2126.53 3541,-1963 3541,-1963 3541,-1963 3541,-1457 3541,-1372.51 3704.18,-1207.37 3768,-1152 3814.06,-1112.04 3872,-1070.99 3909.18,-1047.29"/> +<path fill="none" stroke="black" d="M2024.65,-611.88C2035.22,-638.313 2048,-691.192 2048,-737 2048,-1315 2048,-1315 2048,-1315 2048,-1396.76 2096.53,-1404.96 2137,-1476 2210.46,-1604.95 2227.25,-1638.21 2306,-1764 2316.2,-1780.3 2319.55,-1783.86 2330,-1800 2504.7,-2069.71 2442.32,-2241.98 2715,-2412 2772.93,-2448.12 2946.94,-2459.88 3071.13,-2463.57"/> 
-<polygon fill="black" stroke="black" points="3911.1,-1050.22 3917.71,-1041.94 3907.38,-1044.29 3911.1,-1050.22"/>+<polygon fill="black" stroke="black" points="3071.39,-2467.07 3081.49,-2463.86 3071.59,-2460.08 3071.39,-2467.07"/>
 </g> </g>
-<!-- pnj:keito_lung --> +<!-- pnj:jinhong&#45;&gt;pj:splenters --> 
-<g id="node60" class="node"><title>pnj:keito_lung</title> +<g id="edge582" class="edge"><title>pnj:jinhong&#45;&gt;pj:splenters</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfeecx="3483" cy="-954" rx="61.99" ry="18"/> +<path fill="none" stroke="blackd="M2004.56,-576.055C1999.96,-567.801 1994.33,-557.701 1989.23,-548.538"/> 
-<text text-anchor="middlex="3483y="-950.3" font-family="Times,serif" font-size="14.00">pnj:keito_lung</text>+<polygon fill="blackstroke="blackpoints="1992.28,-546.821 1984.35,-539.789 1986.16,-550.228 1992.28,-546.821"/>
 </g> </g>
-<!-- lore:lieux:munich&#45;&gt;pnj:keito_lung --> +<!-- lore:organisations:mi&#45;seng_lung&#45;&gt;lore:lieux:munich --> 
-<g id="edge537" class="edge"><title>lore:lieux:munich&#45;&gt;pnj:keito_lung</title> +<g id="edge485" class="edge"><title>lore:organisations:mi&#45;seng_lung&#45;&gt;lore:lieux:munich</title> 
-<path fill="none" stroke="black" d="M2558.33,-2536.47C2747.99,-2534.5 3254.17,-2525.42 3317,-2484 3354.01,-2459.6 3362,-2439.32 3362,-2395 3362,-2395 3362,-2395 3362,-2177 3362,-2079.62 3409,-2060.38 3409,-1963 3409,-1963 3409,-1963 3409,-1457 3409,-1359.8 3478.96,-1353.92 3504,-1260 3530.67,-1159.99 3499.48,-1035.86 3486.92,-982.011"/> +<path fill="none" stroke="black" d="M3145.07,-2481.89C3119.96,-2489.99 3091.69,-2502.13 3070,-2520 3034.29,-2549.42 3016,-2562.73 3016,-2609 3016,-2755 3016,-2755 3016,-2755 3016,-2798.52 2992.95,-2844.64 2974.05,-2872.12"/> 
-<polygon fill="black" stroke="black" points="3490.32,-981.175 3484.68,-972.207 3483.49,-982.735 3490.32,-981.175"/>+<polygon fill="black" stroke="black" points="2971.12,-2870.2 2968.1,-2880.35 2976.79,-2874.3 2971.12,-2870.2"/>
 </g> </g>
-<!-- pnj:niddon --> +<!-- lore:organisations:mi&#45;seng_lung&#45;&gt;lore:objets:nanoforge --> 
-<g id="node63" class="node"><title>pnj:niddon</title> +<g id="edge479" class="edge"><title>lore:organisations:mi&#45;seng_lung&#45;&gt;lore:objets:nanoforge</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfeecx="3946" cy="-1098" rx="49.2915" ry="18"/> +<path fill="none" stroke="blackd="M3253.14,-2449.36C3279.5,-2440 3312.34,-2427.01 3340,-2412 3460.97,-2346.35 3765.49,-2165.05 3844,-2052 3867.37,-2018.35 3868,-2003.97 3868,-1963 3868,-1963 3868,-1963 3868,-1889 3868,-1843.85 3885.55,-1832.4 3917,-1800 3938.92,-1777.41 3952.86,-1782.95 3978,-1764 3996.58,-1750 3997.43,-1742.02 4016,-1728 4103.62,-1661.83 4360.8,-1550.99 4441,-1476 4497.73,-1422.95 4510.82,-1403.97 4540,-1332 4594.88,-1196.64 4531.81,-1139.68 4595,-1008 4616.17,-963.877 4659.95,-927.036 4690.84,-905.032"/> 
-<text text-anchor="middlex="3946y="-1094.3" font-family="Times,serif" font-size="14.00">pnj:niddon</text>+<polygon fill="blackstroke="blackpoints="4692.97,-907.812 4699.18,-899.226 4688.98,-902.067 4692.97,-907.812"/>
 </g> </g>
-<!-- lore:lieux:munich&#45;&gt;pnj:niddon --> +<!-- lore:organisations:mi&#45;seng_lung&#45;&gt;pnj:jinhong --> 
-<g id="edge550" class="edge"><title>lore:lieux:munich&#45;&gt;pnj:niddon</title> +<g id="edge486" class="edge"><title>lore:organisations:mi&#45;seng_lung&#45;&gt;pnj:jinhong</title> 
-<path fill="none" stroke="black" d="M2558.21,-2536.3C2734.65,-2533.97 3181.35,-2524.18 3235,-2484 3268.77,-2458.71 3268,-2437.19 3268,-2395 3268,-2395 3268,-2395 3268,-2177 3268,-1921.87 3274,-1858.13 3274,-1603 3274,-1603 3274,-1603 3274,-1385 3274,-1279.45 3241.4,-1222.45 3320,-1152 3361.34,-1114.95 3737.6,-1103.18 3886.17,-1100.02"/> +<path fill="none" stroke="black" d="M3081.3,-2464.18C2951.69,-2461.28 2758.64,-2450.43 2697,-2412 2424.32,-2241.98 2486.7,-2069.71 2312,-1800 2301.55,-1783.86 2298.2,-1780.3 2288,-1764 2209.25,-1638.21 2192.46,-1604.95 2119,-1476 2078.53,-1404.96 2030,-1396.76 2030,-1315 2030,-1315 2030,-1315 2030,-737 2030,-696.603 2020.06,-650.707 2014.98,-622.299"/> 
-<polygon fill="black" stroke="black" points="3886.54,-1103.51 3896.46,-1099.81 3886.39,-1096.52 3886.54,-1103.51"/>+<polygon fill="black" stroke="black" points="2018.41,-621.595 2013.29,-612.316 2011.5,-622.758 2018.41,-621.595"/>
 </g> </g>
-<!-- lore:lieux:munich&#45;&gt;lore:organisations:camorra --> +<!-- lore:organisations:mi&#45;seng_lung&#45;&gt;pnj:keito_lung --> 
-<g id="edge542" class="edge"><title>lore:lieux:munich&#45;&gt;lore:organisations:camorra</title> +<g id="edge491" class="edge"><title>lore:organisations:mi&#45;seng_lung&#45;&gt;pnj:keito_lung</title> 
-<path fill="none" stroke="black" d="M2557.8,-2540.96C2901.34,-2550.63 4394.93,-2593.35 4820.49,-2605.66"/> +<path fill="none" stroke="black" d="M3207.54,-2447.96C3219.93,-2408.94 3263.22,-2310.45 3307,-2232 3381.25,-2098.94 3383.49,-2049.95 3493,-1944 3582.4,-1857.5 3618.99,-1849.75 3733,-1800 3785.6,-1777.05 3806.85,-1791.9 3857,-1764 3919.7,-1729.12 3921.93,-1701.99 3977,-1656 4017.12,-1622.49 4028.04,-1615.18 4070,-1584 4114.25,-1551.12 4121.12,-1535.48 4171,-1512 4227.18,-1485.55 4260.97,-1518.76 4306,-1476 4360.53,-1424.22 4358,-1390.2 4358,-1315 4358,-1315 4358,-1315 4358,-1169 4358,-1070.69 4414,-1053.31 4414,-955 4414,-955 4414,-955 4414,-737 4414,-696.996 4414,-650.653 4416.29,-622.08"/> 
-<polygon fill="black" stroke="black" points="4820.55,-2609.17 4830.64,-2605.96 4820.75,-2602.17 4820.55,-2609.17"/>+<polygon fill="black" stroke="black" points="4419.78,-622.346 4417.29,-612.049 4412.82,-621.655 4419.78,-622.346"/>
 </g> </g>
-<!-- lore:organisations:mmar --> +<!-- lore:organisations:mi&#45;seng_lung&#45;&gt;lore:organisations:camorra --> 
-<g id="node65" class="node"><title>lore:organisations:mmar</title> +<g id="edge480" class="edge"><title>lore:organisations:mi&#45;seng_lung&#45;&gt;lore:organisations:camorra</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfee" cx="1590cy="-810" rx="96.6831" ry="18"/> +<path fill="none" stroke="blackd="M3083.74,-2462.05C2935.82,-2457.1 2695.19,-2444.23 2612,-2412 2538.07,-2383.35 2541.04,-2339.21 2470,-2304 2255.14,-2197.5 2184.28,-2211.19 1950,-2160 1851.92,-2138.57 1810.94,-2179.07 1727,-2124 1687.72,-2098.23 1670,-2081.97 1670,-2035 1670,-2035 1670,-2035 1670,-1961 1670,-1701.98 1287.4,-1913.43 1153,-1692 1108.34,-1618.43 1218.04,-1354.04 1255.21,-1269.32"/> 
-<text text-anchor="middlex="1590y="-806.3" font-family="Times,serif" font-size="14.00">lore:organisations:mmar</text>+<polygon fill="blackstroke="blackpoints="1258.43,-1270.69 1259.27,-1260.12 1252.03,-1267.86 1258.43,-1270.69"/>
 </g> </g>
-<!-- lore:lieux:munich&#45;&gt;lore:organisations:mmar --> +<!-- pnj:yu_mi&#45;seng --> 
-<g id="edge536" class="edge"><title>lore:lieux:munich&#45;&gt;lore:organisations:mmar</title> +<g id="node40" class="node" onclick="click(evt)"><title>pnj:yu_mi&#45;seng</title> 
-<path fill="none" stroke="blackd="M2416.36,-2535.04C2254.11,-2529.91 1865.29,-2514.3 1815,-2484 1709.92,-2420.68 1667,-2373.68 1667,-2251 1667,-2251 1667,-2251 1667,-1889 1667,-1469.34 1601.44,-960.694 1590.79,-838.386"/> +<ellipse fill="#e5b030" fill-opacity="0.733333" stroke="#e5b030stroke-opacity="0.733333" cx="4522" cy="-522" rx="65.7887" ry="18"/> 
-<polygon fill="blackstroke="blackpoints="1594.25,-837.761 1589.96,-828.076 1587.28,-838.325 1594.25,-837.761"/>+<text text-anchor="middlex="4522y="-518.3" font-family="Times,serif" font-size="14.00">pnj:yu_mi&#45;seng</text>
 </g> </g>
-<!-- lore:gangs:machinedreammck --> +<!-- lore:organisations:mi&#45;seng_lung&#45;&gt;pnj:yu_mi&#45;seng --> 
-<g id="node71" class="node"><title>lore:gangs:machinedreammck</title> +<g id="edge484" class="edge"><title>lore:organisations:mi&#45;seng_lung&#45;&gt;pnj:yu_mi&#45;seng</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfee" cx="1621cy="-2466" rx="116.979" ry="18"/> +<path fill="none" stroke="blackd="M3227,-2448.07C3330.52,-2373.88 3763.11,-2079.9 3784,-2052 3855.01,-1957.15 3801.02,-1895.61 3871,-1800 3902.08,-1757.54 4015.8,-1686.05 4059,-1656 4120.65,-1613.12 4295.52,-1532.49 4345,-1476 4426.14,-1383.37 4508,-1319.29 4508,-1027 4508,-1027 4508,-1027 4508,-881 4508,-757.53 4511.01,-610.13 4516.56,-550.271"/> 
-<text text-anchor="middlex="1621y="-2462.3" font-family="Times,serif" font-size="14.00">lore:gangs:machinedreammck</text>+<polygon fill="blackstroke="blackpoints="4520.06,-550.45 4517.63,-540.139 4513.1,-549.718 4520.06,-550.45"/>
 </g> </g>
-<!-- lore:lieux:munich&#45;&gt;lore:gangs:machinedreammck --> +<!-- lore:organisations:mi&#45;seng_lung&#45;&gt;pnj:fenihilung --> 
-<g id="edge534" class="edge"><title>lore:lieux:munich&#45;&gt;lore:gangs:machinedreammck</title> +<g id="edge487" class="edge"><title>lore:organisations:mi&#45;seng_lung&#45;&gt;pnj:fenihilung</title> 
-<path fill="none" stroke="black" d="M2417.43,-2533.59C2285.47,-2526.55 1990.26,-2508.94 1743,-2484 1732.62,-2482.95 1721.8,-2481.74 1711.07,-2480.46"/> +<path fill="none" stroke="black" d="M3200.57,-2447.97C3193.57,-2400.29 3185.28,-2265.18 3185.45,-2206.63"/> 
-<polygon fill="black" stroke="black" points="1711.18,-2476.95 1700.82,-2479.21 1710.33,-2483.89 1711.18,-2476.95"/>+<polygon fill="black" stroke="black" points="3188.95,-2206.35 3185.59,-2196.31 3181.96,-2206.26 3188.95,-2206.35"/>
 </g> </g>
-<!-- lore:lieux:munich&#45;&gt;pnj:theodore_smith --> +<!-- lore:organisations:mi&#45;seng_lung&#45;&gt;lore:organisations:fon --> 
-<g id="edge543" class="edge"><title>lore:lieux:munich&#45;&gt;pnj:theodore_smith</title> +<g id="edge490" class="edge"><title>lore:organisations:mi&#45;seng_lung&#45;&gt;lore:organisations:fon</title> 
-<path fill="none" stroke="black" d="M2558.44,-2535.9C2809.79,-2531.85 3640.28,-2516.29 3687,-2484 3787.23,-2414.71 3736.96,-2339.14 3795,-2232 3804.16,-2215.09 3808.35,-2212.01 3819,-2196 3925.38,-2036.1 3967.36,-2005.32 4058,-1836 4148.07,-1667.75 4147.74,-1614.94 4224,-1440 4227.85,-1431.16 4232.17,-1421.54 4236.54,-1412.96"/> +<path fill="none" stroke="black" d="M3134.1,-2451.17C3076.51,-2439.33 2995.99,-2422.31 2939.81,-2410.12"/> 
-<polygon fill="black" stroke="black" points="4239.63,-1414.6 4241.27,-1404.13 4233.46,-1411.29 4239.63,-1414.6"/>+<polygon fill="black" stroke="black" points="2940.48,-2406.68 2929.96,-2407.97 2938.99,-2413.52 2940.48,-2406.68"/>
 </g> </g>
-<!-- lore:gangs:dorf_et_obere --> +<!-- lore:organisations:mi&#45;seng_lung&#45;&gt;pnj:niddon --> 
-<g id="node78" class="node"><title>lore:gangs:dorf_et_obere</title> +<g id="edge489" class="edge"><title>lore:organisations:mi&#45;seng_lung&#45;&gt;pnj:niddon</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfee" cx="2427cy="-1962" rx="101.282" ry="18"/> +<path fill="none" stroke="blackd="M3284.22,-2452.09C3326.97,-2443.82 3379.98,-2431 3425,-2412 3452.26,-2400.49 3455.39,-2390.82 3481,-2376 3541.22,-2341.15 3554.74,-2328.13 3620,-2304 3679.29,-2282.08 3750.76,-2267.13 3799.3,-2258.83"/> 
-<text text-anchor="middlex="2427y="-1958.3" font-family="Times,serif" font-size="14.00">lore:gangs:dorf_et_obere</text>+<polygon fill="blackstroke="blackpoints="3800.01,-2262.26 3809.3,-2257.16 3798.86,-2255.35 3800.01,-2262.26"/>
 </g> </g>
-<!-- lore:lieux:munich&#45;&gt;lore:gangs:dorf_et_obere --> +<!-- pnj:tutoko --> 
-<g id="edge535" class="edge"><title>lore:lieux:munich&#45;&gt;lore:gangs:dorf_et_obere</title> +<g id="node103" class="node" onclick="click(evt)"><title>pnj:tutoko</title> 
-<path fill="none" stroke="blackd="M2499.82,-2520.23C2506.84,-2510.23 2515.09,-2496.98 2520,-2484 2557.12,-2385.79 2559,-2356 2559,-2251 2559,-2251 2559,-2251 2559,-2105 2559,-2050.62 2506.43,-2008.33 2467.65,-1984.52"/> +<ellipse fill="#e5b030" fill-opacity="0.733333" stroke="#e5b030stroke-opacity="0.733333" cx="3083" cy="-2394" rx="47.3916" ry="18"/> 
-<polygon fill="blackstroke="blackpoints="2469,-1981.25 2458.62,-1979.15 2465.43,-1987.27 2469,-1981.25"/>+<text text-anchor="middlex="3083y="-2390.3" font-family="Times,serif" font-size="14.00">pnj:tutoko</text>
 </g> </g>
-<!-- pnj:gutwayn --> +<!-- lore:organisations:mi&#45;seng_lung&#45;&gt;pnj:tutoko --> 
-<g id="node79" class="node"><title>pnj:gutwayn</title> +<g id="edge481" class="edge"><title>lore:organisations:mi&#45;seng_lung&#45;&gt;pnj:tutoko</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfeecx="2402" cy="-2178" rx="53.8905" ry="18"/> +<path fill="none" stroke="blackd="M3170.58,-2448.59C3152.33,-2438.75 3130.23,-2426.14 3112.74,-2415.63"/> 
-<text text-anchor="middlex="2402y="-2174.3" font-family="Times,serif" font-size="14.00">pnj:gutwayn</text>+<polygon fill="blackstroke="blackpoints="3114.42,-2412.56 3104.06,-2410.35 3110.78,-2418.54 3114.42,-2412.56"/>
 </g> </g>
-<!-- lore:lieux:munich&#45;&gt;pnj:gutwayn --> +<!-- lore:organisations:mi&#45;seng_lung&#45;&gt;pj:splenters --> 
-<g id="edge547" class="edge"><title>lore:lieux:munich&#45;&gt;pnj:gutwayn</title> +<g id="edge483" class="edge"><title>lore:organisations:mi&#45;seng_lung&#45;&gt;pj:splenters</title> 
-<path fill="none" stroke="black" d="M2487.14,-2519.75C2493.26,-2470.93 2518.38,-2329.06 2465,-2232 2457.84,-2218.98 2445.96,-2208.28 2434.37,-2199.99"/> +<path fill="none" stroke="black" d="M3091.86,-2458.5C2965.23,-2450.2 2774.35,-2434.2 2749,-2412 2668.64,-2341.62 2690,-2285.82 2690,-2179 2690,-2179 2690,-2179 2690,-2105 2690,-1984.12 2405.08,-1791.19 2336,-1692 2205.47,-1504.57 2086,-1471.4 2086,-1243 2086,-1243 2086,-1243 2086,-737 2086,-665.212 2112.21,-636.135 2073,-576 2061.52,-558.397 2042.14,-546.189 2023.62,-537.968"/> 
-<polygon fill="black" stroke="black" points="2436.3,-2197.07 2426.05,-2194.38 2432.38,-2202.88 2436.3,-2197.07"/>+<polygon fill="black" stroke="black" points="2024.93,-534.723 2014.35,-534.135 2022.26,-541.191 2024.93,-534.723"/>
 </g> </g>
-<!-- pnj:arima --> +<!-- pnj:iruka --> 
-<g id="node80" class="node"><title>pnj:arima</title> +<g id="node122" class="node" onclick="click(evt)"><title>pnj:iruka</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfee" cx="2427" cy="-2034" rx="43.5923" ry="18"/> +<ellipse fill="#e5b030" fill-opacity="0.733333" stroke="#e5b030" stroke-opacity="0.733333" cx="3680" cy="-2322" rx="41.6928" ry="18"/> 
-<text text-anchor="middle" x="2427" y="-2030.3" font-family="Times,serif" font-size="14.00">pnj:arima</text>+<text text-anchor="middle" x="3680" y="-2318.3" font-family="Times,serif" font-size="14.00">pnj:iruka</text>
 </g> </g>
-<!-- lore:lieux:munich&#45;&gt;pnj:arima --> +<!-- lore:organisations:mi&#45;seng_lung&#45;&gt;pnj:iruka --> 
-<g id="edge549" class="edge"><title>lore:lieux:munich&#45;&gt;pnj:arima</title> +<g id="edge482" class="edge"><title>lore:organisations:mi&#45;seng_lung&#45;&gt;pnj:iruka</title> 
-<path fill="none" stroke="black" d="M2558.76,-2537.44C2664.97,-2536.44 2856.72,-2528.19 2908,-2484 2944.98,-2452.13 2944.8,-2421.83 2928,-2376 2913.56,-2336.62 2898.54,-2331.64 2867,-2304 2733.49,-2186.99 2686.37,-2173.88 2531,-2088 2508.24,-2075.42 2481.99,-2062.99 2461.45,-2053.33"/> +<path fill="none" stroke="black" d="M3300.91,-2454.54C3354.98,-2446.8 3423.03,-2433.72 3481,-2412 3510.48,-2400.95 3513.81,-2390.02 3542,-2376 3572.83,-2360.67 3609.23,-2346.01 3637.03,-2336.01"/> 
-<polygon fill="black" stroke="black" points="2462.7,-2050.05 2452.16,-2048.96 2459.72,-2056.38 2462.7,-2050.05"/>+<polygon fill="black" stroke="black" points="3638.21,-2339.31 3646.48,-2332.68 3635.88,-2332.71 3638.21,-2339.31"/>
 </g> </g>
-<!-- pnj:edrich --> +<!-- pnj:ono --> 
-<g id="node81" class="node"><title>pnj:edrich</title> +<g id="node128" class="node" onclick="click(evt)"><title>pnj:ono</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfee" cx="2485" cy="-2106" rx="46.2923" ry="18"/> +<ellipse fill="#e5b030" fill-opacity="0.733333" stroke="#e5b030" stroke-opacity="0.733333" cx="3598" cy="-2394" rx="38.1938" ry="18"/> 
-<text text-anchor="middle" x="2485" y="-2102.3" font-family="Times,serif" font-size="14.00">pnj:edrich</text>+<text text-anchor="middle" x="3598" y="-2390.3" font-family="Times,serif" font-size="14.00">pnj:ono</text>
 </g> </g>
-<!-- lore:lieux:munich&#45;&gt;pnj:edrich --> +<!-- lore:organisations:mi&#45;seng_lung&#45;&gt;pnj:ono --> 
-<g id="edge538" class="edge"><title>lore:lieux:munich&#45;&gt;pnj:edrich</title> +<g id="edge488" class="edge"><title>lore:organisations:mi&#45;seng_lung&#45;&gt;pnj:ono</title> 
-<path fill="none" stroke="black" d="M2558.04,-2535.67C2655.77,-2532.43 2824.85,-2521.42 2873,-2484 2900.24,-2462.83 2895.44,-2445.87 2902,-2412 2905.04,-2396.29 2909.76,-2389.99 2902,-2376 2865.41,-2309.99 2677.71,-2236.45 2614,-2196 2578.11,-2173.21 2537.2,-2146.77 2511.08,-2128.66"/> +<path fill="none" stroke="black" d="M3297.09,-2453.83C3364.12,-2445.1 3456.74,-2431.22 3537,-2412 3543.06,-2410.55 3549.43,-2408.72 3555.71,-2406.81"/> 
-<polygon fill="black" stroke="black" points="2513.01,-2125.74 2502.82,-2122.86 2508.99,-2131.47 2513.01,-2125.74"/>+<polygon fill="black" stroke="black" points="3556.93,-2410.1 3565.43,-2403.78 3554.84,-2403.42 3556.93,-2410.1"/>
 </g> </g>
-<!-- pnj:az_ebo --> +<!-- pnj:keito_lung&#45;&gt;lore:lieux:munich --> 
-<g id="node82" class="node"><title>pnj:az_ebo</title> +<g id="edge214" class="edge"><title>pnj:keito_lung&#45;&gt;lore:lieux:munich</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfeecx="1373" cy="-1890" rx="50.0912" ry="18"/> +<path fill="none" stroke="blackd="M4410.15,-611.81C4369.21,-658.231 4244.3,-794.181 4200,-936 4147.52,-1104.01 4261.45,-1169.41 4194,-1332 4091.39,-1579.35 4001.18,-1622.24 3774,-1764 3730.36,-1791.23 3710.67,-1778.37 3664,-1800 3608.6,-1825.67 3590.74,-1829.4 3547,-1872 3431.05,-1984.93 3348,-2015.14 3348,-2177 3348,-2251 3348,-2251 3348,-2251 3348,-2354.56 3411.23,-2402.77 3347,-2484 3304.75,-2537.44 3256.68,-2485.39 3198,-2520 3119.74,-2566.17 3072,-2590.14 3072,-2681 3072,-2755 3072,-2755 3072,-2755 3072,-2806.96 3025.2,-2851.08 2989.68,-2875.78"/> 
-<text text-anchor="middlex="1373y="-1886.3" font-family="Times,serif" font-size="14.00">pnj:az_ebo</text>+<polygon fill="blackstroke="blackpoints="2987.29,-2873.17 2980.92,-2881.64 2991.18,-2878.99 2987.29,-2873.17"/>
 </g> </g>
-<!-- lore:lieux:munich&#45;&gt;pnj:az_ebo --> +<!-- pnj:keito_lung&#45;&gt;lore:objets:nanoforge --> 
-<g id="edge564" class="edge"><title>lore:lieux:munich&#45;&gt;pnj:az_ebo</title> +<g id="edge211" class="edge"><title>pnj:keito_lung&#45;&gt;lore:objets:nanoforge</title> 
-<path fill="none" stroke="black" d="M2415.45,-2536.92C2140.98,-2536.28 1168.94,-2530.74 1124,-2484 1067.52,-2425.27 1165.68,-2399.65 1214,-2376 1275.58,-2345.86 1313.87,-2386.77 1364,-2340 1394.32,-2311.71 1392,-2292.47 1392,-2251 1392,-2251 1392,-2251 1392,-2033 1392,-1992.45 1380.87,-1946.59 1374.9,-1918.24"/> +<path fill="none" stroke="black" d="M4438.13,-611.555C4474.28,-650.777 4569.14,-751.786 4656,-828 4667.99,-838.523 4681.84,-849.385 4693.96,-858.515"/> 
-<polygon fill="black" stroke="black" points="1378.3,-1917.39 1372.9,-1908.27 1371.44,-1918.77 1378.3,-1917.39"/>+<polygon fill="black" stroke="black" points="4691.93,-861.364 4702.04,-864.533 4696.11,-855.751 4691.93,-861.364"/>
 </g> </g>
-<!-- pnj:silvo_campolin --> +<!-- pnj:keito_lung&#45;&gt;lore:organisations:mi&#45;seng_lung --> 
-<g id="node88" class="node"><title>pnj:silvo_campolin</title> +<g id="edge212" class="edge"><title>pnj:keito_lung&#45;&gt;lore:organisations:mi&#45;seng_lung</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfee" cx="4819cy="-2466" rx="79.0865" ry="18"/> +<path fill="none" stroke="blackd="M4428.71,-612.049C4432,-638.708 4432,-691.885 4432,-737 4432,-955 4432,-955 4432,-955 4432,-1053.31 4376,-1070.69 4376,-1169 4376,-1315 4376,-1315 4376,-1315 4376,-1390.2 4378.53,-1424.22 4324,-1476 4278.97,-1518.76 4245.18,-1485.55 4189,-1512 4139.12,-1535.48 4132.25,-1551.12 4088,-1584 4046.04,-1615.18 4035.12,-1622.49 3995,-1656 3939.93,-1701.99 3937.7,-1729.12 3875,-1764 3824.85,-1791.9 3803.6,-1777.05 3751,-1800 3636.99,-1849.75 3600.4,-1857.5 3511,-1944 3401.49,-2049.95 3399.25,-2098.94 3325,-2232 3284.3,-2304.93 3244.02,-2395.19 3221.65,-2438.87"/> 
-<text text-anchor="middlex="4819y="-2462.3" font-family="Times,serif" font-size="14.00">pnj:silvo_campolin</text>+<polygon fill="blackstroke="blackpoints="3218.43,-2437.47 3216.89,-2447.96 3224.63,-2440.72 3218.43,-2437.47"/>
 </g> </g>
-<!-- lore:lieux:munich&#45;&gt;pnj:silvo_campolin --> +<!-- pnj:keito_lung&#45;&gt;pnj:yu_mi&#45;seng --> 
-<g id="edge546" class="edge"><title>lore:lieux:munich&#45;&gt;pnj:silvo_campolin</title> +<g id="edge213" class="edge"><title>pnj:keito_lung&#45;&gt;pnj:yu_mi&#45;seng</title> 
-<path fill="none" stroke="black" d="M2558.54,-2536.81C2890.58,-2535.71 4283.19,-2528.51 4717,-2484 4727.27,-2482.95 4738.11,-2481.38 4748.75,-2479.63"/> +<path fill="none" stroke="black" d="M4445.46,-577.116C4458.91,-567.607 4476.2,-555.382 4490.94,-544.959"/> 
-<polygon fill="black" stroke="black" points="4749.6,-2483.03 4758.86,-2477.89 4748.41,-2476.13 4749.6,-2483.03"/>+<polygon fill="black" stroke="black" points="4493.14,-547.695 4499.28,-539.064 4489.1,-541.979 4493.14,-547.695"/>
 </g> </g>
-<!-- pnj:camillia_campolin --> +<!-- lore:objets:trollhammer_de_oggodt --> 
-<g id="node90" class="node"><title>pnj:camillia_campolin</title> +<g id="node13" class="node" onclick="click(evt)"><title>lore:objets:trollhammer_de_oggodt</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfee" cx="4809" cy="-2394" rx="89.0842" ry="18"/> +<ellipse fill="#24cb1f" fill-opacity="0.733333" stroke="#24cb1f" stroke-opacity="0.733333" cx="1165" cy="-3042" rx="137.576" ry="18"/> 
-<text text-anchor="middle" x="4809" y="-2390.3" font-family="Times,serif" font-size="14.00">pnj:camillia_campolin</text>+<text text-anchor="middle" x="1165" y="-3038.3" font-family="Times,serif" font-size="14.00">lore:objets:trollhammer_de_oggodt</text>
 </g> </g>
-<!-- lore:lieux:munich&#45;&gt;pnj:camillia_campolin --> +<!-- lore:objets:trollhammer_de_oggodt&#45;&gt;pj:oggodt --> 
-<g id="edge545" class="edge"><title>lore:lieux:munich&#45;&gt;pnj:camillia_campolin</title> +<g id="edge13" class="edge"><title>lore:objets:trollhammer_de_oggodt&#45;&gt;pj:oggodt</title> 
-<path fill="none" stroke="black" d="M2558.58,-2537.01C2784.57,-2536.52 3502.45,-2531.01 4095,-2484 4325.73,-2465.69 4596.92,-2426.42 4728.89,-2406.74"/> +<path fill="none" stroke="black" d="M1102.25,-3058.06C1042.06,-3071.68 952.476,-3091.34 896.956,-3103.08"/> 
-<polygon fill="black" stroke="black" points="4729.54,-2410.18 4738.91,-2405.24 4728.51,-2403.26 4729.54,-2410.18"/>+<polygon fill="black" stroke="black" points="896.065,-3099.69 887.001,-3105.17 897.508,-3106.54 896.065,-3099.69"/>
 </g> </g>
-<!-- lore:organisations:lotus_jaune --> +<!-- pj:oggodt&#45;&gt;pj:eidolon --> 
-<g id="node95" class="node"><title>lore:organisations:lotus_jaune</title> +<g id="edge568" class="edge"><title>pj:oggodt&#45;&gt;pj:eidolon</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfeecx="1461" cy="-666" rx="116.979" ry="18"/> +<path fill="none" stroke="blackd="M808.853,-3123.9C747.924,-3137.12 628.912,-3161.85 560.837,-3175.44"/> 
-<text text-anchor="middlex="1461y="-662.3" font-family="Times,serif" font-size="14.00">lore:organisations:lotus_jaune</text>+<polygon fill="blackstroke="blackpoints="559.896,-3172.06 550.771,-3177.44 561.262,-3178.92 559.896,-3172.06"/>
 </g> </g>
-<!-- lore:lieux:munich&#45;&gt;lore:organisations:lotus_jaune --> +<!-- pj:oggodt&#45;&gt;lore:objets:trollhammer_de_oggodt --> 
-<g id="edge556" class="edge"><title>lore:lieux:munich&#45;&gt;lore:organisations:lotus_jaune</title> +<g id="edge574" class="edge"><title>pj:oggodt&#45;&gt;lore:objets:trollhammer_de_oggodt</title> 
-<path fill="none" stroke="black" d="M2415.7,-2535.95C2190.39,-2532.22 1507.19,-2517.94 1475,-2484 1463.99,-2472.39 1472.94,-2463.87 1475,-2448 1486.65,-2358.2 1527,-2341.55 1527,-2251 1527,-2251 1527,-2251 1527,-1961 1527,-1918.81 1515.71,-1908.17 1494,-1872 1455.76,-1808.3 1383,-1821.3 1383,-1747 1383,-1747 1383,-1747 1383,-1529 1383,-1432.4 1345,-1411.6 1345,-1315 1345,-1315 1345,-1315 1345,-809 1345,-758.49 1388.72,-714.535 1422.61,-689.391"/> +<path fill="none" stroke="black" d="M884.468,-3103.7C933.243,-3092.48 1019.6,-3073.39 1083.69,-3059.61"/> 
-<polygon fill="black" stroke="black" points="1424.88,-692.072 1430.99,-683.412 1420.81,-686.375 1424.88,-692.072"/>+<polygon fill="black" stroke="black" points="1084.74,-3062.97 1093.78,-3057.45 1083.27,-3056.12 1084.74,-3062.97"/>
 </g> </g>
-<!-- pnj:milla --> +<!-- pj:oggodt&#45;&gt;pj:sven --> 
-<g id="node96" class="node"><title>pnj:milla</title> +<g id="edge570" class="edge"><title>pj:oggodt&#45;&gt;pj:sven</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfee" cx="916cy="-2466" rx="40.0939" ry="18"/> +<path fill="none" stroke="blackd="M803.045,-3109.27C766.485,-3103.92 715.758,-3091.02 684,-3060 653.819,-3030.52 651,-3013.19 651,-2971 651,-2971 651,-2971 651,-2897 651,-2227.74 1172.95,-2229.68 1449,-1620 1516.45,-1471.03 1514.84,-1423.21 1525,-1260 1529.97,-1180.15 1538.04,-1158.93 1525,-1080 1523.57,-1071.37 1520.93,-1062.26 1518.48,-1054.07"/> 
-<text text-anchor="middlex="916y="-2462.3" font-family="Times,serif" font-size="14.00">pnj:milla</text>+<polygon fill="blackstroke="blackpoints="1521.79,-1052.9 1515.6,-1044.3 1515.07,-1054.88 1521.79,-1052.9"/>
 </g> </g>
-<!-- lore:lieux:munich&#45;&gt;pnj:milla --> +<!-- pnj:meredith --> 
-<g id="edge548" class="edge"><title>lore:lieux:munich&#45;&gt;pnj:milla</title> +<g id="node54" class="node" onclick="click(evt)"><title>pnj:meredith</title> 
-<path fill="none" stroke="blackd="M2415.55,-2537.06C2153.39,-2536.9 1245.41,-2532.81 961,-2484 958.139,-2483.51 955.22,-2482.91 952.308,-2482.22"/> +<ellipse fill="#e5b030" fill-opacity="0.733333" stroke="#e5b030stroke-opacity="0.733333" cx="3729" cy="-1242" rx="55.4913" ry="18"/> 
-<polygon fill="blackstroke="blackpoints="953.089,-2478.81 942.527,-2479.63 951.298,-2485.57 953.089,-2478.81"/>+<text text-anchor="middlex="3729y="-1238.3" font-family="Times,serif" font-size="14.00">pnj:meredith</text>
 </g> </g>
-<!-- pnj:youzo --> +<!-- pj:oggodt&#45;&gt;pnj:meredith --> 
-<g id="node97" class="node"><title>pnj:youzo</title> +<g id="edge575" class="edge"><title>pj:oggodt&#45;&gt;pnj:meredith</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfee" cx="993cy="-2394" rx="46.2923" ry="18"/> +<path fill="none" stroke="blackd="M892.116,-3111.01C1001.96,-3105.91 1275.68,-3090.61 1303,-3060 1371.67,-2983.06 1250.83,-3011.41 1191,-2988 1051.13,-2933.28 814.417,-2927.8 905,-2808 984.678,-2702.62 1922.13,-2520.84 2049,-2484 2156.76,-2452.71 2189.46,-2459.78 2291,-2412 2681.49,-2228.25 2692.64,-2020.06 3098,-1872 3233.26,-1822.59 3282.94,-1880.18 3420,-1836 3451.06,-1825.99 3454.2,-1813.3 3484,-1800 3529.43,-1779.72 3551.97,-1796.09 3590,-1764 3617.81,-1740.53 3615.99,-1725.99 3629,-1692 3687.79,-1538.36 3691.18,-1494.77 3715,-1332 3718.01,-1311.46 3719.23,-1288 3721.02,-1270.33"/> 
-<text text-anchor="middlex="993y="-2390.3" font-family="Times,serif" font-size="14.00">pnj:youzo</text>+<polygon fill="blackstroke="blackpoints="3724.52,-1270.49 3722.22,-1260.15 3717.57,-1269.67 3724.52,-1270.49"/>
 </g> </g>
-<!-- lore:lieux:munich&#45;&gt;pnj:youzo --> +<!-- pj:oggodt&#45;&gt;pnj:joachim_finkerbachen --> 
-<g id="edge565" class="edge"><title>lore:lieux:munich&#45;&gt;pnj:youzo</title> +<g id="edge571" class="edge"><title>pj:oggodt&#45;&gt;pnj:joachim_finkerbachen</title> 
-<path fill="none" stroke="black" d="M2415.45,-2536.62C2128.48,-2534.8 1074.01,-2525.22 1017,-2484 997.44,-2469.86 989.46,-2442.76 987.897,-2422.17"/> +<path fill="none" stroke="black" d="M892.217,-3111.61C1010.79,-3107.64 1323.08,-3094.26 1354,-3060 1371.41,-3040.71 1352.41,-3014.5 1334.51,-2995.52"/> 
-<polygon fill="black" stroke="black" points="991.394,-2422 987.638,-2412.09 984.396,-2422.18 991.394,-2422"/>+<polygon fill="black" stroke="black" points="1336.77,-2992.83 1327.28,-2988.13 1331.77,-2997.72 1336.77,-2992.83"/>
 </g> </g>
-<!-- pnj:fgf --> +<!-- pj:oggodt&#45;&gt;pj:endol --> 
-<g id="node108" class="node"><title>pnj:fgf</title> +<g id="edge569" class="edge"><title>pj:oggodt&#45;&gt;pj:endol</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfee" cx="1875cy="-954" rx="34.394" ry="18"/> +<path fill="none" stroke="blackd="M803.056,-3109.02C763.198,-3103.53 704.498,-3090.54 663,-3060 594.003,-3009.22 557,-2984.67 557,-2899 557,-2899 557,-2899 557,-2537 557,-2512.92 367.227,-1715.71 363,-1692 339.015,-1557.46 324,-1523.66 324,-1387 324,-1387 324,-1387 324,-1241 324,-1105.09 321.205,-1069.63 346,-936 352.081,-903.226 349.256,-892.218 367,-864 374.71,-851.739 386.045,-840.606 396.724,-831.744"/> 
-<text text-anchor="middlex="1875y="-950.3" font-family="Times,serif" font-size="14.00">pnj:fgf</text>+<polygon fill="blackstroke="blackpoints="399.029,-834.383 404.692,-825.429 394.681,-828.897 399.029,-834.383"/>
 </g> </g>
-<!-- lore:lieux:munich&#45;&gt;pnj:fgf --> +<!-- pj:oggodt&#45;&gt;pj:splenters --> 
-<g id="edge541" class="edge"><title>lore:lieux:munich&#45;&gt;pnj:fgf</title> +<g id="edge572" class="edge"><title>pj:oggodt&#45;&gt;pj:splenters</title> 
-<path fill="none" stroke="black" d="M2416.84,-2534.28C2277.33,-2528.13 1975.6,-2511.48 1938,-2484 1836.99,-2410.19 1843,-2867.26 1843,-1459 1843,-1459 1843,-1459 1843,-1313 1843,-1248.43 1858.09,-1053.59 1868.61,-981.872"/> +<path fill="none" stroke="black" d="M818.331,-3099.89C777.372,-3078.95 707,-3033.83 707,-2971 707,-2971 707,-2971 707,-2897 707,-2459.76 1020.07,-2378.61 1432,-2232 1432,-2232 1891,-2124 1891,-2124 1900.93,-2111.46 1892.25,-2103.95 1891,-2088 1884.09,-1999.64 1860,-1979.63 1860,-1891 1860,-1891 1860,-1891 1860,-665 1860,-624.031 1859.1,-608.53 1884,-576 1896,-560.322 1914.07,-548.439 1930.96,-539.94"/> 
-<polygon fill="black" stroke="black" points="1872.09,-982.258 1870.19,-971.835 1865.17,-981.169 1872.09,-982.258"/>+<polygon fill="black" stroke="black" points="1932.64,-543.016 1940.17,-535.564 1929.63,-536.694 1932.64,-543.016"/>
 </g> </g>
-<!-- lore:organisations:famille_von_schencker --> +<!-- pnj:martha_finkerbachen --> 
-<g id="node120" class="node"><title>lore:organisations:famille_von_schencker</title> +<g id="node152" class="node" onclick="click(evt)"><title>pnj:martha_finkerbachen</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfee" cx="3175" cy="-882" rx="159.472" ry="18"/> +<ellipse fill="#e5b030" fill-opacity="0.733333" stroke="#e5b030" stroke-opacity="0.733333" cx="910" cy="-3042" rx="99.3824" ry="18"/> 
-<text text-anchor="middle" x="3175" y="-878.3" font-family="Times,serif" font-size="14.00">lore:organisations:famille_von_schencker</text>+<text text-anchor="middle" x="910" y="-3038.3" font-family="Times,serif" font-size="14.00">pnj:martha_finkerbachen</text>
 </g> </g>
-<!-- lore:lieux:munich&#45;&gt;lore:organisations:famille_von_schencker --> +<!-- pj:oggodt&#45;&gt;pnj:martha_finkerbachen --> 
-<g id="edge566" class="edge"><title>lore:lieux:munich&#45;&gt;lore:organisations:famille_von_schencker</title> +<g id="edge573" class="edge"><title>pj:oggodt&#45;&gt;pnj:martha_finkerbachen</title> 
-<path fill="none" stroke="black" d="M2557.32,-2534.15C2684.5,-2528.45 2941.9,-2513.59 2970,-2484 3003.07,-2449.17 2977.48,-2423.91 2974,-2376 2953.5,-2094.21 2882,-2029.53 2882,-1747 2882,-1747 2882,-1747 2882,-1673 2882,-1523.46 2897.75,-1129.45 2985,-1008 3019.46,-960.034 3078.34,-924.403 3121.54,-903.709"/> +<path fill="none" stroke="black" d="M856.372,-3096.05C863.267,-3087.37 872.729,-3076.64 881.846,-3067.11"/> 
-<polygon fill="black" stroke="black" points="3123.2,-906.796 3130.78,-899.395 3120.24,-900.453 3123.2,-906.796"/>+<polygon fill="black" stroke="black" points="884.526,-3069.38 889.028,-3059.79 879.528,-3064.48 884.526,-3069.38"/>
 </g> </g>
-<!-- pnj:sokouzy --> +<!-- lore:organisations:camorra&#45;&gt;lore:lieux:munich --> 
-<g id="node124" class="node"><title>pnj:sokouzy</title> +<g id="edge16" class="edge"><title>lore:organisations:camorra&#45;&gt;lore:lieux:munich</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfeecx="1309" cy="-2322" rx="54.6905" ry="18"/> +<path fill="none" stroke="blackd="M1236.55,-1259.29C1220.72,-1268.02 1202.32,-1280.25 1190,-1296 1079.42,-1437.35 1082.03,-1514.89 1111,-1692 1116.4,-1725.02 1120.63,-1732.91 1133,-1764 1212.25,-1963.18 1418.07,-2469.14 1562,-2628 1683.47,-2762.06 1734.43,-2789.7 1907,-2844 1998.09,-2872.66 2640.3,-2889.81 2869.79,-2895.17"/> 
-<text text-anchor="middlex="1309y="-2318.3" font-family="Times,serif" font-size="14.00">pnj:sokouzy</text>+<polygon fill="blackstroke="blackpoints="2870,-2898.68 2880.07,-2895.41 2870.16,-2891.68 2870,-2898.68"/>
 </g> </g>
-<!-- lore:lieux:munich&#45;&gt;pnj:sokouzy --> +<!-- lore:organisations:camorra&#45;&gt;pnj:silvo_campolin --> 
-<g id="edge570" class="edge"><title>lore:lieux:munich&#45;&gt;pnj:sokouzy</title> +<g id="edge14" class="edge"><title>lore:organisations:camorra&#45;&gt;pnj:silvo_campolin</title> 
-<path fill="none" stroke="black" d="M2415.29,-2537.02C2134.02,-2536.78 1119.8,-2532.6 1073,-2484 1032.28,-2441.71 1113.78,-2387.74 1131,-2376 1150.84,-2362.48 1209.38,-2345.73 1254.05,-2334.72"/> +<path fill="none" stroke="black" d="M1262.97,-1223.67C1262.35,-1204.47 1262.43,-1173.4 1248,-1152 1238.15,-1137.39 1222.9,-1126.47 1207.74,-1118.46"/> 
-<polygon fill="black" stroke="black" points="1255.04,-2338.08 1263.93,-2332.33 1253.39,-2331.28 1255.04,-2338.08"/>+<polygon fill="black" stroke="black" points="1208.89,-1115.12 1198.37,-1113.84 1205.79,-1121.4 1208.89,-1115.12"/>
 </g> </g>
-<!-- pnj:jinks --> +<!-- lore:organisations:camorra&#45;&gt;lore:gangs:dorf_et_obere --> 
-<g id="node128" class="node"><title>pnj:jinks</title> +<g id="edge15" class="edge"><title>lore:organisations:camorra&#45;&gt;lore:gangs:dorf_et_obere</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfeecx="1875" cy="-882" rx="40.0939" ry="18"/> +<path fill="none" stroke="blackd="M1274.21,-1223.7C1280.73,-1213.94 1289.07,-1201.1 1293,-1188 1307.17,-1140.81 1292.01,-1123.02 1268,-1080 1207.66,-971.862 1184.34,-946.508 1092,-864 1047.87,-824.572 1029.91,-823.8 980,-792 954.731,-775.899 944.149,-777.225 923,-756 859.409,-692.182 810.23,-595.827 792.38,-549.593"/> 
-<text text-anchor="middlex="1875y="-878.3" font-family="Times,serif" font-size="14.00">pnj:jinks</text>+<polygon fill="blackstroke="blackpoints="795.594,-548.19 788.875,-539.999 789.019,-550.592 795.594,-548.19"/>
 </g> </g>
-<!-- lore:lieux:munich&#45;&gt;pnj:jinks --> +<!-- lore:organisations:camorra&#45;&gt;pnj:camillia_campolin --> 
-<g id="edge560" class="edge"><title>lore:lieux:munich&#45;&gt;pnj:jinks</title> +<g id="edge17" class="edge"><title>lore:organisations:camorra&#45;&gt;pnj:camillia_campolin</title> 
-<path fill="none" stroke="black" d="M2415.83,-2536.11C2257.21,-2533.4 1885.88,-2522.85 1846,-2484 1704.93,-2346.55 1749,-1799.96 1749,-1603 1749,-1603 1749,-1603 1749,-1529 1749,-1366.34 1673,-1333.66 1673,-1171 1673,-1171 1673,-1171 1673,-1025 1673,-949.694 1769.51,-909.885 1829.22,-893.027"/> +<path fill="none" stroke="black" d="M1236.15,-1224.76C1220.73,-1215.45 1202.28,-1203.61 1187.24,-1193.41"/> 
-<polygon fill="black" stroke="black" points="1830.45,-896.32 1839.19,-890.329 1828.62,-889.564 1830.45,-896.32"/>+<polygon fill="black" stroke="black" points="1189.04,-1190.41 1178.82,-1187.63 1185.08,-1196.18 1189.04,-1190.41"/>
 </g> </g>
-<!-- lore:planques:box_m2 --> +<!-- pnj:silvo_campolin&#45;&gt;lore:lieux:munich --> 
-<g id="node130" class="node"><title>lore:planques:box_m2</title> +<g id="edge444" class="edge"><title>pnj:silvo_campolin&#45;&gt;lore:lieux:munich</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfeecx="3971" cy="-2466" rx="90.9839" ry="18"/> +<path fill="none" stroke="blackd="M1130.77,-1114.98C1112.5,-1124.36 1088.91,-1137.25 1070,-1152 912.074,-1275.15 799.381,-1355.61 855,-1548 951.956,-1883.37 973.884,-1978.51 1169,-2268 1319.18,-2490.83 1399.82,-2512.19 1592,-2700 1625.51,-2732.75 1630.25,-2745.66 1669,-2772 1699.91,-2793.01 1712.4,-2789.72 1745,-2808 1770.48,-2822.29 1772.2,-2835.02 1800,-2844 1901.17,-2876.7 2623.4,-2891.5 2869.31,-2895.69"/> 
-<text text-anchor="middlex="3971y="-2462.3" font-family="Times,serif" font-size="14.00">lore:planques:box_m2</text>+<polygon fill="blackstroke="blackpoints="2869.55,-2899.2 2879.61,-2895.87 2869.67,-2892.2 2869.55,-2899.2"/>
 </g> </g>
-<!-- lore:lieux:munich&#45;&gt;lore:planques:box_m2 --> +<!-- pnj:silvo_campolin&#45;&gt;lore:organisations:camorra --> 
-<g id="edge571" class="edge"><title>lore:lieux:munich&#45;&gt;lore:planques:box_m2</title> +<g id="edge447" class="edge"><title>pnj:silvo_campolin&#45;&gt;lore:organisations:camorra</title> 
-<path fill="none" stroke="black" d="M2558.52,-2537.33C2762.13,-2537.54 3361.72,-2533.43 3857,-2484 3868.56,-2482.85 3880.77,-2481.23 3892.76,-2479.46"/> +<path fill="none" stroke="black" d="M1210.2,-1111.9C1231.05,-1120.12 1253.13,-1132.92 1266,-1152 1278.2,-1170.08 1280.03,-1195.06 1277.71,-1213.96"/> 
-<polygon fill="black" stroke="black" points="3893.4,-2482.9 3902.75,-2477.93 3892.34,-2475.98 3893.4,-2482.9"/>+<polygon fill="black" stroke="black" points="1274.23,-1213.56 1275.98,-1224.01 1281.13,-1214.75 1274.23,-1213.56"/>
 </g> </g>
-<!-- lore:bars:shatterwein --> +<!-- pnj:silvo_campolin&#45;&gt;pnj:camillia_campolin --> 
-<g id="node134" class="node"><title>lore:bars:shatterwein</title> +<g id="edge445" class="edge"><title>pnj:silvo_campolin&#45;&gt;pnj:camillia_campolin</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfeecx="2818" cy="-2394" rx="84.485" ry="18"/> +<path fill="none" stroke="blackd="M1164.9,-1116.1C1165.7,-1123.79 1165.94,-1133.05 1165.6,-1141.67"/> 
-<text text-anchor="middlex="2818y="-2390.3" font-family="Times,serif" font-size="14.00">lore:bars:shatterwein</text>+<polygon fill="blackstroke="blackpoints="1162.11,-1141.48 1164.92,-1151.7 1169.09,-1141.96 1162.11,-1141.48"/>
 </g> </g>
-<!-- lore:lieux:munich&#45;&gt;lore:bars:shatterwein --> +<!-- pnj:valentinpragault --> 
-<g id="edge540" class="edge"><title>lore:lieux:munich&#45;&gt;lore:bars:shatterwein</title> +<g id="node27" class="node" onclick="click(evt)"><title>pnj:valentinpragault</title> 
-<path fill="none" stroke="blackd="M2558.59,-2537.23C2652.44,-2535.68 2809.23,-2526.44 2846,-2484 2861.87,-2465.68 2847.94,-2439.61 2834.48,-2420.41"/> +<ellipse fill="#e5b030" fill-opacity="0.733333" stroke="#e5b030stroke-opacity="0.733333" cx="1125" cy="-1026" rx="79.8859" ry="18"/> 
-<polygon fill="blackstroke="blackpoints="2837.16,-2418.15 2828.44,-2412.13 2831.51,-2422.27 2837.16,-2418.15"/>+<text text-anchor="middlex="1125y="-1022.3" font-family="Times,serif" font-size="14.00">pnj:valentinpragault</text>
 </g> </g>
-<!-- lore:planques:squat_d_en_dol --> +<!-- pnj:silvo_campolin&#45;&gt;pnj:valentinpragault --> 
-<g id="node139" class="node"><title>lore:planques:squat_d_en_dol</title> +<g id="edge446" class="edge"><title>pnj:silvo_campolin&#45;&gt;pnj:valentinpragault</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfeecx="738" cy="-2466" rx="119.679" ry="18"/> +<path fill="none" stroke="blackd="M1150.77,-1080.05C1146.9,-1072.09 1142.2,-1062.41 1137.88,-1053.51"/> 
-<text text-anchor="middlex="738y="-2462.3" font-family="Times,serif" font-size="14.00">lore:planques:squat_d_en_dol</text>+<polygon fill="blackstroke="blackpoints="1140.91,-1051.74 1133.39,-1044.28 1134.61,-1054.8 1140.91,-1051.74"/>
 </g> </g>
-<!-- lore:lieux:munich&#45;&gt;lore:planques:squat_d_en_dol --> +<!-- lore:gangs:dorf_et_obere&#45;&gt;lore:corpos:ares --> 
-<g id="edge552" class="edge"><title>lore:lieux:munich&#45;&gt;lore:planques:squat_d_en_dol</title> +<g id="edge199" class="edge"><title>lore:gangs:dorf_et_obere&#45;&gt;lore:corpos:ares</title> 
-<path fill="none" stroke="black" d="M2415.22,-2537.16C2186.98,-2537.19 1458.18,-2533.24 858,-2484 847.678,-2483.15 836.916,-2482.06 826.253,-2480.85"/> +<path fill="none" stroke="black" d="M879.519,-514.91C1089.04,-501.267 1592.74,-468.468 1784.82,-455.96"/> 
-<polygon fill="black" stroke="black" points="826.421,-2477.34 816.079,-2479.65 825.599,-2484.29 826.421,-2477.34"/>+<polygon fill="black" stroke="black" points="1785.08,-459.451 1794.83,-455.309 1784.63,-452.466 1785.08,-459.451"/>
 </g> </g>
-<!-- pnj:jed --> +<!-- lore:gangs:dorf_et_obere&#45;&gt;lore:organisations:camorra --> 
-<g id="node140" class="node"><title>pnj:jed</title> +<g id="edge196" class="edge"><title>lore:gangs:dorf_et_obere&#45;&gt;lore:organisations:camorra</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfee" cx="176cy="-2466" rx="34.394" ry="18"/> +<path fill="none" stroke="blackd="M797.899,-539.999C820.873,-581.067 872.599,-687.356 941,-756 962.149,-777.225 972.731,-775.899 998,-792 1047.91,-823.8 1065.87,-824.572 1110,-864 1202.34,-946.508 1225.66,-971.862 1286,-1080 1310.01,-1123.02 1325.17,-1140.81 1311,-1188 1308,-1197.98 1302.45,-1207.81 1296.18,-1216.25"/> 
-<text text-anchor="middlex="176y="-2462.3" font-family="Times,serif" font-size="14.00">pnj:jed</text>+<polygon fill="blackstroke="blackpoints="1293.33,-1214.2 1289.74,-1224.17 1298.77,-1218.62 1293.33,-1214.2"/>
 </g> </g>
-<!-- lore:lieux:munich&#45;&gt;pnj:jed --> +<!-- lore:gangs:dorf_et_obere&#45;&gt;pnj:edrich --> 
-<g id="edge562" class="edge"><title>lore:lieux:munich&#45;&gt;pnj:jed</title> +<g id="edge201" class="edge"><title>lore:gangs:dorf_et_obere&#45;&gt;pnj:edrich</title> 
-<path fill="none" stroke="black" d="M2415.64,-2536.8C2053.8,-2535.58 430.86,-2527.66 211,-2484 209.735,-2483.75 208.459,-2483.46 207.18,-2483.15"/> +<path fill="none" stroke="black" d="M774.037,-540.127C765.25,-549.492 753.186,-561.19 742.038,-571.2"/> 
-<polygon fill="black" stroke="black" points="208.045,-2479.76 197.463,-2480.28 206.061,-2486.47 208.045,-2479.76"/>+<polygon fill="black" stroke="black" points="739.718,-568.58 734.518,-577.811 744.34,-573.837 739.718,-568.58"/>
 </g> </g>
-<!-- pnj:lisa_bergstein --> +<!-- lore:gangs:dorf_et_obere&#45;&gt;pnj:az_ebo --> 
-<g id="node149" class="node"><title>pnj:lisa_bergstein</title> +<g id="edge197" class="edge"><title>lore:gangs:dorf_et_obere&#45;&gt;pnj:az_ebo</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfeecx="527" cy="-2466" rx="73.387" ry="18"/> +<path fill="none" stroke="blackd="M716.632,-508.807C644.9,-495.552 534.649,-474.566 470.039,-461.859"/> 
-<text text-anchor="middlex="527y="-2462.3" font-family="Times,serif" font-size="14.00">pnj:lisa_bergstein</text>+<polygon fill="blackstroke="blackpoints="470.563,-458.395 460.074,-459.893 469.208,-465.263 470.563,-458.395"/>
 </g> </g>
-<!-- lore:lieux:munich&#45;&gt;pnj:lisa_bergstein --> +<!-- lore:gangs:dorf_et_obere&#45;&gt;pnj:gutwayn --> 
-<g id="edge554" class="edge"><title>lore:lieux:munich&#45;&gt;pnj:lisa_bergstein</title> +<g id="edge200" class="edge"><title>lore:gangs:dorf_et_obere&#45;&gt;pnj:gutwayn</title> 
-<path fill="none" stroke="black" d="M2415.63,-2536.68C2116.22,-2535.08 960.92,-2526.17 600,-2484 594.808,-2483.39 589.457,-2482.62 584.119,-2481.74"/> +<path fill="none" stroke="black" d="M728.662,-536.961C706.546,-544.874 682.865,-557.13 667,-576 634.929,-614.146 629.823,-674.815 627.017,-709.768"/> 
-<polygon fill="black" stroke="black" points="584.372,-2478.23 573.915,-2479.94 583.153,-2485.13 584.372,-2478.23"/>+<polygon fill="black" stroke="black" points="623.529,-709.481 626.193,-719.736 630.505,-710.058 623.529,-709.481"/>
 </g> </g>
-<!-- pnj:domovoi --> +<!-- lore:gangs:dorf_et_obere&#45;&gt;pnj:arima --> 
-<g id="node150" class="node"><title>pnj:domovoi</title> +<g id="edge198" class="edge"><title>lore:gangs:dorf_et_obere&#45;&gt;pnj:arima</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfeecx="2789" cy="-2466" rx="56.59" ry="18"/> +<path fill="none" stroke="blackd="M791.653,-540.185C792.406,-558.712 788.157,-588.678 777,-612 771.516,-623.462 763.005,-634.54 754.281,-643.577"/> 
-<text text-anchor="middlex="2789y="-2462.3" font-family="Times,serif" font-size="14.00">pnj:domovoi</text>+<polygon fill="blackstroke="blackpoints="751.72,-641.185 746.964,-650.652 756.586,-646.217 751.72,-641.185"/>
 </g> </g>
-<!-- lore:lieux:munich&#45;&gt;pnj:domovoi --> +<!-- pnj:camillia_campolin&#45;&gt;lore:lieux:munich --> 
-<g id="edge551" class="edge"><title>lore:lieux:munich&#45;&gt;pnj:domovoi</title> +<g id="edge226" class="edge"><title>pnj:camillia_campolin&#45;&gt;lore:lieux:munich</title> 
-<path fill="none" stroke="black" d="M2534.92,-2524.51C2579.93,-2513.86 2648.91,-2498.09 2709,-2484 2716.46,-2482.25 2724.36,-2480.38 2732.19,-2478.54"/> +<path fill="none" stroke="black" d="M1131.38,-1187.19C1055.41,-1230.6 850,-1357.96 850,-1529 850,-1603 850,-1603 850,-1603 850,-1947.9 906.991,-2049.56 1093,-2340 1214.02,-2528.97 1256.45,-2581.49 1447,-2700 1490.32,-2726.94 1509.19,-2715.7 1556,-2736 1556.18,-2736.08 1753.81,-2843.95 1754,-2844 1860.97,-2873.79 2617.4,-2890.58 2869.52,-2895.48"/> 
-<polygon fill="black" stroke="black" points="2733.09,-2481.92 2742.04,-2476.24 2731.5,-2475.11 2733.09,-2481.92"/>+<polygon fill="black" stroke="black" points="2869.64,-2898.98 2879.71,-2895.67 2869.77,-2891.98 2869.64,-2898.98"/>
 </g> </g>
-<!-- pnj:gin --> +<!-- pnj:camillia_campolin&#45;&gt;lore:organisations:camorra --> 
-<g id="node151" class="node"><title>pnj:gin</title> +<g id="edge225" class="edge"><title>pnj:camillia_campolin&#45;&gt;lore:organisations:camorra</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfeecx="3578" cy="-522" rx="34.394" ry="18"/> +<path fill="none" stroke="blackd="M1189.7,-1187.15C1205.09,-1196.44 1223.51,-1208.25 1238.56,-1218.45"/> 
-<text text-anchor="middlex="3578y="-518.3" font-family="Times,serif" font-size="14.00">pnj:gin</text>+<polygon fill="blackstroke="blackpoints="1236.76,-1221.46 1246.99,-1224.23 1240.73,-1215.69 1236.76,-1221.46"/>
 </g> </g>
-<!-- lore:lieux:munich&#45;&gt;pnj:gin --> +<!-- pnj:camillia_campolin&#45;&gt;pnj:silvo_campolin --> 
-<g id="edge530" class="edge"><title>lore:lieux:munich&#45;&gt;pnj:gin</title> +<g id="edge224" class="edge"><title>pnj:camillia_campolin&#45;&gt;pnj:silvo_campolin</title> 
-<path fill="none" stroke="black" d="M2558.53,-2536.45C2727.33,-2533.16 3136,-2512.89 3136,-2395 3136,-2395 3136,-2395 3136,-2321 3136,-2129.17 2788,-1722.83 2788,-1531 2788,-1531 2788,-1531 2788,-1313 2788,-1257.92 2961.07,-904.858 2998,-864 3159.66,-685.149 3437.46,-571.203 3539.29,-535.263"/> +<path fill="none" stroke="black" d="M1153.08,-1151.7C1152.29,-1143.98 1152.06,-1134.71 1152.4,-1126.11"/> 
-<polygon fill="black" stroke="black" points="3540.57,-538.523 3548.87,-531.933 3538.27,-531.912 3540.57,-538.523"/>+<polygon fill="black" stroke="black" points="1155.9,-1126.32 1153.1,-1116.1 1148.92,-1125.84 1155.9,-1126.32"/>
 </g> </g>
-<!-- lore:lieux:france --> +<!-- pnj:lisa_bergstein&#45;&gt;lore:lieux:munich --> 
-<g id="node20" class="node"><title>lore:lieux:france</title> +<g id="edge18" class="edge"><title>pnj:lisa_bergstein&#45;&gt;lore:lieux:munich</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfeecx="6442" cy="-2970" rx="67.6881" ry="18"/> +<path fill="none" stroke="blackd="M1176.33,-2837.76C1189.37,-2840.23 1203.15,-2842.56 1216,-2844 1543.07,-2880.68 2571.44,-2893.28 2869.4,-2896.25"/> 
-<text text-anchor="middlex="6442y="-2966.3" font-family="Times,serif" font-size="14.00">lore:lieux:france</text>+<polygon fill="blackstroke="blackpoints="2869.65,-2899.75 2879.68,-2896.35 2869.72,-2892.75 2869.65,-2899.75"/>
 </g> </g>
-<!-- lore:lieux:paris --> +<!-- pnj:lisa_bergstein&#45;&gt;pj:oggodt --> 
-<g id="node21" class="node"><title>lore:lieux:paris</title> +<g id="edge20" class="edge"><title>pnj:lisa_bergstein&#45;&gt;pj:oggodt</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfeecx="6442" cy="-2898" rx="62.2891" ry="18"/> +<path fill="none" stroke="blackd="M1073.38,-2839.93C1000.11,-2863.05 860.372,-2919.17 802,-3024 794.216,-3037.98 796.484,-3044.98 802,-3060 806.078,-3071.1 813.628,-3081.47 821.395,-3090.04"/> 
-<text text-anchor="middlex="6442y="-2894.3" font-family="Times,serif" font-size="14.00">lore:lieux:paris</text>+<polygon fill="blackstroke="blackpoints="819.025,-3092.63 828.495,-3097.38 824.054,-3087.76 819.025,-3092.63"/>
 </g> </g>
-<!-- lore:lieux:france&#45;&gt;lore:lieux:paris --> +<!-- pnj:lisa_bergstein&#45;&gt;pj:sven --> 
-<g id="edge18" class="edge"><title>lore:lieux:france&#45;&gt;lore:lieux:paris</title> +<g id="edge19" class="edge"><title>pnj:lisa_bergstein&#45;&gt;pj:sven</title> 
-<path fill="none" stroke="black" d="M6436.12,-2952.05C6435.3,-2944.35 6435.06,-2935.03 6435.39,-2926.36"/> +<path fill="none" stroke="black" d="M1121.14,-2807.88C1127.02,-2725.71 1157.57,-2364.4 1256,-2088 1325.67,-1892.37 1418.19,-1881.11 1504,-1692 1558.75,-1571.35 1559.65,-1534.76 1581,-1404 1604.21,-1261.83 1655.84,-1208.13 1590,-1080 1581.87,-1064.17 1566.57,-1052.01 1551.98,-1043.36"/> 
-<polygon fill="black" stroke="black" points="6438.89,-2926.49 6436.09,-2916.28 6431.91,-2926.01 6438.89,-2926.49"/>+<polygon fill="black" stroke="black" points="1553.51,-1040.2 1543.06,-1038.42 1550.12,-1046.32 1553.51,-1040.2"/>
 </g> </g>
-<!-- lore:lieux:france&#45;&gt;lore:lieux:nancy --> +<!-- pj:sven&#45;&gt;pj:eidolon --> 
-<g id="edge19" class="edge"><title>lore:lieux:france&#45;&gt;lore:lieux:nancy</title> +<g id="edge175" class="edge"><title>pj:sven&#45;&gt;pj:eidolon</title> 
-<path fill="none" stroke="black" d="M6406.33,-2954.67C6383.43,-2944.4 6353.92,-2930.44 6330.97,-2919.07"/> +<path fill="none" stroke="black" d="M1518.55,-1044.23C1521.44,-1116.97 1504.35,-1405.07 1416,-1620 1324.21,-1843.29 1157.8,-1780.68 980,-1944 734.155,-2169.83 519,-2203.17 519,-2537 519,-3043 519,-3043 519,-3043 519,-3083 519,-3129.35 516.708,-3157.92"/> 
-<polygon fill="black" stroke="black" points="6332.41,-2915.87 6321.9,-2914.53 6329.28,-2922.13 6332.41,-2915.87"/>+<polygon fill="black" stroke="black" points="513.217,-3157.65 515.712,-3167.95 520.183,-3158.35 513.217,-3157.65"/>
 </g> </g>
-<!-- lore:lieux:france&#45;&gt;lore:lieux:europe --> +<!-- pj:sven&#45;&gt;lore:corpos:ares --> 
-<g id="edge20" class="edge"><title>lore:lieux:france&#45;&gt;lore:lieux:europe</title> +<g id="edge174" class="edge"><title>pj:sven&#45;&gt;lore:corpos:ares</title> 
-<path fill="none" stroke="black" d="M6476.14,-2954.35C6493.64,-2945.91 6513.66,-2933.45 6526,-2916 6544.78,-2889.45 6536.1,-2876.39 6539,-2844 6560.74,-2601.29 6559.61,-2518.52 6444,-2304 6365.99,-2159.25 6190,-2199.43 6190,-2035 6190,-2035 6190,-2035 6190,-1817 6190,-1652.48 5808.46,-1374.73 5664,-1296 5630.39,-1277.68 5589.67,-1264.95 5556.56,-1256.57"/> +<path fill="none" stroke="black" d="M1518.18,-1007.97C1528.19,-936.465 1576.09,-657.093 1730,-504 1748.8,-485.295 1775.09,-472.937 1799.18,-464.9"/> 
-<polygon fill="black" stroke="black" points="5557.1,-1253.1 5546.55,-1254.11 5555.42,-1259.9 5557.1,-1253.1"/>+<polygon fill="black" stroke="black" points="1800.5,-468.155 1808.99,-461.819 1798.4,-461.477 1800.5,-468.155"/>
 </g> </g>
-<!-- lore:lieux:paris&#45;&gt;lore:lieux:france --> +<!-- pj:sven&#45;&gt;pj:oggodt --> 
-<g id="edge258" class="edge"><title>lore:lieux:paris&#45;&gt;lore:lieux:france</title> +<g id="edge176" class="edge"><title>pj:sven&#45;&gt;pj:oggodt</title> 
-<path fill="none" stroke="black" d="M6447.91,-2916.28C6448.71,-2924.03 6448.94,-2933.36 6448.59,-2942.01"/> +<path fill="none" stroke="black" d="M1530.63,-1042.88C1536.05,-1053.23 1540.88,-1067.15 1543,-1080 1556.04,-1158.93 1547.97,-1180.15 1543,-1260 1532.84,-1423.21 1534.45,-1471.03 1467,-1620 1190.95,-2229.68 669,-2227.74 669,-2897 669,-2971 669,-2971 669,-2971 669,-3013.19 671.819,-3030.52 702,-3060 727.171,-3084.58 764.256,-3097.79 794.694,-3104.87"/> 
-<polygon fill="black" stroke="black" points="6445.09,-2941.83 6447.88,-2952.05 6452.08,-2942.33 6445.09,-2941.83"/>+<polygon fill="black" stroke="black" points="794.22,-3108.35 804.734,-3107.05 795.702,-3101.51 794.22,-3108.35"/>
 </g> </g>
-<!-- lore:corpos:ares --> +<!-- pj:sven&#45;&gt;pj:ankou --> 
-<g id="node68" class="node"><title>lore:corpos:ares</title> +<g id="edge177" class="edge"><title>pj:sven&#45;&gt;pj:ankou</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfeecx="2274" cy="-1170" rx="68.7879" ry="18"/> +<path fill="none" stroke="blackd="M1481.73,-1019.8C1400.77,-1007.5 1197.5,-976.637 1103.75,-962.402"/> 
-<text text-anchor="middlex="2274y="-1166.3" font-family="Times,serif" font-size="14.00">lore:corpos:ares</text>+<polygon fill="blackstroke="blackpoints="1104.09,-958.914 1093.68,-960.873 1103.04,-965.835 1104.09,-958.914"/>
 </g> </g>
-<!-- lore:lieux:paris&#45;&gt;lore:corpos:ares --> +<!-- pj:sven&#45;&gt;pj:endol --> 
-<g id="edge259" class="edge"><title>lore:lieux:paris&#45;&gt;lore:corpos:ares</title> +<g id="edge178" class="edge"><title>pj:sven&#45;&gt;pj:endol</title> 
-<path fill="none" stroke="black" d="M6452.27,-2880.1C6485.5,-2823.71 6588,-2636.11 6588,-2467 6588,-2467 6588,-2467 6588,-2321 6588,-2223.9 6544,-2204.1 6544,-2107 6544,-2107 6544,-2107 6544,-1961 6544,-1756.11 6005.64,-1485.79 5838,-1368 5728.64,-1291.16 5704.22,-1254.1 5574,-1224 5410.9,-1186.3 2728.3,-1193.95 2561,-1188 2489.24,-1185.45 2407.5,-1180.4 2349.65,-1176.46"/> +<path fill="none" stroke="black" d="M1484.03,-1017.14C1381.5,-992.106 1051.42,-913.067 775,-864 667.748,-844.961 541.189,-826.811 473.835,-817.493"/> 
-<polygon fill="black" stroke="black" points="2349.72,-1172.95 2339.5,-1175.76 2349.24,-1179.94 2349.72,-1172.95"/>+<polygon fill="black" stroke="black" points="473.929,-813.973 463.545,-816.075 472.973,-820.908 473.929,-813.973"/>
 </g> </g>
-<!-- lore:corpos:esprit --> +<!-- pj:sven&#45;&gt;pj:splenters --> 
-<g id="node119" class="node"><title>lore:corpos:esprit</title> +<g id="edge179" class="edge"><title>pj:sven&#45;&gt;pj:splenters</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfeecx="5979" cy="-2826" rx="74.187" ry="18"/> +<path fill="none" stroke="blackd="M1552.3,-1024.45C1633.36,-1021.12 1822,-1000.72 1822,-883 1822,-883 1822,-883 1822,-665 1822,-624.031 1818.92,-606.741 1846,-576 1865.02,-554.413 1894.17,-541.447 1919.96,-533.75"/> 
-<text text-anchor="middlex="5979y="-2822.3" font-family="Times,serif" font-size="14.00">lore:corpos:esprit</text>+<polygon fill="blackstroke="blackpoints="1920.95,-537.106 1929.64,-531.051 1919.07,-530.363 1920.95,-537.106"/>
 </g> </g>
-<!-- lore:lieux:paris&#45;&gt;lore:corpos:esprit --> +<!-- pnj:valentinturenge --> 
-<g id="edge260" class="edge"><title>lore:lieux:paris&#45;&gt;lore:corpos:esprit</title> +<g id="node21" class="node" onclick="click(evt)"><title>pnj:valentinturenge</title> 
-<path fill="none" stroke="blackd="M6396.44,-2885.54C6387.69,-2883.54 6378.59,-2881.59 6370,-2880 6261.54,-2859.89 6134.83,-2844.11 6055.74,-2835.17"/> +<ellipse fill="#e5b030" fill-opacity="0.733333" stroke="#e5b030stroke-opacity="0.733333" cx="5989" cy="-2034" rx="77.1866" ry="18"/> 
-<polygon fill="blackstroke="blackpoints="6055.71,-2831.65 6045.38,-2834.01 6054.93,-2838.6 6055.71,-2831.65"/>+<text text-anchor="middlex="5989y="-2030.3" font-family="Times,serif" font-size="14.00">pnj:valentinturenge</text>
 </g> </g>
-<!-- lore:lieux:nancy&#45;&gt;lore:lieux:sox --> +<!-- lore:corpos:saeder&#45;krupp --> 
-<g id="edge519" class="edge"><title>lore:lieux:nancy&#45;&gt;lore:lieux:sox</title> +<g id="node22" class="node" onclick="click(evt)"><title>lore:corpos:saeder&#45;krupp</title> 
-<path fill="none" stroke="blackd="M6231.25,-2892.83C6049.73,-2880.59 5531.73,-2844.8 5347.76,-2831.79"/> +<ellipse fill="#41c2b5" fill-opacity="0.733333" stroke="#41c2b5stroke-opacity="0.733333" cx="5253" cy="-1962" rx="102.082" ry="18"/> 
-<polygon fill="blackstroke="blackpoints="5347.91,-2828.3 5337.68,-2831.08 5347.41,-2835.28 5347.91,-2828.3"/>+<text text-anchor="middlex="5253y="-1958.3" font-family="Times,serif" font-size="14.00">lore:corpos:saeder&#45;krupp</text>
 </g> </g>
-<!-- lore:lieux:nancy&#45;&gt;lore:lieux:france --> +<!-- pnj:valentinturenge&#45;&gt;lore:corpos:saeder&#45;krupp --> 
-<g id="edge520" class="edge"><title>lore:lieux:nancy&#45;&gt;lore:lieux:france</title> +<g id="edge21" class="edge"><title>pnj:valentinturenge&#45;&gt;lore:corpos:saeder&#45;krupp</title> 
-<path fill="none" stroke="black" d="M6330.6,-2913.3C6353.5,-2923.57 6383.04,-2937.54 6406.01,-2948.92"/> +<path fill="none" stroke="black" d="M5925.36,-2023.65C5906,-2020.98 5884.65,-2018.2 5865,-2016 5686.27,-1996.02 5477.45,-1979.37 5355.73,-1970.32"/> 
-<polygon fill="black" stroke="black" points="6404.59,-2952.12 6415.1,-2953.46 6407.72,-2945.86 6404.59,-2952.12"/>+<polygon fill="black" stroke="black" points="5355.91,-1966.83 5345.68,-1969.58 5355.39,-1973.81 5355.91,-1966.83"/>
 </g> </g>
-<!-- lore:objets:caisse_de_ruthenium --> +<!-- lore:lieux:zurich --> 
-<g id="node73" class="node"><title>lore:objets:caisse_de_ruthenium</title> +<g id="node23" class="node" onclick="click(evt)"><title>lore:lieux:zurich</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfee" cx="5161" cy="-1890" rx="126.178" ry="18"/> +<ellipse fill="#021dcd" fill-opacity="0.733333" stroke="#021dcd" stroke-opacity="0.733333" cx="6009" cy="-306" rx="66.8882" ry="18"/> 
-<text text-anchor="middle" x="5161" y="-1886.3" font-family="Times,serif" font-size="14.00">lore:objets:caisse_de_ruthenium</text>+<text text-anchor="middle" x="6009" y="-302.3" font-family="Times,serif" font-size="14.00">lore:lieux:zurich</text>
 </g> </g>
-<!-- lore:lieux:nancy&#45;&gt;lore:objets:caisse_de_ruthenium --> +<!-- pnj:valentinturenge&#45;&gt;lore:lieux:zurich --> 
-<g id="edge518" class="edge"><title>lore:lieux:nancy&#45;&gt;lore:objets:caisse_de_ruthenium</title> +<g id="edge22" class="edge"><title>pnj:valentinturenge&#45;&gt;lore:lieux:zurich</title> 
-<path fill="none" stroke="black" d="M6303.08,-2879.86C6316.31,-2849.12 6338.78,-2783.39 6314,-2736 6268.86,-2649.69 6134,-2708.4 6134,-2611 6134,-2611 6134,-2611 6134,-2393 6134,-2217.44 5649.65,-2002.13 5484,-1944 5418.48,-1921.01 5341.91,-1907.89 5279.78,-1900.46"/> +<path fill="none" stroke="black" d="M6032.89,-2019.14C6106.29,-1992.91 6246,-1928.59 6246,-1819 6246,-1819 6246,-1819 6246,-449 6246,-408.031 6251.25,-388.685 6222,-360 6201.54,-339.937 6131.61,-325.156 6077.4,-316.374"/> 
-<polygon fill="black" stroke="black" points="5279.87,-1896.94 5269.54,-1899.27 5279.07,-1903.9 5279.87,-1896.94"/>+<polygon fill="black" stroke="black" points="6077.9,-312.91 6067.47,-314.805 6076.8,-319.824 6077.9,-312.91"/>
 </g> </g>
-<!-- lore:planques:entrepot_np1 --> +<!-- lore:corpos:saeder&#45;krupp&#45;&gt;lore:lieux:zurich --> 
-<g id="node93" class="node"><title>lore:planques:entrepot_np1</title> +<g id="edge360" class="edge"><title>lore:corpos:saeder&#45;krupp&#45;&gt;lore:lieux:zurich</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfeecx="5635" cy="-1458" rx="108.581" ry="18"/> +<path fill="none" stroke="blackd="M5350.56,-1956.59C5489.96,-1949.59 5732.7,-1934 5764,-1908 5783.24,-1892.01 5884.91,-1500.26 5891,-1476 5948.63,-1246.56 6000,-1191.57 6000,-955 6000,-955 6000,-955 6000,-449 6000,-408.996 6000,-362.653 6002.29,-334.08"/> 
-<text text-anchor="middlex="5635y="-1454.3" font-family="Times,serif" font-size="14.00">lore:planques:entrepot_np1</text>+<polygon fill="blackstroke="blackpoints="6005.78,-334.346 6003.29,-324.049 5998.82,-333.655 6005.78,-334.346"/>
 </g> </g>
-<!-- lore:lieux:nancy&#45;&gt;lore:planques:entrepot_np1 --> +<!-- pnj:rolf --> 
-<g id="edge521" class="edge"><title>lore:lieux:nancy&#45;&gt;lore:planques:entrepot_np1</title> +<g id="node106" class="node" onclick="click(evt)"><title>pnj:rolf</title> 
-<path fill="none" stroke="blackd="M6325.62,-2881.97C6367.78,-2860.85 6438,-2817.84 6438,-2755 6438,-2755 6438,-2755 6438,-2393 6438,-2223.29 6254.61,-2269.35 6167,-2124 6111.11,-2031.28 6096,-1999.26 6096,-1891 6096,-1891 6096,-1891 6096,-1817 6096,-1710 5783.83,-1539.62 5673.19,-1480.24"/> +<ellipse fill="#e5b030" fill-opacity="0.733333" stroke="#e5b030stroke-opacity="0.733333" cx="4384" cy="-1890" rx="36.2938" ry="18"/> 
-<polygon fill="blackstroke="blackpoints="5674.81,-1477.14 5664.34,-1475.5 5671.5,-1483.31 5674.81,-1477.14"/>+<text text-anchor="middlex="4384y="-1886.3" font-family="Times,serif" font-size="14.00">pnj:rolf</text>
 </g> </g>
-<!-- lore:lieux:europe&#45;&gt;lore:lieux:tir_na_nog --> +<!-- lore:corpos:saeder&#45;krupp&#45;&gt;pnj:rolf --> 
-<g id="edge263" class="edge"><title>lore:lieux:europe&#45;&gt;lore:lieux:tir_na_nog</title> +<g id="edge361" class="edge"><title>lore:corpos:saeder&#45;krupp&#45;&gt;pnj:rolf</title> 
-<path fill="none" stroke="black" d="M5456.32,-1227.02C5296.81,-1169.56 4673.88,-947.391 4153,-792 3847.38,-700.826 3765.76,-692.892 3450,-648 3176.67,-609.14 3108.36,-595.934 2833,-576 2154.1,-526.853 1333.34,-522.665 1059.22,-522.753"/> +<path fill="none" stroke="black" d="M5171.93,-1950.98C5151.36,-1948.43 5129.35,-1945.88 5109,-1944 4837.24,-1918.94 4767.57,-1935.01 4496,-1908 4473.16,-1905.73 4448,-1902.34 4427.26,-1899.18"/> 
-<polygon fill="black" stroke="black" points="1058.91,-519.254 1048.91,-522.759 1058.92,-526.254 1058.91,-519.254"/>+<polygon fill="black" stroke="black" points="4427.57,-1895.69 4417.15,-1897.61 4426.49,-1902.61 4427.57,-1895.69"/>
 </g> </g>
-<!-- lore:lieux:europe&#45;&gt;lore:lieux:france --> +<!-- pnj:ilona --> 
-<g id="edge261" class="edge"><title>lore:lieux:europe&#45;&gt;lore:lieux:france</title> +<g id="node107" class="node" onclick="click(evt)"><title>pnj:ilona</title> 
-<path fill="none" stroke="blackd="M5553,-1252.13C5591.43,-1260.18 5641.8,-1274.09 5682,-1296 5826.46,-1374.73 6208,-1652.48 6208,-1817 6208,-2035 6208,-2035 6208,-2035 6208,-2199.43 6383.99,-2159.25 6462,-2304 6577.61,-2518.52 6578.74,-2601.29 6557,-2844 6554.1,-2876.39 6562.78,-2889.45 6544,-2916 6532.58,-2932.15 6514.57,-2944.03 6496.79,-2952.4"/> +<ellipse fill="#e5b030" fill-opacity="0.733333" stroke="#e5b030stroke-opacity="0.733333" cx="4685" cy="-1746" rx="40.8928" ry="18"/> 
-<polygon fill="blackstroke="blackpoints="6495.29,-2949.24 6487.55,-2956.47 6498.11,-2955.65 6495.29,-2949.24"/>+<text text-anchor="middlex="4685y="-1742.3" font-family="Times,serif" font-size="14.00">pnj:ilona</text>
 </g> </g>
-<!-- lore:lieux:europe&#45;&gt;lore:lieux:confederation_italienne --> +<!-- lore:corpos:saeder&#45;krupp&#45;&gt;pnj:ilona --> 
-<g id="edge262" class="edge"><title>lore:lieux:europe&#45;&gt;lore:lieux:confederation_italienne</title> +<g id="edge364" class="edge"><title>lore:corpos:saeder&#45;krupp&#45;&gt;pnj:ilona</title> 
-<path fill="none" stroke="black" d="M5425.74,-1244C5261.65,-1248.02 4857.2,-1268.1 4775,-1368 4744.5,-1405.06 4758.05,-1431.09 4775,-1476 4790.75,-1517.73 4827.47,-1554.57 4852.2,-1577.25"/> +<path fill="none" stroke="black" d="M5198.33,-1946.72C5133.2,-1928.52 5021.41,-1896.49 4925,-1872 4855.61,-1854.38 4830.92,-1870.14 4768,-1836 4738.77,-1820.14 4712.28,-1792.42 4697.11,-1772.12"/> 
-<polygon fill="black" stroke="black" points="4850,-1579.98 4859.76,-1584.11 4854.7,-1574.8 4850,-1579.98"/>+<polygon fill="black" stroke="black" points="4699.96,-1770.08 4691.33,-1763.93 4694.24,-1774.11 4699.96,-1770.08"/>
 </g> </g>
-<!-- pnj:enrique&#45;&gt;lore:lieux:gemito --> +<!-- pnj:othmar --> 
-<g id="edge21" class="edge"><title>pnj:enrique&#45;&gt;lore:lieux:gemito</title> +<g id="node108" class="node" onclick="click(evt)"><title>pnj:othmar</title> 
-<path fill="none" stroke="blackd="M4795.66,-1472.64C4776.57,-1481.47 4752.32,-1494.58 4735,-1512 4709.49,-1537.66 4706.68,-1549.14 4697,-1584 4691.38,-1604.22 4690.32,-1628 4689.21,-1645.88"/> +<ellipse fill="#e5b030" fill-opacity="0.733333" stroke="#e5b030stroke-opacity="0.733333" cx="4569" cy="-1818" rx="49.2915" ry="18"/> 
-<polygon fill="blackstroke="blackpoints="4685.72,-1645.7 4688.5,-1655.92 4692.7,-1646.19 4685.72,-1645.7"/>+<text text-anchor="middlex="4569y="-1814.3" font-family="Times,serif" font-size="14.00">pnj:othmar</text>
 </g> </g>
-<!-- pnj:enrique&#45;&gt;lore:gangs:familia_d_enrique --> +<!-- lore:corpos:saeder&#45;krupp&#45;&gt;pnj:othmar --> 
-<g id="edge22" class="edge"><title>pnj:enrique&#45;&gt;lore:gangs:familia_d_enrique</title> +<g id="edge358" class="edge"><title>lore:corpos:saeder&#45;krupp&#45;&gt;pnj:othmar</title> 
-<path fill="none" stroke="black" d="M4834.61,-1440.05C4841.63,-1431.37 4851.25,-1420.64 4860.5,-1411.11"/> +<path fill="none" stroke="black" d="M5187.32,-1948.21C5051.29,-1920.73 4741.55,-1856.41 4619.6,-1830.31"/> 
-<polygon fill="black" stroke="black" points="4863.22,-1413.35 4867.79,-1403.79 4858.25,-1408.41 4863.22,-1413.35"/>+<polygon fill="black" stroke="black" points="4620.28,-1826.87 4609.77,-1828.2 4618.81,-1833.72 4620.28,-1826.87"/>
 </g> </g>
-<!-- lore:gangs:familia_d_enrique&#45;&gt;lore:lieux:gemito --> +<!-- pnj:karl_paolo --> 
-<g id="edge597" class="edge"><title>lore:gangs:familia_d_enrique&#45;&gt;lore:lieux:gemito</title> +<g id="node111" class="node" onclick="click(evt)"><title>pnj:karl_paolo</title> 
-<path fill="none" stroke="blackd="M4898.73,-1404.22C4903.67,-1423.04 4905.09,-1453.51 4893,-1476 4854.94,-1546.77 4802.55,-1524.99 4748,-1584 4730.22,-1603.24 4714.77,-1628.88 4703.05,-1647.69"/> +<ellipse fill="#e5b030" fill-opacity="0.733333" stroke="#e5b030stroke-opacity="0.733333" cx="5350" cy="-1890" rx="62.2891" ry="18"/> 
-<polygon fill="blackstroke="blackpoints="4699.98,-1646 4697.6,-1656.33 4705.9,-1649.74 4699.98,-1646"/>+<text text-anchor="middlex="5350y="-1886.3" font-family="Times,serif" font-size="14.00">pnj:karl_paolo</text>
 </g> </g>
-<!-- lore:gangs:familia_d_enrique&#45;&gt;pnj:enrique --> +<!-- lore:corpos:saeder&#45;krupp&#45;&gt;pnj:karl_paolo --> 
-<g id="edge596" class="edge"><title>lore:gangs:familia_d_enrique&#45;&gt;pnj:enrique</title> +<g id="edge367" class="edge"><title>lore:corpos:saeder&#45;krupp&#45;&gt;pnj:karl_paolo</title> 
-<path fill="none" stroke="black" d="M4879.37,-1403.96C4872.01,-1413.07 4861.8,-1424.42 4852.14,-1434.28"/> +<path fill="none" stroke="black" d="M5270.6,-1944.05C5282.89,-1934.45 5299.54,-1922.34 5314.47,-1912.12"/> 
-<polygon fill="black" stroke="black" points="4849.54,-1431.93 4844.92,-1441.46 4854.48,-1436.89 4849.54,-1431.93"/>+<polygon fill="black" stroke="black" points="5316.69,-1914.85 5323.02,-1906.36 5312.77,-1909.05 5316.69,-1914.85"/>
 </g> </g>
-<!-- lore:lieux:zurich --> +<!-- pnj:janusibherin --> 
-<g id="node26" class="node"><title>lore:lieux:zurich</title> +<g id="node113" class="node" onclick="click(evt)"><title>pnj:janusibherin</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfee" cx="6056" cy="-810" rx="66.8882" ry="18"/> +<ellipse fill="#e5b030" fill-opacity="0.733333" stroke="#e5b030" stroke-opacity="0.733333" cx="5659" cy="-1602" rx="66.8882" ry="18"/> 
-<text text-anchor="middle" x="6056" y="-806.3" font-family="Times,serif" font-size="14.00">lore:lieux:zurich</text>+<text text-anchor="middle" x="5659" y="-1598.3" font-family="Times,serif" font-size="14.00">pnj:janusibherin</text>
 </g> </g>
-<!-- lore:lieux:zurich&#45;&gt;lore:corpos:saeder&#45;krupp --> +<!-- lore:corpos:saeder&#45;krupp&#45;&gt;pnj:janusibherin --> 
-<g id="edge23" class="edge"><title>lore:lieux:zurich&#45;&gt;lore:corpos:saeder&#45;krupp</title> +<g id="edge356" class="edge"><title>lore:corpos:saeder&#45;krupp&#45;&gt;pnj:janusibherin</title> 
-<path fill="none" stroke="black" d="M6075.19,-827.466C6083.46,-837.807 6092.53,-851.508 6100,-864 6146.64,-941.995 6148.14,-967.375 6197,-1044 6301.49,-1207.88 6720,-1550.64 6720,-1745 6720,-2107 6720,-2107 6720,-2107 6720,-2427.8 6794,-2504.2 6794,-2825 6794,-2899 6794,-2899 6794,-2899 6794,-3018.38 6691.01,-3018.7 6579,-3060 6449.18,-3107.86 6048.88,-3113.78 5851.42,-3113.72"/> +<path fill="none" stroke="black" d="M5343.7,-1953.68C5401.27,-1946.81 5476.36,-1933.54 5539,-1908 5552.18,-1902.62 5638.2,-1848.51 5645,-1836 5681.13,-1769.52 5667.14,-1675.83 5660.49,-1630.16"/> 
-<polygon fill="black" stroke="black" points="5851.31,-3110.22 5841.3,-3113.71 5851.3,-3117.22 5851.31,-3110.22"/>+<polygon fill="black" stroke="black" points="5663.93,-1629.55 5659.06,-1620.14 5657.01,-1630.54 5663.93,-1629.55"/>
 </g> </g>
-<!-- lore:corpos:saeder&#45;krupp&#45;&gt;lore:lieux:camargue --> +<!-- pnj:jibril --> 
-<g id="edge203" class="edge"><title>lore:corpos:saeder&#45;krupp&#45;&gt;lore:lieux:camargue</title> +<g id="node114" class="node" onclick="click(evt)"><title>pnj:jibril</title> 
-<path fill="none" stroke="blackd="M5643.33,-3120.32C5398.36,-3133.63 4751.52,-3168.22 4516.7,-3180.55"/> +<ellipse fill="#e5b030" fill-opacity="0.733333" stroke="#e5b030stroke-opacity="0.733333" cx="3380" cy="-1818" rx="39.7935" ry="18"/> 
-<polygon fill="blackstroke="blackpoints="4516.3,-3177.07 4506.5,-3181.09 4516.67,-3184.06 4516.3,-3177.07"/>+<text text-anchor="middlex="3380y="-1814.3" font-family="Times,serif" font-size="14.00">pnj:jibril</text>
 </g> </g>
-<!-- lore:corpos:saeder&#45;krupp&#45;&gt;lore:lieux:zurich --> +<!-- lore:corpos:saeder&#45;krupp&#45;&gt;pnj:jibril --> 
-<g id="edge199" class="edge"><title>lore:corpos:saeder&#45;krupp&#45;&gt;lore:lieux:zurich</title> +<g id="edge357" class="edge"><title>lore:corpos:saeder&#45;krupp&#45;&gt;pnj:jibril</title> 
-<path fill="none" stroke="black" d="M5841.08,-3113.72C6031.07,-3113.78 6431.21,-3107.85 6561,-3060 6673.01,-3018.7 6776,-3018.38 6776,-2899 6776,-2899 6776,-2899 6776,-2825 6776,-2504.2 6702,-2427.8 6702,-2107 6702,-2107 6702,-2107 6702,-1745 6702,-1550.64 6283.49,-1207.88 6179,-1044 6130.14,-967.375 6128.64,-941.995 6082,-864 6076.68,-855.104 6070.55,-845.595 6065.36,-837.123"/> +<path fill="none" stroke="black" d="M5173.03,-1950.79C5152.15,-1948.19 5129.72,-1945.66 5109,-1944 4646.65,-1906.99 4528.31,-1945.5 4066,-1908 3824.04,-1888.37 3536.97,-1845.26 3426.43,-1827.21"/> 
-<polygon fill="black" stroke="black" points="6068.31,-835.226 6060.19,-828.415 6062.29,-838.8 6068.31,-835.226"/>+<polygon fill="black" stroke="black" points="3426.72,-1823.71 3416.29,-1825.54 3425.59,-1830.62 3426.72,-1823.71"/>
 </g> </g>
-<!-- pnj:karl_paolo --> +<!-- pnj:klausvongreschman --> 
-<g id="node74" class="node"><title>pnj:karl_paolo</title> +<g id="node115" class="node" onclick="click(evt)"><title>pnj:klausvongreschman</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfee" cx="5528" cy="-1818" rx="62.2891" ry="18"/> +<ellipse fill="#e5b030" fill-opacity="0.733333" stroke="#e5b030" stroke-opacity="0.733333" cx="4047" cy="-1818" rx="94.7833" ry="18"/> 
-<text text-anchor="middle" x="5528" y="-1814.3" font-family="Times,serif" font-size="14.00">pnj:karl_paolo</text>+<text text-anchor="middle" x="4047" y="-1814.3" font-family="Times,serif" font-size="14.00">pnj:klausvongreschman</text>
 </g> </g>
-<!-- lore:corpos:saeder&#45;krupp&#45;&gt;pnj:karl_paolo --> +<!-- lore:corpos:saeder&#45;krupp&#45;&gt;pnj:klausvongreschman --> 
-<g id="edge198" class="edge"><title>lore:corpos:saeder&#45;krupp&#45;&gt;pnj:karl_paolo</title> +<g id="edge366" class="edge"><title>lore:corpos:saeder&#45;krupp&#45;&gt;pnj:klausvongreschman</title> 
-<path fill="none" stroke="black" d="M5642.57,-3108.05C5568.73,-3101.97 5475.73,-3088.68 5452,-3060 5421.4,-3023.02 5445.42,-2999.55 5452,-2952 5465.68,-2853.19 5437.11,-2800.75 5513,-2736 5617.18,-2647.12 5706.07,-2777.45 5819,-2700 5966.03,-2599.17 5934.73,-2474.61 5883,-2304 5828.53,-2124.33 5775.83,-2093.3 5662,-1944 5636.92,-1911.1 5634.01,-1899.39 5603,-1872 5589.64,-1860.2 5573.38,-1849.29 5559.32,-1840.47"/> +<path fill="none" stroke="black" d="M5173.03,-1950.81C5152.15,-1948.21 5129.72,-1945.67 5109,-1944 4998.18,-1935.05 4208.29,-1958.03 4109,-1908 4082.64,-1894.72 4062.87,-1866.64 4052.76,-1845.55"/> 
-<polygon fill="black" stroke="black" points="5560.81,-1837.27 5550.46,-1834.99 5557.13,-1843.23 5560.81,-1837.27"/>+<polygon fill="black" stroke="black" points="4055.88,-1843.94 4048.7,-1836.15 4049.45,-1846.72 4055.88,-1843.94"/>
 </g> </g>
-<!-- pnj:jibril --> +<!-- lore:lieux:camargue --> 
-<g id="node76" class="node"><title>pnj:jibril</title> +<g id="node116" class="node" onclick="click(evt)"><title>lore:lieux:camargue</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfee" cx="3873" cy="-1746" rx="39.7935" ry="18"/> +<ellipse fill="#021dcd" fill-opacity="0.733333" stroke="#021dcd" stroke-opacity="0.733333" cx="5495" cy="-810" rx="79.0865" ry="18"/> 
-<text text-anchor="middle" x="3873" y="-1742.3" font-family="Times,serif" font-size="14.00">pnj:jibril</text>+<text text-anchor="middle" x="5495" y="-806.3" font-family="Times,serif" font-size="14.00">lore:lieux:camargue</text>
 </g> </g>
-<!-- lore:corpos:saeder&#45;krupp&#45;&gt;pnj:jibril --> +<!-- lore:corpos:saeder&#45;krupp&#45;&gt;lore:lieux:camargue --> 
-<g id="edge197" class="edge"><title>lore:corpos:saeder&#45;krupp&#45;&gt;pnj:jibril</title> +<g id="edge363" class="edge"><title>lore:corpos:saeder&#45;krupp&#45;&gt;lore:lieux:camargue</title> 
-<path fill="none" stroke="black" d="M5636.96,-3113.65C5370.23,-3114.66 4666.92,-3112.4 4577,-3060 4442.49,-2981.62 4204,-2622.68 4204,-2467 4204,-2467 4204,-2467 4204,-2393 4204,-2319.27 4192.63,-2299.95 4164,-2232 4153.47,-2207 3941.02,-1869.23 3885.81,-1772.63"/> +<path fill="none" stroke="black" d="M5315.58,-1947.77C5346.31,-1939.67 5382.81,-1927.07 5412,-1908 5530.97,-1830.26 5508,-1745.11 5508,-1603 5508,-1603 5508,-1603 5508,-953 5508,-912.74 5499.26,-866.808 5495.05,-838.355"/> 
-<polygon fill="black" stroke="black" points="3888.79,-1770.8 3880.83,-1763.81 3882.7,-1774.24 3888.79,-1770.8"/>+<polygon fill="black" stroke="black" points="5498.5,-837.79 5493.69,-828.354 5491.57,-838.736 5498.5,-837.79"/>
 </g> </g>
 <!-- pnj:le_boss_d_ekhart --> <!-- pnj:le_boss_d_ekhart -->
-<g id="node77" class="node"><title>pnj:le_boss_d_ekhart</title> +<g id="node127" class="node" onclick="click(evt)"><title>pnj:le_boss_d_ekhart</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfee" cx="5495" cy="-1314" rx="89.0842" ry="18"/> +<ellipse fill="#e5b030" fill-opacity="0.733333" stroke="#e5b030" stroke-opacity="0.733333" cx="4053" cy="-1098" rx="89.0842" ry="18"/> 
-<text text-anchor="middle" x="5495" y="-1310.3" font-family="Times,serif" font-size="14.00">pnj:le_boss_d_ekhart</text>+<text text-anchor="middle" x="4053" y="-1094.3" font-family="Times,serif" font-size="14.00">pnj:le_boss_d_ekhart</text>
 </g> </g>
 <!-- lore:corpos:saeder&#45;krupp&#45;&gt;pnj:le_boss_d_ekhart --> <!-- lore:corpos:saeder&#45;krupp&#45;&gt;pnj:le_boss_d_ekhart -->
-<g id="edge200" class="edge"><title>lore:corpos:saeder&#45;krupp&#45;&gt;pnj:le_boss_d_ekhart</title> +<g id="edge362" class="edge"><title>lore:corpos:saeder&#45;krupp&#45;&gt;pnj:le_boss_d_ekhart</title> 
-<path fill="none" stroke="black" d="M5636.83,-3113.73C5391.53,-3114.72 4784.36,-3111.96 4710,-3060 4589.21,-2975.6 4580,-2902.36 4580,-2755 4580,-2755 4580,-2755 4580,-2537 4580,-2280.36 4667.25,-2215.25 4829,-2016 4910.14,-1916.05 4922.85,-1882.12 5022,-1800 5051.86,-1775.26 5295.33,-1649.06 5321,-1620 5402.14,-1528.14 5363.61,-1469.03 5433,-1368 5440.44,-1357.17 5450.26,-1346.63 5459.98,-1337.85"/> +<path fill="none" stroke="black" d="M5172.66,-1950.9C5151.88,-1948.32 5129.59,-1945.77 5109,-1944 5022.67,-1936.58 4397.98,-1961.72 4330,-1908 4134.09,-1753.19 4264.44,-1601.12 4175,-1368 4139.74,-1276.09 4084.89,-1172.83 4062.43,-1125.41"/> 
-<polygon fill="black" stroke="black" points="5462.4,-1340.38 5467.7,-1331.2 5457.83,-1335.07 5462.4,-1340.38"/> +<polygon fill="black" stroke="black" points="4065.53,-1123.76 4058.15,-1116.16 4059.18,-1126.7 4065.53,-1123.76"/>
-</g> +
-<!-- pnj:mariedesallies --> +
-<g id="node91" class="node"><title>pnj:mariedesallies</title> +
-<ellipse fill="#b2dfee" stroke="#b2dfee" cx="5878" cy="-3042" rx="73.387" ry="18"/> +
-<text text-anchor="middle" x="5878" y="-3038.3" font-family="Times,serif" font-size="14.00">pnj:mariedesallies</text> +
-</g> +
-<!-- lore:corpos:saeder&#45;krupp&#45;&gt;pnj:mariedesallies --> +
-<g id="edge201" class="edge"><title>lore:corpos:saeder&#45;krupp&#45;&gt;pnj:mariedesallies</title> +
-<path fill="none" stroke="black" d="M5765.77,-3096.59C5785,-3086.33 5811.22,-3073.08 5833.53,-3062.32"/> +
-<polygon fill="black" stroke="black" points="5835.31,-3065.35 5842.82,-3057.88 5832.29,-3059.03 5835.31,-3065.35"/> +
-</g> +
-<!-- pnj:janusibherin --> +
-<g id="node109" class="node"><title>pnj:janusibherin</title> +
-<ellipse fill="#b2dfee" stroke="#b2dfee" cx="5623" cy="-1746" rx="66.8882" ry="18"/> +
-<text text-anchor="middle" x="5623" y="-1742.3" font-family="Times,serif" font-size="14.00">pnj:janusibherin</text> +
-</g> +
-<!-- lore:corpos:saeder&#45;krupp&#45;&gt;pnj:janusibherin --> +
-<g id="edge202" class="edge"><title>lore:corpos:saeder&#45;krupp&#45;&gt;pnj:janusibherin</title> +
-<path fill="none" stroke="black" d="M5651.21,-3104.75C5591.88,-3096.98 5521.27,-3083.02 5503,-3060 5486.73,-3039.49 5458.35,-2835.72 5569,-2736 5667.12,-2647.58 5747.5,-2762.24 5864,-2700 5967.88,-2644.5 5956.23,-2565.34 5946,-2448 5926.08,-2219.59 5967.52,-2131.8 5836,-1944 5783.1,-1868.46 5695.67,-1802.26 5650.91,-1769.26"/> +
-<polygon fill="black" stroke="black" points="5652.94,-1766.41 5642.81,-1763.3 5648.79,-1772.04 5652.94,-1766.41"/>+
 </g> </g>
 <!-- pnj:ekhart --> <!-- pnj:ekhart -->
-<g id="node110" class="node"><title>pnj:ekhart</title> +<g id="node136" class="node" onclick="click(evt)"><title>pnj:ekhart</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfee" cx="5497" cy="-1386" rx="46.2923" ry="18"/> +<ellipse fill="#e5b030" fill-opacity="0.733333" stroke="#e5b030" stroke-opacity="0.733333" cx="3982" cy="-1170" rx="46.2923" ry="18"/> 
-<text text-anchor="middle" x="5497" y="-1382.3" font-family="Times,serif" font-size="14.00">pnj:ekhart</text>+<text text-anchor="middle" x="3982" y="-1166.3" font-family="Times,serif" font-size="14.00">pnj:ekhart</text>
 </g> </g>
 <!-- lore:corpos:saeder&#45;krupp&#45;&gt;pnj:ekhart --> <!-- lore:corpos:saeder&#45;krupp&#45;&gt;pnj:ekhart -->
-<g id="edge204" class="edge"><title>lore:corpos:saeder&#45;krupp&#45;&gt;pnj:ekhart</title> +<g id="edge359" class="edge"><title>lore:corpos:saeder&#45;krupp&#45;&gt;pnj:ekhart</title> 
-<path fill="none" stroke="black" d="M5636.72,-3113.11C5432.48,-3112.39 4981.39,-3105.57 4835,-3060 4762.08,-3037.3 4688,-3047.37 4688,-2971 4688,-2971 4688,-2971 4688,-2681 4688,-2553.03 4841.21,-2598.68 4898,-2484 5020.05,-2237.51 4810.11,-2080.08 4990,-1872 5130.13,-1709.91 5264.71,-1785.34 5401,-1620 5452.85,-1557.1 5475.54,-1460.25 5487.49,-1413.74"/> +<path fill="none" stroke="black" d="M5172.66,-1950.86C5151.88,-1948.28 5129.6,-1945.74 5109,-1944 5017.02,-1936.23 4354.64,-1960.9 4279,-1908 4027.67,-1732.22 3982.19,-1309.32 3980.31,-1198.15"/> 
-<polygon fill="black" stroke="black" points="5490.94,-1414.39 5490.1,-1403.82 5484.17,-1412.61 5490.94,-1414.39"/>+<polygon fill="black" stroke="black" points="3983.81,-1198.08 3980.26,-1188.1 3976.81,-1198.12 3983.81,-1198.08"/>
 </g> </g>
-<!-- pnj:ilona --> +<!-- pnj:mariedesallies --> 
-<g id="node111" class="node"><title>pnj:ilona</title> +<g id="node145" class="node" onclick="click(evt)"><title>pnj:mariedesallies</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfee" cx="4123" cy="-2250" rx="40.8928" ry="18"/> +<ellipse fill="#e5b030" fill-opacity="0.733333" stroke="#e5b030" stroke-opacity="0.733333" cx="5691" cy="-1890" rx="73.387" ry="18"/> 
-<text text-anchor="middle" x="4123" y="-2246.3" font-family="Times,serif" font-size="14.00">pnj:ilona</text>+<text text-anchor="middle" x="5691" y="-1886.3" font-family="Times,serif" font-size="14.00">pnj:mariedesallies</text>
 </g> </g>
-<!-- lore:corpos:saeder&#45;krupp&#45;&gt;pnj:ilona --> +<!-- lore:corpos:saeder&#45;krupp&#45;&gt;pnj:mariedesallies --> 
-<g id="edge205" class="edge"><title>lore:corpos:saeder&#45;krupp&#45;&gt;pnj:ilona</title> +<g id="edge365" class="edge"><title>lore:corpos:saeder&#45;krupp&#45;&gt;pnj:mariedesallies</title> 
-<path fill="none" stroke="black" d="M5836.7,-3108.64C5994.94,-3101.2 6300.03,-3084.43 6406,-3060 6491.17,-3040.37 6537.81,-3058.84 6589,-2988 6656.62,-2894.43 6610.64,-2814.51 6526,-2736 6271.84,-2500.27 6145.4,-2438.79 5510,-2304 5247.1,-2248.23 4393.16,-2249.3 4174.38,-2250.59"/> +<path fill="none" stroke="black" d="M5327.59,-1949.68C5396.96,-1939.56 5503,-1923.93 5595,-1908 5603.91,-1906.46 5613.31,-1904.73 5622.62,-1902.98"/> 
-<polygon fill="black" stroke="black" points="4174.13,-2247.09 4164.15,-2250.66 4174.17,-2254.09 4174.13,-2247.09"/>+<polygon fill="black" stroke="black" points="5623.48,-1906.38 5632.65,-1901.08 5622.18,-1899.5 5623.48,-1906.38"/>
 </g> </g>
-<!-- pnj:othmar --> +<!-- lore:lieux:zurich&#45;&gt;lore:corpos:saeder&#45;krupp --> 
-<g id="node112" class="node"><title>pnj:othmar</title> +<g id="edge320" class="edge"><title>lore:lieux:zurich&#45;&gt;lore:corpos:saeder&#45;krupp</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfee" cx="4012cy="-2322" rx="49.2915" ry="18"/> +<path fill="none" stroke="blackd="M6014.71,-324.049C6018,-350.708 6018,-403.885 6018,-449 6018,-955 6018,-955 6018,-955 6018,-1191.57 5966.63,-1246.56 5909,-1476 5902.91,-1500.26 5801.24,-1892.01 5782,-1908 5750.64,-1934.05 5507.12,-1949.64 5361.6,-1956.62"/> 
-<text text-anchor="middlex="4012y="-2318.3" font-family="Times,serif" font-size="14.00">pnj:othmar</text>+<polygon fill="blackstroke="blackpoints="5361.12,-1953.14 5351.3,-1957.11 5361.45,-1960.13 5361.12,-1953.14"/>
 </g> </g>
-<!-- lore:corpos:saeder&#45;krupp&#45;&gt;pnj:othmar --> +<!-- pnj:sujet_2 --> 
-<g id="edge206" class="edge"><title>lore:corpos:saeder&#45;krupp&#45;&gt;pnj:othmar</title> +<g id="node24" class="node" onclick="click(evt)"><title>pnj:sujet_2</title> 
-<path fill="none" stroke="blackd="M5832.39,-3106.56C6049.59,-3090.7 6570,-3045.51 6570,-2971 6570,-2971 6570,-2971 6570,-2897 6570,-2657.67 6189.99,-2570.92 4898,-2376 4589.43,-2329.45 4215.26,-2323.3 4071.81,-2322.83"/> +<ellipse fill="#e5b030" fill-opacity="0.733333" stroke="#e5b030stroke-opacity="0.733333" cx="416" cy="-954" rx="50.0912" ry="18"/> 
-<polygon fill="blackstroke="blackpoints="4071.48,-2319.33 4061.47,-2322.8 4071.47,-2326.33 4071.48,-2319.33"/>+<text text-anchor="middlex="416y="-950.3" font-family="Times,serif" font-size="14.00">pnj:sujet_2</text>
 </g> </g>
-<!-- pnj:rolf --> +<!-- pnj:sujet_2&#45;&gt;lore:lieux:tir_na_nog --> 
-<g id="node113" class="node"><title>pnj:rolf</title> +<g id="edge23" class="edge"><title>pnj:sujet_2&#45;&gt;lore:lieux:tir_na_nog</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfeecx="3939" cy="-2394" rx="36.2938" ry="18"/> +<path fill="none" stroke="blackd="M455.249,-942.671C499.011,-931.155 570.324,-912.389 621.291,-898.976"/> 
-<text text-anchor="middlex="3939y="-2390.3" font-family="Times,serif" font-size="14.00">pnj:rolf</text>+<polygon fill="blackstroke="blackpoints="622.419,-902.298 631.199,-896.369 620.638,-895.529 622.419,-902.298"/>
 </g> </g>
-<!-- lore:corpos:saeder&#45;krupp&#45;&gt;pnj:rolf --> +<!-- lore:organisations:danann_o_dunn --> 
-<g id="edge207" class="edge"><title>lore:corpos:saeder&#45;krupp&#45;&gt;pnj:rolf</title> +<g id="node26" class="node" onclick="click(evt)"><title>lore:organisations:danann_o_dunn</title> 
-<path fill="none" stroke="blackd="M5826.8,-3104.7C5873.19,-3097.6 5929.86,-3084.43 5976,-3060 6057.96,-3016.61 6241.5,-2857.25 6278,-2772 6284.3,-2757.29 6288.88,-2747.73 6278,-2736 6222.37,-2676.06 4890.66,-2641.44 4810,-2628 4480.96,-2573.19 4096.3,-2450.37 3976.45,-2408.95"/> +<ellipse fill="#e323e9" fill-opacity="0.733333" stroke="#e323e9stroke-opacity="0.733333" cx="391" cy="-90" rx="134.576" ry="18"/> 
-<polygon fill="blackstroke="blackpoints="3977.57,-2405.63 3966.98,-2405.65 3975.27,-2412.24 3977.57,-2405.63"/>+<text text-anchor="middlex="391y="-86.3" font-family="Times,serif" font-size="14.00">lore:organisations:danann_o_dunn</text>
 </g> </g>
-<!-- pnj:klausvongreschman --> +<!-- pnj:sujet_2&#45;&gt;lore:organisations:danann_o_dunn --> 
-<g id="node114" class="node"><title>pnj:klausvongreschman</title> +<g id="edge24" class="edge"><title>pnj:sujet_2&#45;&gt;lore:organisations:danann_o_dunn</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfeecx="5616" cy="-3042" rx="94.7833" ry="18"/> +<path fill="none" stroke="blackd="M392.354,-938.081C309.601,-883.83 38,-687.741 38,-451 38,-451 38,-451 38,-233 38,-177.685 76.3697,-170.36 125,-144 167.328,-121.056 218.278,-107.985 264.209,-100.561"/> 
-<text text-anchor="middlex="5616y="-3038.3" font-family="Times,serif" font-size="14.00">pnj:klausvongreschman</text>+<polygon fill="blackstroke="blackpoints="264.883,-103.998 274.234,-99.0161 263.817,-97.08 264.883,-103.998"/>
 </g> </g>
-<!-- lore:corpos:saeder&#45;krupp&#45;&gt;pnj:klausvongreschman --> +<!-- lore:organisations:ira --> 
-<g id="edge208" class="edge"><title>lore:corpos:saeder&#45;krupp&#45;&gt;pnj:klausvongreschman</title> +<g id="node34" class="node" onclick="click(evt)"><title>lore:organisations:ira</title> 
-<path fill="nonestroke="blackd="M5705,-3096.94C5687.12,-3087.39 5665.42,-3075.13 5647.87,-3064.72"/> +<ellipse fill="#e323e9fill-opacity="0.733333stroke="#e323e9" stroke-opacity="0.733333" cx="1307" cy="-810" rx="85.2851" ry="18"/> 
-<polygon fill="blackstroke="blackpoints="5649.49,-3061.61 5639.11,-3059.47 5645.89,-3067.62 5649.49,-3061.61"/>+<text text-anchor="middlex="1307y="-806.3" font-family="Times,serif" font-size="14.00">lore:organisations:ira</text>
 </g> </g>
-<!-- pnj:martha_finkerbachen --> +<!-- lore:lieux:tir_na_nog&#45;&gt;lore:organisations:ira --> 
-<g id="node28" class="node"><title>pnj:martha_finkerbachen</title> +<g id="edge597" class="edge"><title>lore:lieux:tir_na_nog&#45;&gt;lore:organisations:ira</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfeecx="203" cy="-1818" rx="99.3824" ry="18"/> +<path fill="none" stroke="blackd="M753.413,-872.487C869.396,-859.179 1098.02,-833.569 1222.12,-819.98"/> 
-<text text-anchor="middlex="203y="-1814.3" font-family="Times,serif" font-size="14.00">pnj:martha_finkerbachen</text>+<polygon fill="blackstroke="blackpoints="1222.78,-823.43 1232.34,-818.863 1222.02,-816.471 1222.78,-823.43"/>
 </g> </g>
-<!-- pnj:martha_finkerbachen&#45;&gt;pnj:joachim_finkerbachen --> +<!-- lore:lieux:tir_na_nog&#45;&gt;pj:endol --> 
-<g id="edge24" class="edge"><title>pnj:martha_finkerbachen&#45;&gt;pnj:joachim_finkerbachen</title> +<g id="edge598" class="edge"><title>lore:lieux:tir_na_nog&#45;&gt;pj:endol</title> 
-<path fill="none" stroke="black" d="M209.898,-1836.04C214.934,-1862.69 218,-1915.85 218,-1961 218,-2323 218,-2323 218,-2323 218,-2375.47 266.569,-2418.07 300.434,-2442.48"/> +<path fill="none" stroke="black" d="M629.493,-867.965C588.609,-857.637 530.513,-842.569 480,-828 475.741,-826.772 471.308,-825.449 466.893,-824.103"/> 
-<polygon fill="black" stroke="black" points="298.496,-2445.4 308.688,-2448.29 302.525,-2439.67 298.496,-2445.4"/>+<polygon fill="black" stroke="black" points="467.92,-820.757 457.332,-821.146 465.852,-827.444 467.92,-820.757"/>
 </g> </g>
-<!-- pj:oggodt --> +<!-- lore:organisations:danann_o_dunn&#45;&gt;pj:eidolon --> 
-<g id="node30" class="node"><title>pj:oggodt</title> +<g id="edge278" class="edge"><title>lore:organisations:danann_o_dunn&#45;&gt;pj:eidolon</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfeecx="533" cy="-2394" rx="45.4919" ry="18"/> +<path fill="none" stroke="blackd="M275.86,-99.384C194.302,-107.157 93.3588,-121.059 58,-144 18.3924,-169.698 0,-185.786 0,-233 0,-3043 0,-3043 0,-3043 0,-3089.27 15.062,-3107.01 54,-3132 118.913,-3173.66 346.339,-3182.62 453.427,-3184.51"/> 
-<text text-anchor="middlex="533y="-2390.3" font-family="Times,serif" font-size="14.00">pj:oggodt</text>+<polygon fill="blackstroke="blackpoints="453.659,-3188.02 463.714,-3184.68 453.772,-3181.02 453.659,-3188.02"/>
 </g> </g>
-<!-- pnj:martha_finkerbachen&#45;&gt;pj:oggodt --> +<!-- lore:organisations:danann_o_dunn&#45;&gt;lore:lieux:tir_na_nog --> 
-<g id="edge25" class="edge"><title>pnj:martha_finkerbachen&#45;&gt;pj:oggodt</title> +<g id="edge282" class="edge"><title>lore:organisations:danann_o_dunn&#45;&gt;lore:lieux:tir_na_nog</title> 
-<path fill="none" stroke="black" d="M224.565,-1835.88C249.416,-1861.09 286,-1910.96 286,-1961 286,-2251 286,-2251 286,-2251 286,-2340.56 407.292,-2374.1 479.963,-2386.32"/> +<path fill="none" stroke="black" d="M286.795,-101.44C206.464,-115.927 109,-150.504 109,-233 109,-307 109,-307 109,-307 109,-433.025 232.799,-751.567 333,-828 372.353,-858.018 500.985,-871.256 590.567,-876.938"/> 
-<polygon fill="black" stroke="black" points="479.45,-2389.78 489.877,-2387.9 480.555,-2382.87 479.45,-2389.78"/>+<polygon fill="black" stroke="black" points="590.548,-880.443 600.743,-877.562 590.976,-873.456 590.548,-880.443"/>
 </g> </g>
-<!-- pnj:joachim_finkerbachen&#45;&gt;lore:lieux:munich --> +<!-- lore:organisations:danann_o_dunn&#45;&gt;pnj:tristanodunn --> 
-<g id="edge334" class="edge"><title>pnj:joachim_finkerbachen&#45;&gt;lore:lieux:munich</title> +<g id="edge280" class="edge"><title>lore:organisations:danann_o_dunn&#45;&gt;pnj:tristanodunn</title> 
-<path fill="none" stroke="black" d="M407.22,-2478.39C422.708,-2480.62 438.882,-2482.67 454,-2484 843.23,-2518.2 2075.35,-2532.79 2405.17,-2536.19"/> +<path fill="none" stroke="black" d="M465.091,-105.049C515.941,-115.535 584.73,-130.349 645,-144 755.912,-169.121 884.815,-200 956.63,-217.994"/> 
-<polygon fill="black" stroke="black" points="2405.55,-2539.7 2415.59,-2536.3 2405.63,-2532.7 2405.55,-2539.7"/>+<polygon fill="black" stroke="black" points="955.825,-221.401 966.376,-220.446 957.532,-214.612 955.825,-221.401"/>
 </g> </g>
-<!-- pnj:joachim_finkerbachen&#45;&gt;pnj:martha_finkerbachen --> +<!-- pnj:brendanodunn --> 
-<g id="edge336" class="edge"><title>pnj:joachim_finkerbachen&#45;&gt;pnj:martha_finkerbachen</title> +<g id="node48" class="node" onclick="click(evt)"><title>pnj:brendanodunn</title> 
-<path fill="none" stroke="blackd="M297.397,-2448.88C258.137,-2425.99 200,-2380.4 200,-2323 200,-2323 200,-2323 200,-1961 200,-1920.96 197.589,-1874.63 198.116,-1846.07"/> +<ellipse fill="#e5b030" fill-opacity="0.733333" stroke="#e5b030stroke-opacity="0.733333" cx="551" cy="-162" rx="76.0865" ry="18"/> 
-<polygon fill="blackstroke="blackpoints="201.615,-1846.16 198.473,-1836.04 194.619,-1845.91 201.615,-1846.16"/>+<text text-anchor="middlex="551y="-158.3" font-family="Times,serif" font-size="14.00">pnj:brendanodunn</text>
 </g> </g>
-<!-- pnj:joachim_finkerbachen&#45;&gt;pj:oggodt --> +<!-- lore:organisations:danann_o_dunn&#45;&gt;pnj:brendanodunn --> 
-<g id="edge335" class="edge"><title>pnj:joachim_finkerbachen&#45;&gt;pj:oggodt</title> +<g id="edge283" class="edge"><title>lore:organisations:danann_o_dunn&#45;&gt;pnj:brendanodunn</title> 
-<path fill="none" stroke="black" d="M371.368,-2449.29C404.961,-2437.09 453.114,-2420.35 488.176,-2408.7"/> +<path fill="none" stroke="black" d="M433.687,-107.142C457.86,-117.22 487.816,-130.271 511.454,-141.001"/> 
-<polygon fill="black" stroke="black" points="489.298,-2412.02 497.696,-2405.56 487.102,-2405.37 489.298,-2412.02"/>+<polygon fill="black" stroke="black" points="510.284,-144.315 520.833,-145.291 513.195,-137.949 510.284,-144.315"/>
 </g> </g>
-<!-- pj:oggodt&#45;&gt;pnj:martha_finkerbachen --> +<!-- lore:organisations:danann_o_dunn&#45;&gt;pnj:williamodunn --> 
-<g id="edge47" class="edge"><title>pj:oggodt&#45;&gt;pnj:martha_finkerbachen</title> +<g id="edge277" class="edge"><title>lore:organisations:danann_o_dunn&#45;&gt;pnj:williamodunn</title> 
-<path fill="none" stroke="black" d="M488.976,-2389.25C413.504,-2379.99 268,-2349.09 268,-2251 268,-2251 268,-2251 268,-1961 268,-1916.1 238.542,-1871.33 219.059,-1844.4"/> +<path fill="none" stroke="black" d="M402.691,-107.935C423.412,-145.003 464.649,-233.57 482.275,-278.252"/> 
-<polygon fill="black" stroke="black" points="221.865,-1842.31 213.134,-1836.31 216.216,-1846.44 221.865,-1842.31"/>+<polygon fill="black" stroke="black" points="479.104,-279.758 485.943,-287.849 485.642,-277.259 479.104,-279.758"/>
 </g> </g>
-<!-- pj:oggodt&#45;&gt;pnj:joachim_finkerbachen --> +<!-- lore:organisations:danann_o_dunn&#45;&gt;pnj:eidanodunn --> 
-<g id="edge41" class="edge"><title>pj:oggodt&#45;&gt;pnj:joachim_finkerbachen</title> +<g id="edge281" class="edge"><title>lore:organisations:danann_o_dunn&#45;&gt;pnj:eidanodunn</title> 
-<path fill="none" stroke="black" d="M502.547,-2407.45C472.772,-2418.426.864,-2434.47 390.13,-2446.85"/> +<path fill="none" stroke="black" d="M394.597,-108.138C396.978,-147.35 395.091,-246.218 419,-324 421.813,-333.153 426.391,-342.462 430.733,-350.673"/> 
-<polygon fill="black" stroke="black" points="388.887,-2443.57 380.52,-2450.07 391.114,-2450.21 388.887,-2443.57"/>+<polygon fill="black" stroke="black" points="427.785,-352.58 435.604,-359.73 433.95,-349.265 427.785,-352.58"/>
 </g> </g>
-<!-- pj:splenters --> +<!-- pnj:lilalee --> 
-<g id="node44" class="node"><title>pj:splenters</title> +<g id="node102" class="node" onclick="click(evt)"><title>pnj:lilalee</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfee" cx="2300" cy="-882" rx="51.9908" ry="18"/> +<ellipse fill="#e5b030" fill-opacity="0.733333" stroke="#e5b030" stroke-opacity="0.733333" cx="250" cy="-450" rx="43.5923" ry="18"/> 
-<text text-anchor="middle" x="2300" y="-878.3" font-family="Times,serif" font-size="14.00">pj:splenters</text>+<text text-anchor="middle" x="250" y="-446.3" font-family="Times,serif" font-size="14.00">pnj:lilalee</text>
 </g> </g>
-<!-- pj:oggodt&#45;&gt;pj:splenters --> +<!-- lore:organisations:danann_o_dunn&#45;&gt;pnj:lilalee --> 
-<g id="edge40" class="edge"><title>pj:oggodt&#45;&gt;pj:splenters</title> +<g id="edge279" class="edge"><title>lore:organisations:danann_o_dunn&#45;&gt;pnj:lilalee</title> 
-<path fill="none" stroke="black" d="M575.745,-2387.8C666.785,-2376.54 872.507,-2350.14 884,-2340 977.464,-2257.51 974.762,-1908.59 1036,-1800 1111.38,-1666.34 1172.05,-1664.43 1272,-1548 1497.34,-1285.5 1449.5,-1102.05 1753,-936 1794.81,-913.126 2104.54,-893.674 2238.52,-886.235"/> +<path fill="none" stroke="black" d="M361.349,-107.725C322.28,-129.938 259,-173.418 259,-233 259,-307 259,-307 259,-307 259,-347.004 259,-393.347 256.708,-421.92"/> 
-<polygon fill="black" stroke="black" points="2238.84,-889.723 2248.63,-885.678 2238.45,-882.733 2238.84,-889.723"/>+<polygon fill="black" stroke="black" points="253.217,-421.654 255.712,-431.951 260.183,-422.345 253.217,-421.654"/>
 </g> </g>
-<!-- pj:oggodt&#45;&gt;pnj:meredith --> +<!-- pnj:damonneone --> 
-<g id="edge42" class="edge"><title>pj:oggodt&#45;&gt;pnj:meredith</title> +<g id="node135" class="node" onclick="click(evt)"><title>pnj:damonneone</title> 
-<path fill="none" stroke="blackd="M578.019,-2390.88C710.508,-2383.87 1094.19,-2356.59 1176,-2268 1301.59,-2132.02 1157.49,-1983.82 1305,-1872 1319.45,-1861.05 3894.91,-1765.15 3913,-1764 3989.98,-1759.11 5243.18,-1678.03 5294,-1620 5304.54,-1607.96 5301.4,-1598.19 5294,-1584 5286.93,-1570.46 5274.65,-1559.67 5262.46,-1551.46"/> +<ellipse fill="#e5b030" fill-opacity="0.733333" stroke="#e5b030stroke-opacity="0.733333" cx="391" cy="-18" rx="70.3881" ry="18"/> 
-<polygon fill="blackstroke="blackpoints="5264,-1548.29 5253.67,-1545.93 5260.27,-1554.22 5264,-1548.29"/>+<text text-anchor="middlex="391y="-14.3" font-family="Times,serif" font-size="14.00">pnj:damonneone</text>
 </g> </g>
-<!-- pj:oggodt&#45;&gt;pj:endol --> +<!-- lore:organisations:danann_o_dunn&#45;&gt;pnj:damonneone --> 
-<g id="edge43" class="edge"><title>pj:oggodt&#45;&gt;pj:endol</title> +<g id="edge276" class="edge"><title>lore:organisations:danann_o_dunn&#45;&gt;pnj:damonneone</title> 
-<path fill="none" stroke="black" d="M538.688,-2375.86C546.601,-2354.98 563.078,-2320.47 590,-2304 672.412,-2253.59 967.111,-2249.79 1085.87,-2250.39"/> +<path fill="none" stroke="black" d="M385.084,-71.6966C384.289,-63.9827 384.062,-54.7125 384.405,-46.1124"/> 
-<polygon fill="black" stroke="black" points="1086.11,-2253.89 1096.13,-2250.45 1086.15,-2246.89 1086.11,-2253.89"/>+<polygon fill="black" stroke="black" points="387.898,-46.3243 385.105,-36.1043 380.915,-45.8356 387.898,-46.3243"/>
 </g> </g>
-<!-- lore:objets:trollhammer_de_oggodt --> +<!-- pnj:valentinpragault&#45;&gt;lore:lieux:munich --> 
-<g id="node47" class="node"><title>lore:objets:trollhammer_de_oggodt</title> +<g id="edge34" class="edge"><title>pnj:valentinpragault&#45;&gt;lore:lieux:munich</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfeecx="737" cy="-2322" rx="137.576" ry="18"/> +<path fill="none" stroke="blackd="M1183.09,-1038.47C1213.22,-1046.49 1249.39,-1059.52 1277,-1080 1340.62,-1127.18 1347.36,-1152.77 1382,-1224 1469.25,-1403.42 1454.53,-1462.72 1504,-1656 1548.78,-1830.95 1518.49,-1888.42 1595,-2052 1756.67,-2397.67 1918.62,-2408.21 2114,-2736 2140.99,-2781.28 2119.68,-2813.98 2163,-2844 2220.03,-2883.52 2679.45,-2893.68 2869.34,-2896.2"/> 
-<text text-anchor="middlex="737y="-2318.3" font-family="Times,serif" font-size="14.00">lore:objets:trollhammer_de_oggodt</text>+<polygon fill="blackstroke="blackpoints="2869.49,-2899.7 2879.54,-2896.33 2869.58,-2892.7 2869.49,-2899.7"/>
 </g> </g>
-<!-- pj:oggodt&#45;&gt;lore:objets:trollhammer_de_oggodt --> +<!-- pnj:valentinpragault&#45;&gt;lore:organisations:camorra --> 
-<g id="edge44" class="edge"><title>pj:oggodt&#45;&gt;lore:objets:trollhammer_de_oggodt</title> +<g id="edge29" class="edge"><title>pnj:valentinpragault&#45;&gt;lore:organisations:camorra</title> 
-<path fill="none" stroke="black" d="M563.71,-2380.65C593.264,-2369.95 638.61,-2354.3 675.546,-2342"/> +<path fill="none" stroke="black" d="M1174.72,-1040.23C1198.73,-1048.56 1226.66,-1061.35 1247,-1080 1284.61,-1114.49 1294.74,-1137.72 1286,-1188 1284.48,-1196.76 1281.64,-1205.99 1278.61,-1214.25"/> 
-<polygon fill="black" stroke="black" points="676.838,-2345.26 685.229,-2338.79 674.635,-2338.62 676.838,-2345.26"/>+<polygon fill="black" stroke="black" points="1275.28,-1213.16 1274.89,-1223.75 1281.79,-1215.71 1275.28,-1213.16"/>
 </g> </g>
-<!-- pj:oggodt&#45;&gt;pj:eidolon --> +<!-- pnj:valentinpragault&#45;&gt;lore:lieux:tir_na_nog --> 
-<g id="edge45" class="edge"><title>pj:oggodt&#45;&gt;pj:eidolon</title> +<g id="edge28" class="edge"><title>pnj:valentinpragault&#45;&gt;lore:lieux:tir_na_nog</title> 
-<path fill="none" stroke="black" d="M526.616,-2376.1C525.03,-2357 528.958,-2325.75 544,-2304 581.842,-2249.27 652.192,-2212.43 698.423,-2193.64"/> +<path fill="none" stroke="black" d="M1126.71,-1007.76C1127.68,-987.447 1125.79,-954.159 1106,-936 1059.35,-893.201 886.449,-883.912 776.368,-882.475"/> 
-<polygon fill="black" stroke="black" points="699.881,-2196.83 707.901,-2189.91 697.314,-2190.32 699.881,-2196.83"/>+<polygon fill="black" stroke="black" points="776.286,-878.974 766.247,-882.362 776.208,-885.973 776.286,-878.974"/>
 </g> </g>
-<!-- pj:oggodt&#45;&gt;pj:sven --> +<!-- lore:lieux:sox --> 
-<g id="edge46" class="edge"><title>pj:oggodt&#45;&gt;pj:sven</title> +<g id="node28" class="node" onclick="click(evt)"><title>lore:lieux:sox</title> 
-<path fill="none" stroke="blackd="M577.103,-2389.16C647.771,-2382.81 789.957,-2367.94 908,-2340 914.031,-2338.57 920.363,-2336.71 926.582,-2334.75"/> +<ellipse fill="#021dcd" fill-opacity="0.733333" stroke="#021dcdstroke-opacity="0.733333" cx="2796" cy="-1746" rx="57.6901" ry="18"/> 
-<polygon fill="blackstroke="blackpoints="927.772,-2338.04 936.203,-2331.63 925.61,-2331.39 927.772,-2338.04"/>+<text text-anchor="middlex="2796y="-1742.3" font-family="Times,serif" font-size="14.00">lore:lieux:sox</text>
 </g> </g>
-<!-- pnj:stocks&#45;&gt;lore:lieux:munich --> +<!-- pnj:valentinpragault&#45;&gt;lore:lieux:sox --> 
-<g id="edge26" class="edge"><title>pnj:stocks&#45;&gt;lore:lieux:munich</title> +<g id="edge25" class="edge"><title>pnj:valentinpragault&#45;&gt;lore:lieux:sox</title> 
-<path fill="none" stroke="black" d="M2790.38,-1115.99C2788.85,-1134.35 2781.38,-1164.18 2770,-1188 2761.6,-1205.58 2754.1,-1206.78 2745,-1224 2725.22,-1261.44 2711,-1270.66 2711,-1313 2711,-2179 2711,-2179 2711,-2179 2711,-2324.03 2690.78,-2375.1 2595,-2484 2581.12,-2499.78 2561.38,-2511.67 2542.5,-2520.14"/> +<path fill="none" stroke="black" d="M1102.3,-1043.37C1091.01,-1052.77 1078.27,-1065.57 1071,-1080 1066.51,-1088.92 1051.08,-1167.5 1061,-1188 1083.47,-1234.42 1106.21,-1236.27 1152,-1260 1727.1,-1558.03 2512.77,-1699.88 2735.15,-1735.68"/> 
-<polygon fill="black" stroke="black" points="2540.88,-2517.03 2533.04,-2524.15 2543.61,-2523.47 2540.88,-2517.03"/>+<polygon fill="black" stroke="black" points="2734.88,-1739.18 2745.31,-1737.31 2735.99,-1732.27 2734.88,-1739.18"/>
 </g> </g>
-<!-- pnj:stocks&#45;&gt;pnj:leik --> +<!-- lore:lieux:zweibruecken --> 
-<g id="edge27" class="edge"><title>pnj:stocks&#45;&gt;pnj:leik</title> +<g id="node29" class="node" onclick="click(evt)"><title>lore:lieux:zweibruecken</title> 
-<path fill="none" stroke="blackd="M2753.73,-1084.81C2720.32,-1072.56 2668.91,-1053.72 2633.93,-1040.9"/> +<ellipse fill="#021dcd" fill-opacity="0.733333" stroke="#021dcdstroke-opacity="0.733333" cx="1256" cy="-1674" rx="94.4839" ry="18"/> 
-<polygon fill="blackstroke="blackpoints="2635.12,-1037.61 2624.53,-1037.46 2632.72,-1044.18 2635.12,-1037.61"/>+<text text-anchor="middlex="1256y="-1670.3" font-family="Times,serif" font-size="14.00">lore:lieux:zweibruecken</text>
 </g> </g>
-<!-- pnj:stocks&#45;&gt;lore:organisations:mi&#45;seng_lung --> +<!-- pnj:valentinpragault&#45;&gt;lore:lieux:zweibruecken --> 
-<g id="edge28" class="edge"><title>pnj:stocks&#45;&gt;lore:organisations:mi&#45;seng_lung</title> +<g id="edge26" class="edge"><title>pnj:valentinpragault&#45;&gt;lore:lieux:zweibruecken</title> 
-<path fill="none" stroke="black" d="M2834.07,-1101.88C2968.17,-1110.21 3350.54,-1134.82 3475,-1152 3555.82,-1163.15 3574.33,-1175.79 3655,-1188 3808.74,-1211.27 3860.11,-1162.67 4003,-1224 4005.31,-1224.99 4049.84,-1263.42 4079.88,-1289.45"/> +<path fill="none" stroke="black" d="M1071.16,-1039.46C1049.03,-1047.37 1025.28,-1060.03 1011,-1080 1001.27,-1093.61 965.387,-1337.15 988,-1404 1026.71,-1518.44 1060.36,-1542.47 1153,-1620 1169.02,-1633.41 1189,-1644.66 1207.09,-1653.3"/> 
-<polygon fill="black" stroke="black" points="4077.7,-1292.19 4087.54,-1296.1 4082.28,-1286.9 4077.7,-1292.19"/>+<polygon fill="black" stroke="black" points="1205.8,-1656.56 1216.35,-1657.58 1208.74,-1650.21 1205.8,-1656.56"/>
 </g> </g>
-<!-- pnj:stocks&#45;&gt;lore:organisations:chrysantheme_renaissante --> +<!-- pnj:bartek --> 
-<g id="edge29" class="edge"><title>pnj:stocks&#45;&gt;lore:organisations:chrysantheme_renaissante</title> +<g id="node30" class="node" onclick="click(evt)"><title>pnj:bartek</title> 
-<path fill="none" stroke="blackd="M2749.88,-1086.48C2728.01,-1078.37 2701.65,-1064.94 2686,-1044 2642.32,-985.565 2654,-955.955 2654,-883 2654,-883 2654,-883 2654,-737 2654,-696.996 2654,-650.653 2654,-622.08"/> +<ellipse fill="#e5b030" fill-opacity="0.733333" stroke="#e5b030stroke-opacity="0.733333" cx="4714" cy="-954" rx="46.2923" ry="18"/> 
-<polygon fill="blackstroke="blackpoints="2657.5,-622.049 2654,-612.049 2650.5,-622.049 2657.5,-622.049"/>+<text text-anchor="middlex="4714y="-950.3" font-family="Times,serif" font-size="14.00">pnj:bartek</text>
 </g> </g>
-<!-- pnj:stocks&#45;&gt;lore:planques:box_m1 --> +<!-- pnj:valentinpragault&#45;&gt;pnj:bartek --> 
-<g id="edge30" class="edge"><title>pnj:stocks&#45;&gt;lore:planques:box_m1</title> +<g id="edge27" class="edge"><title>pnj:valentinpragault&#45;&gt;pnj:bartek</title> 
-<path fill="none" stroke="black" d="M2765.36,-1114.18C2748.46,-1124.25 2724.63,-1137.58 2703.96,-1148.58"/> +<path fill="none" stroke="black" d="M1201.24,-1020.45C1271.33,-1016.45 1378.12,-1010.85 1471,-1008 2770.04,-968.104 3096.04,-1014.59 4395,-972 4487.54,-968.966 4595.06,-962.659 4658.66,-958.638"/> 
-<polygon fill="black" stroke="black" points="2702.23,-1145.53 2695.02,-1153.29 2705.5,-1151.72 2702.23,-1145.53"/>+<polygon fill="black" stroke="black" points="4659.1,-962.117 4668.86,-957.989 4658.66,-955.131 4659.1,-962.117"/>
 </g> </g>
-<!-- lore:corpos:gomorrah --> +<!-- lore:organisations:rote_kasern --> 
-<g id="node36" class="node"><title>lore:corpos:gomorrah</title> +<g id="node31" class="node" onclick="click(evt)"><title>lore:organisations:rote_kasern</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfee" cx="2784" cy="-1026" rx="89.0842" ry="18"/> +<ellipse fill="#e323e9" fill-opacity="0.733333" stroke="#e323e9" stroke-opacity="0.733333" cx="1280" cy="-1602" rx="118.079" ry="18"/> 
-<text text-anchor="middle" x="2784" y="-1022.3" font-family="Times,serif" font-size="14.00">lore:corpos:gomorrah</text>+<text text-anchor="middle" x="1280" y="-1598.3" font-family="Times,serif" font-size="14.00">lore:organisations:rote_kasern</text>
 </g> </g>
-<!-- pnj:stocks&#45;&gt;lore:corpos:gomorrah --> +<!-- pnj:valentinpragault&#45;&gt;lore:organisations:rote_kasern --> 
-<g id="edge31" class="edge"><title>pnj:stocks&#45;&gt;lore:corpos:gomorrah</title> +<g id="edge30" class="edge"><title>pnj:valentinpragault&#45;&gt;lore:organisations:rote_kasern</title> 
-<path fill="none" stroke="black" d="M2786.26,-1079.7C2785.93,-1071.98 2785.53,-1062.71 2785.16,-1054.11"/> +<path fill="none" stroke="black" d="M1078.37,-1040.68C1059.26,-1048.84 1039.06,-1061.35 1028,-1080 1003.51,-1121.28 1015.02,-1141.79 1028,-1188 1052.02,-1273.47 1208.22,-1499.43 1261.91,-1575.55"/> 
-<polygon fill="black" stroke="black" points="2788.66,-1053.95 2784.73,-1044.1 2781.66,-1054.25 2788.66,-1053.95"/>+<polygon fill="black" stroke="black" points="1259.3,-1577.93 1267.93,-1584.07 1265.02,-1573.89 1259.3,-1577.93"/>
 </g> </g>
-<!-- lore:objets:nanoforge --> +<!-- pnj:obrennan --> 
-<g id="node37" class="node"><title>lore:objets:nanoforge</title> +<g id="node32" class="node" onclick="click(evt)"><title>pnj:obrennan</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfee" cx="3091" cy="-1242" rx="87.1846" ry="18"/> +<ellipse fill="#e5b030" fill-opacity="0.733333" stroke="#e5b030" stroke-opacity="0.733333" cx="961" cy="-594" rx="57.6901" ry="18"/> 
-<text text-anchor="middle" x="3091" y="-1238.3" font-family="Times,serif" font-size="14.00">lore:objets:nanoforge</text>+<text text-anchor="middle" x="961" y="-590.3" font-family="Times,serif" font-size="14.00">pnj:obrennan</text>
 </g> </g>
-<!-- pnj:stocks&#45;&gt;lore:objets:nanoforge --> +<!-- pnj:valentinpragault&#45;&gt;pnj:obrennan --> 
-<g id="edge32" class="edge"><title>pnj:stocks&#45;&gt;lore:objets:nanoforge</title> +<g id="edge31" class="edge"><title>pnj:valentinpragault&#45;&gt;pnj:obrennan</title> 
-<path fill="none" stroke="black" d="M2815.89,-1112.5C2869.62,-1137.59 2985.15,-1191.56 3048.05,-1220.94"/> +<path fill="none" stroke="black" d="M1130.14,-1007.77C1134.71,-989.208 1139.23,-959.21 1129,-936 1081.16,-827.478 979.843,-864.522 932,-756 912.637,-712.079 920.109,-694.504 932,-648 934.442,-638.448 939.001,-628.765 943.793,-620.335"/> 
-<polygon fill="black" stroke="black" points="3046.76,-1224.2 3057.31,-1225.26 3049.73,-1217.86 3046.76,-1224.2"/>+<polygon fill="black" stroke="black" points="946.809,-622.112 948.994,-611.745 940.821,-618.486 946.809,-622.112"/>
 </g> </g>
-<!-- pnj:leik&#45;&gt;lore:lieux:munich --> +<!-- lore:bars:posthaus --> 
-<g id="edge424" class="edge"><title>pnj:leik&#45;&gt;lore:lieux:munich</title> +<g id="node33" class="node" onclick="click(evt)"><title>lore:bars:posthaus</title> 
-<path fill="none" stroke="blackd="M2560.62,-1030.61C2450.74,-1041.25 2123.15,-1072.19 2115,-1080 1916.32,-1270.31 1949.73,-2029.66 1929,-2304 1922.42,-2391.12 1931.17,-2442.4 2008,-2484 2075.18,-2520.37 2287.59,-2531.79 2405.78,-2535.37"/> +<ellipse fill="#6b706f" fill-opacity="0.733333" stroke="#6b706fstroke-opacity="0.733333" cx="919" cy="-954" rx="76.8869" ry="18"/> 
-<polygon fill="blackstroke="blackpoints="2405.77,-2538.87 2415.87,-2535.67 2405.98,-2531.88 2405.77,-2538.87"/>+<text text-anchor="middlex="919y="-950.3" font-family="Times,serif" font-size="14.00">lore:bars:posthaus</text>
 </g> </g>
-<!-- pnj:leik&#45;&gt;lore:organisations:mi&#45;seng_lung --> +<!-- pnj:valentinpragault&#45;&gt;lore:bars:posthaus --> 
-<g id="edge423" class="edge"><title>pnj:leik&#45;&gt;lore:organisations:mi&#45;seng_lung</title> +<g id="edge32" class="edge"><title>pnj:valentinpragault&#45;&gt;lore:bars:posthaus</title> 
-<path fill="none" stroke="black" d="M2629.25,-1033.83C2646.19,-1037.16 2667.14,-1041.08 2686,-1044 3081.08,-1105.13 3183.01,-1097.08 3579,-1152 3783.97,-1180.43 3861.17,-1118.17 4039,-1224 4052.19,-1231.85 4074.96,-1263.85 4090.49,-1287.24"/> +<path fill="none" stroke="black" d="M1079.05,-1011.25C1045.58,-1000.38 1000.45,-985.107 966.605,-973.218"/> 
-<polygon fill="black" stroke="black" points="4087.64,-1289.27 4096.05,-1295.71 4093.49,-1285.43 4087.64,-1289.27"/>+<polygon fill="black" stroke="black" points="967.527,-969.832 956.933,-969.803 965.197,-976.432 967.527,-969.832"/>
 </g> </g>
-<!-- pnj:leik&#45;&gt;lore:planques:box_m1 --> +<!-- pnj:valentinpragault&#45;&gt;lore:organisations:ira --> 
-<g id="edge427" class="edge"><title>pnj:leik&#45;&gt;lore:planques:box_m1</title> +<g id="edge33" class="edge"><title>pnj:valentinpragault&#45;&gt;lore:organisations:ira</title> 
-<path fill="none" stroke="black" d="M2614.79,-1041.69C2623.67,-1051.99 2633.32,-1066.33 2640,-1080 2649.75,-1099.96 2657.62,-1123.89 2661.49,-1141.9"/> +<path fill="none" stroke="black" d="M1142.29,-1008.22C1152.62,-997.986 1165.86,-984.515 1177,-972 1218.45,-925.453 1263.43,-868.05 1288.11,-835.884"/> 
-<polygon fill="black" stroke="black" points="2658.05,-1142.55 2663.29,-1151.75 2664.94,-1141.29 2658.05,-1142.55"/>+<polygon fill="black" stroke="black" points="1290.93,-837.961 1294.23,-827.892 1285.37,-833.708 1290.93,-837.961"/>
 </g> </g>
-<!-- pnj:leik&#45;&gt;lore:objets:nanoforge --> +<!-- pnj:valentinpragault&#45;&gt;pj:ankou --> 
-<g id="edge422" class="edge"><title>pnj:leik&#45;&gt;lore:objets:nanoforge</title> +<g id="edge35" class="edge"><title>pnj:valentinpragault&#45;&gt;pj:ankou</title> 
-<path fill="none" stroke="black" d="M2629.61,-1033.47C2692.71,-1045.73 2824.33,-1071.82 2844,-1080 2930.58,-1116.01 3019.73,-1182.93 3063.44,-1218.08"/> +<path fill="none" stroke="black" d="M1108.05,-1008.05C1099.03,-999.027 1087.79,-987.792 1077.99,-977.987"/> 
-<polygon fill="black" stroke="black" points="3061.34,-1220.88 3071.31,-1224.46 3065.75,-1215.44 3061.34,-1220.88"/>+<polygon fill="black" stroke="black" points="1080.38,-975.426 1070.83,-970.829 1075.43,-980.375 1080.38,-975.426"/>
 </g> </g>
-<!-- pnj:leik&#45;&gt;pnj:jinhong --> +<!-- lore:lieux:sox&#45;&gt;lore:lieux:zweibruecken --> 
-<g id="edge429" class="edge"><title>pnj:leik&#45;&gt;pnj:jinhong</title> +<g id="edge296" class="edge"><title>lore:lieux:sox&#45;&gt;lore:lieux:zweibruecken</title> 
-<path fill="none" stroke="black" d="M2568.27,-1014.22C2538.92,-1002.8 2492.24,-984.649 2458.29,-971.448"/> +<path fill="none" stroke="black" d="M2741.32,-1739.99C2702.1,-1736.18 2648.24,-1731.08 2601,-1728 2138.03,-1697.8 1584.8,-1682.68 1359.26,-1677.32"/> 
-<polygon fill="black" stroke="black" points="2459.23,-968.057 2448.64,-967.695 2456.69,-974.581 2459.23,-968.057"/>+<polygon fill="black" stroke="black" points="1359.18,-1673.82 1349.1,-1677.08 1359.01,-1680.82 1359.18,-1673.82"/>
 </g> </g>
-<!-- pnj:leik&#45;&gt;pnj:keito_lung --> +<!-- lore:lieux:sox&#45;&gt;lore:organisations:rote_kasern --> 
-<g id="edge426" class="edge"><title>pnj:leik&#45;&gt;pnj:keito_lung</title> +<g id="edge299" class="edge"><title>lore:lieux:sox&#45;&gt;lore:organisations:rote_kasern</title> 
-<path fill="none" stroke="black" d="M2628.75,-1017.74C2645.75,-1014.24 2666.9,-1010.32 2686,-1008 2975.87,-972.826 3051.12,-997.489 3342,-972 3366.93,-969.815 3394.26,-966.691 3418.16,-963.715"/> +<path fill="none" stroke="black" d="M2741.14,-1740.11C2519.14,-1719.79 1685.43,-1641.73 1387.02,-1613.37"/> 
-<polygon fill="black" stroke="black" points="3418.7,-967.175 3428.18,-962.452 3417.82,-960.23 3418.7,-967.175"/>+<polygon fill="black" stroke="black" points="1386.92,-1609.85 1376.63,-1612.39 1386.26,-1616.82 1386.92,-1609.85"/>
 </g> </g>
-<!-- pnj:leik&#45;&gt;pnj:fgf --> +<!-- lore:lieux:sox&#45;&gt;lore:organisations:swamp_rats --> 
-<g id="edge428" class="edge"><title>pnj:leik&#45;&gt;pnj:fgf</title> +<g id="edge298" class="edge"><title>lore:lieux:sox&#45;&gt;lore:organisations:swamp_rats</title> 
-<path fill="none" stroke="black" d="M2568.31,-1014.2C2561.14,-1011.79 2553.37,-1009.5 2546,-1008 2336.82,-965.298 2279.78,-989.415 2067,-972 2016.24,-967.846 1957.98,-962.622 1919.07,-959.07"/> +<path fill="none" stroke="black" d="M2853.54,-1747.94C3080.42,-1751.9 3934.29,-1768.47 4636,-1800 4686.8,-1802.28 4742.77,-1805.55 4790.53,-1808.6"/> 
-<polygon fill="black" stroke="black" points="1918.91,-955.54 1908.63,-958.114 1918.27,-962.511 1918.91,-955.54"/>+<polygon fill="black" stroke="black" points="4790.39,-1812.1 4800.6,-1809.25 4790.84,-1805.12 4790.39,-1812.1"/>
 </g> </g>
-<!-- pnj:leik&#45;&gt;pnj:jinks --> +<!-- lore:lieux:nancy --> 
-<g id="edge425" class="edge"><title>pnj:leik&#45;&gt;pnj:jinks</title> +<g id="node68" class="node" onclick="click(evt)"><title>lore:lieux:nancy</title> 
-<path fill="none" stroke="blackd="M2567.65,-1014.6C2560.63,-1012.23 2553.09,-1009.87 2546,-1008 2463.32,-986.184 2440.99,-988.041 2357,-972 2273.44,-956.041 2252.64,-951.547 2169,-936 2081.69,-919.772 1979.66,-901.543 1921.65,-891.249"/> +<ellipse fill="#021dcd" fill-opacity="0.733333" stroke="#021dcdstroke-opacity="0.733333" cx="2822" cy="-1314" rx="66.0889" ry="18"/> 
-<polygon fill="blackstroke="blackpoints="1922.15,-887.783 1911.69,-889.483 1920.93,-894.675 1922.15,-887.783"/>+<text text-anchor="middlex="2822y="-1310.3" font-family="Times,serif" font-size="14.00">lore:lieux:nancy</text>
 </g> </g>
-<!-- lore:organisations:mi&#45;seng_lung&#45;&gt;lore:lieux:munich --> +<!-- lore:lieux:sox&#45;&gt;lore:lieux:nancy --> 
-<g id="edge75" class="edge"><title>lore:organisations:mi&#45;seng_lung&#45;&gt;lore:lieux:munich</title> +<g id="edge297" class="edge"><title>lore:lieux:sox&#45;&gt;lore:lieux:nancy</title> 
-<path fill="none" stroke="black" d="M4067.62,-1331.11C4047.42,-1339.8 4023.4,-1352.06 4005,-1368 3975.94,-1393.19 3976.89,-1407.08 3957,-1440 3881.6,-1564.77 3843.2,-1588.77 3800,-1728 3769.15,-1827.43 3776,-1856.9 3776,-1961 3776,-2107 3776,-2107 3776,-2107 3776,-2177.87 3711.75,-2170.23 3677,-2232 3656.31,-2268.77 3644,-2278.81 3644,-2321 3644,-2395 3644,-2395 3644,-2395 3644,-2437.19 3645.05,-2459.09 3611,-2484 3569.2,-2514.58 2819.62,-2531.05 2568.3,-2535.65"/> +<path fill="none" stroke="black" d="M2785.74,-1727.86C2783.21,-1717.5 2781.68,-1704.02 2781,-1692 2774.69,-1580.18 2767,-1551.12 2781,-1440 2785.38,-1405.23 2796.36,-1366.27 2806.29,-1341.23"/> 
-<polygon fill="black" stroke="black" points="2568.08,-2532.15 2558.14,-2535.83 2568.2,-2539.15 2568.08,-2532.15"/>+<polygon fill="black" stroke="black" points="2809.64,-1342.3 2810.31,-1331.72 2803.19,-1339.57 2809.64,-1342.3"/>
 </g> </g>
-<!-- lore:organisations:mi&#45;seng_lung&#45;&gt;lore:objets:nanoforge --> +<!-- lore:lieux:zweibruecken&#45;&gt;lore:lieux:sox --> 
-<g id="edge76" class="edge"><title>lore:organisations:mi&#45;seng_lung&#45;&gt;lore:objets:nanoforge</title> +<g id="edge160" class="edge"><title>lore:lieux:zweibruecken&#45;&gt;lore:lieux:sox</title> 
-<path fill="none" stroke="black" d="M3996.38,-1305.81C3843.91,-1295.85 3560.57,-1277.13 3319,-1260 3273.64,-1256.78 3223.22,-1253.04 3181.36,-1249.89"/> +<path fill="none" stroke="black" d="M1349.31,-1676.88C1570.29,-1681.8 2142.46,-1696.92 2619,-1728 2656.97,-1730.48 2699.22,-1734.26 2732.98,-1737.62"/> 
-<polygon fill="black" stroke="black" points="3181.42,-1246.38 3171.18,-1249.12 3180.89,-1253.36 3181.42,-1246.38"/>+<polygon fill="black" stroke="black" points="2732.86,-1741.13 2743.16,-1738.65 2733.57,-1734.16 2732.86,-1741.13"/>
 </g> </g>
-<!-- lore:organisations:mi&#45;seng_lung&#45;&gt;lore:organisations:fon --> +<!-- lore:lieux:zweibruecken&#45;&gt;lore:organisations:rote_kasern --> 
-<g id="edge74" class="edge"><title>lore:organisations:mi&#45;seng_lung&#45;&gt;lore:organisations:fon</title> +<g id="edge159" class="edge"><title>lore:lieux:zweibruecken&#45;&gt;lore:organisations:rote_kasern</title> 
-<path fill="none" stroke="black" d="M4006.81,-1303.34C3870.94,-1289.84 3630.64,-1265.49 3502.33,-1252.23"/> +<path fill="none" stroke="black" d="M1256.02,-1655.7C1257.91,-1647.81 1260.95,-1638.3 1264.33,-1629.55"/> 
-<polygon fill="black" stroke="black" points="3502.47,-1248.72 3492.16,-1251.17 3501.75,-1255.68 3502.47,-1248.72"/>+<polygon fill="black" stroke="black" points="1267.64,-1630.68 1268.24,-1620.1 1261.18,-1628 1267.64,-1630.68"/>
 </g> </g>
-<!-- pnj:ono --> +<!-- pnj:bartek&#45;&gt;lore:lieux:munich --> 
-<g id="node40" class="node"><title>pnj:ono</title> +<g id="edge528" class="edge"><title>pnj:bartek&#45;&gt;lore:lieux:munich</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfee" cx="4576cy="-1242" rx="38.1938" ry="18"/> +<path fill="none" stroke="blackd="M4741.35,-968.735C4780.01,-990.318 4846,-1036.08 4846,-1097 4846,-1243 4846,-1243 4846,-1243 4846,-1519.62 5190.6,-1607.29 5035,-1836 5019.68,-1858.52 4596.13,-1994.82 4579,-2016 4563.49,-2035.18 4542.64,-2139.09 4555,-2196 4567.96,-2255.67 4612,-2259.94 4612,-2321 4612,-2755 4612,-2755 4612,-2755 4612,-2814.17 4567.88,-2821.88 4513,-2844 4375.58,-2899.38 3335.68,-2898.84 3033.25,-2897.49"/> 
-<text text-anchor="middlex="4576y="-1238.3" font-family="Times,serif" font-size="14.00">pnj:ono</text>+<polygon fill="blackstroke="blackpoints="3032.83,-2893.99 3022.81,-2897.44 3032.79,-2900.99 3032.83,-2893.99"/>
 </g> </g>
-<!-- lore:organisations:mi&#45;seng_lung&#45;&gt;pnj:ono --> +<!-- pnj:bartek&#45;&gt;lore:objets:nanoforge --> 
-<g id="edge73" class="edge"><title>lore:organisations:mi&#45;seng_lung&#45;&gt;pnj:ono</title> +<g id="edge531" class="edge"><title>pnj:bartek&#45;&gt;lore:objets:nanoforge</title> 
-<path fill="none" stroke="black" d="M4195.1,-1301.26C4312.73,-1286.19 4507.16,-1261.76 4515,-1260 4521.14,-1258.62 4527.59,-1256.81 4533.93,-1254.9"/> +<path fill="none" stroke="black" d="M4716.72,-935.697C4717.93,-927.983 4719.39,-918.712 4720.74,-910.112"/> 
-<polygon fill="black" stroke="black" points="4535.24,-1258.15 4543.74,-1251.83 4533.15,-1251.47 4535.24,-1258.15"/>+<polygon fill="black" stroke="black" points="4724.22,-910.526 4722.31,-900.104 4717.3,-909.44 4724.22,-910.526"/>
 </g> </g>
-<!-- pnj:iruka --> +<!-- pnj:bartek&#45;&gt;lore:corpos:saeder&#45;krupp --> 
-<g id="node41" class="node"><title>pnj:iruka</title> +<g id="edge525" class="edge"><title>pnj:bartek&#45;&gt;lore:corpos:saeder&#45;krupp</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfee" cx="4196cy="-1170" rx="41.6928" ry="18"/> +<path fill="none" stroke="blackd="M4755.19,-962.16C4786.69,-969.35 4829.71,-983.062 4860,-1008 4949.88,-1082 5130,-1340.57 5130,-1457 5130,-1531 5130,-1531 5130,-1531 5130,-1659.83 5208.9,-1674.5 5238,-1800 5248.87,-1846.89 5241.07,-1860.12 5246,-1908 5246.87,-1916.44 5248.01,-1925.61 5249.12,-1933.91"/> 
-<text text-anchor="middlex="4196y="-1166.3" font-family="Times,serif" font-size="14.00">pnj:iruka</text>+<polygon fill="blackstroke="blackpoints="5245.65,-1934.41 5250.48,-1943.84 5252.59,-1933.46 5245.65,-1934.41"/>
 </g> </g>
-<!-- lore:organisations:mi&#45;seng_lung&#45;&gt;pnj:iruka --> +<!-- pnj:bartek&#45;&gt;lore:lieux:sox --> 
-<g id="edge70" class="edge"><title>lore:organisations:mi&#45;seng_lung&#45;&gt;pnj:iruka</title> +<g id="edge526" class="edge"><title>pnj:bartek&#45;&gt;lore:lieux:sox</title> 
-<path fill="none" stroke="black" d="M4136.9,-1296.33C4151.37,-1287.71 4167.48,-1275.67 4177,-1260 4188.2,-1241.56 4190.2,-1216.96 4191.11,-1198.3"/> +<path fill="none" stroke="black" d="M4693.76,-970.271C4679.76,-980.841 4660.73,-995.246 4644,-1008 4455.96,-1151.37 4433,-1225.26 4222,-1332 3966.34,-1461.33 3079.27,-1677.51 2850.28,-1732.15"/> 
-<polygon fill="black" stroke="black" points="4194.62,-1198.24 4191.58,-1188.09 4187.62,-1197.91 4194.62,-1198.24"/>+<polygon fill="black" stroke="black" points="2849.42,-1728.76 2840.51,-1734.48 2851.04,-1735.57 2849.42,-1728.76"/>
 </g> </g>
-<!-- lore:organisations:mi&#45;seng_lung&#45;&gt;pj:splenters --> +<!-- pnj:bartek&#45;&gt;lore:organisations:rote_kasern --> 
-<g id="edge78" class="edge"><title>lore:organisations:mi&#45;seng_lung&#45;&gt;pj:splenters</title> +<g id="edge530" class="edge"><title>pnj:bartek&#45;&gt;lore:organisations:rote_kasern</title> 
-<path fill="none" stroke="black" d="M4207.73,-1303.28C4236.96,-1295.67 4266.5,-1282.53 4287,-1260 4340.87,-1200.8 4328.23,-1144.63 4281,-1080 4246.52,-1032.82 4225.86,-1028.11 4171,-1008 4048.85,-963.215 3719.67,-946.603 3590,-936 3190.13,-903.301 3088.86,-916.781 2688,-900 2572.67,-895.172 2438.07,-889.199 2361.55,-885.771"/> +<path fill="none" stroke="black" d="M4682.96,-967.427C4657.31,-977.845 4620.04,-993.329 4588,-1008 4293.43,-1142.87 4227.89,-1193.5 3935,-1332 3864.51,-1365.34 3847.89,-1376.3 3775,-1404 3503.27,-1507.25 3426.19,-1518.52 3137,-1548 2800.74,-1582.28 1770.26,-1595.96 1407.76,-1599.79"/> 
-<polygon fill="black" stroke="black" points="2361.3,-882.256 2351.15,-885.305 2360.98,-889.249 2361.3,-882.256"/>+<polygon fill="black" stroke="black" points="1407.72,-1596.29 1397.76,-1599.89 1407.79,-1603.29 1407.72,-1596.29"/>
 </g> </g>
-<!-- lore:organisations:mi&#45;seng_lung&#45;&gt;pnj:jinhong --> +<!-- pnj:bartek&#45;&gt;lore:organisations:swamp_rats --> 
-<g id="edge69" class="edge"><title>lore:organisations:mi&#45;seng_lung&#45;&gt;pnj:jinhong</title> +<g id="edge529" class="edge"><title>pnj:bartek&#45;&gt;lore:organisations:swamp_rats</title> 
-<path fill="none" stroke="black" d="M4104.39,-1295.68C4101.9,-1241.39 4101.7,-1074.21 4004,-1008 3942.35,-966.225 2738.39,-975.458 2664,-972 2598.81,-968.969 2524.42,-963.869 2474.18,-960.044"/> +<path fill="none" stroke="black" d="M4726.36,-971.664C4730.42,-982.08 4734.05,-995.79 4737,-1008 4810.92,-1313.46 4888.35,-1686.95 4903.83,-1789.72"/> 
-<polygon fill="black" stroke="black" points="2474.39,-956.55 2464.15,-959.273 2473.85,-963.529 2474.39,-956.55"/>+<polygon fill="black" stroke="black" points="4900.4,-1790.45 4905.27,-1799.86 4907.33,-1789.47 4900.4,-1790.45"/>
 </g> </g>
-<!-- lore:organisations:mi&#45;seng_lung&#45;&gt;pnj:fenihilung --> +<!-- pnj:bartek&#45;&gt;pnj:niddon --> 
-<g id="edge71" class="edge"><title>lore:organisations:mi&#45;seng_lung&#45;&gt;pnj:fenihilung</title> +<g id="edge527" class="edge"><title>pnj:bartek&#45;&gt;pnj:niddon</title> 
-<path fill="none" stroke="black" d="M4148.75,-1296.98C4168.09,-1288.55 4190.14,-1276.48 4206,-1260 4240.72,-1223.93 4265.79,-1193.64 4238,-1152 4187.02,-1075.63 4079.73,-1045.86 4010.29,-1034.29"/> +<path fill="none" stroke="black" d="M4717.93,-972.027C4718.6,-998.657 4714,-1051.79 4714,-1097 4714,-1243 4714,-1243 4714,-1243 4714,-1336.1 4647.15,-1339.52 4580,-1404 4367.93,-1607.65 4281.85,-1620.91 4025,-1764 3993.4,-1781.61 3975.55,-1772.54 3952,-1800 3925.01,-1831.48 3924,-1847.53 3924,-1889 3924,-2107 3924,-2107 3924,-2107 3924,-2151.19 3899.04,-2197.46 3878.9,-2224.73"/> 
-<polygon fill="black" stroke="black" points="4010.76,-1030.82 4000.34,-1032.71 4009.66,-1037.73 4010.76,-1030.82"/>+<polygon fill="black" stroke="black" points="3875.93,-2222.85 3872.57,-2232.89 3881.46,-2227.14 3875.93,-2222.85"/>
 </g> </g>
-<!-- lore:organisations:mi&#45;seng_lung&#45;&gt;pnj:keito_lung --> +<!-- lore:objets:caisse_de_ruthenium --> 
-<g id="edge72" class="edge"><title>lore:organisations:mi&#45;seng_lung&#45;&gt;pnj:keito_lung</title> +<g id="node110" class="node" onclick="click(evt)"><title>lore:objets:caisse_de_ruthenium</title> 
-<path fill="none" stroke="blackd="M4177.17,-1299.12C4201.36,-1291.29 4226.86,-1279.06 4245,-1260 4268.07,-1235.76 4262.06,-1221.09 4267,-1188 4283.44,-1077.95 4198.5,-1043.35 4093,-1008 3986.32,-972.257 3699.83,-984.306 3588,-972 3573.37,-970.391 3557.75,-968.303 3543.11,-966.145"/> +<ellipse fill="#24cb1f" fill-opacity="0.733333" stroke="#24cb1fstroke-opacity="0.733333" cx="5126" cy="-882" rx="126.178" ry="18"/> 
-<polygon fill="blackstroke="blackpoints="3543.57,-962.675 3533.16,-964.645 3542.53,-969.597 3543.57,-962.675"/>+<text text-anchor="middlex="5126y="-878.3" font-family="Times,serif" font-size="14.00">lore:objets:caisse_de_ruthenium</text>
 </g> </g>
-<!-- pnj:yu_mi&#45;seng --> +<!-- pnj:bartek&#45;&gt;lore:objets:caisse_de_ruthenium --> 
-<g id="node61" class="node"><title>pnj:yu_mi&#45;seng</title> +<g id="edge524" class="edge"><title>pnj:bartek&#45;&gt;lore:objets:caisse_de_ruthenium</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfeecx="4107" cy="-882" rx="65.7887" ry="18"/> +<path fill="none" stroke="blackd="M4755.39,-945.968C4821.21,-934.784 4951.2,-912.699 5038.38,-897.888"/> 
-<text text-anchor="middlex="4107y="-878.3" font-family="Times,serif" font-size="14.00">pnj:yu_mi&#45;seng</text>+<polygon fill="blackstroke="blackpoints="5038.98,-901.334 5048.26,-896.209 5037.81,-894.433 5038.98,-901.334"/>
 </g> </g>
-<!-- lore:organisations:mi&#45;seng_lung&#45;&gt;pnj:yu_mi&#45;seng --> +<!-- pnj:bartek&#45;&gt;pj:splenters --> 
-<g id="edge77" class="edge"><title>lore:organisations:mi&#45;seng_lung&#45;&gt;pnj:yu_mi&#45;seng</title> +<g id="edge532" class="edge"><title>pnj:bartek&#45;&gt;pj:splenters</title> 
-<path fill="none" stroke="black" d="M4195.6,-1301.3C4271.62,-1290.79 4370.72,-1274.78 4383,-1260 4455.4,-1172.89 4416.23,-1096.06 4345,-1008 4297.62,-949.431 4215.66,-915.723 4161.3,-898.388"/> +<path fill="none" stroke="black" d="M4681.43,-941.049C4600.93,-911.892 4385.73,-836.266 4201,-792 3359.55,-590.365 2301.12,-536.079 2036.89,-525.277"/> 
-<polygon fill="black" stroke="black" points="4162.07,-894.963 4151.48,-895.339 4159.99,-901.648 4162.07,-894.963"/>+<polygon fill="black" stroke="black" points="2036.86,-521.773 2026.73,-524.867 2036.58,-528.767 2036.86,-521.773"/>
 </g> </g>
-<!-- pnj:tutoko --> +<!-- lore:organisations:rote_kasern&#45;&gt;lore:organisations:camorra --> 
-<g id="node62" class="node"><title>pnj:tutoko</title> +<g id="edge92" class="edge"><title>lore:organisations:rote_kasern&#45;&gt;lore:organisations:camorra</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfeecx="3947" cy="-1242" rx="47.3916" ry="18"/> +<path fill="none" stroke="blackd="M1281.19,-1583.96C1282.93,-1557.31 1286,-1504.15 1286,-1459 1286,-1459 1286,-1459 1286,-1385 1286,-1344.86 1278.45,-1298.9 1272.87,-1270.4"/> 
-<text text-anchor="middlex="3947y="-1238.3" font-family="Times,serif" font-size="14.00">pnj:tutoko</text>+<polygon fill="blackstroke="blackpoints="1276.26,-1269.5 1270.84,-1260.39 1269.39,-1270.88 1276.26,-1269.5"/>
 </g> </g>
-<!-- lore:organisations:mi&#45;seng_lung&#45;&gt;pnj:tutoko --> +<!-- lore:organisations:rote_kasern&#45;&gt;lore:lieux:sox --> 
-<g id="edge79" class="edge"><title>lore:organisations:mi&#45;seng_lung&#45;&gt;pnj:tutoko</title> +<g id="edge91" class="edge"><title>lore:organisations:rote_kasern&#45;&gt;lore:lieux:sox</title> 
-<path fill="none" stroke="black" d="M4064.51,-1296.94C4039.03,-1286.32 4007.07,-1272.37 3982.86,-1261.32"/> +<path fill="none" stroke="black" d="M1378.72,-1611.92C1665.61,-1638.37 2493.62,-1715.94 2731.45,-1738.67"/> 
-<polygon fill="black" stroke="black" points="3984.21,-1258.09 3973.66,-1257.09 3981.28,-1264.45 3984.21,-1258.09"/>+<polygon fill="black" stroke="black" points="2731.38,-1742.18 2741.66,-1739.65 2732.04,-1735.21 2731.38,-1742.18"/>
 </g> </g>
-<!-- lore:organisations:mi&#45;seng_lung&#45;&gt;pnj:niddon --> +<!-- lore:organisations:rote_kasern&#45;&gt;lore:lieux:zweibruecken --> 
-<g id="edge80" class="edge"><title>lore:organisations:mi&#45;seng_lung&#45;&gt;pnj:niddon</title> +<g id="edge90" class="edge"><title>lore:organisations:rote_kasern&#45;&gt;lore:lieux:zweibruecken</title> 
-<path fill="none" stroke="black" d="M4096.48,-1295.9C4089.24,-1277.18 4079.81,-1246.8 4065,-1224 4038.32,-1182.93 3995.94,-1145.03 3969.43,-1121.97"/> +<path fill="none" stroke="black" d="M1279.99,-1620.28C1278.09,-1628.2 1275.03,-1637.77 1271.63,-1646.57"/> 
-<polygon fill="black" stroke="black" points="3971.6,-1119.22 3961.75,-1115.31 3967.01,-1124.51 3971.6,-1119.22"/>+<polygon fill="black" stroke="black" points="1268.29,-1645.48 1267.69,-1656.05 1274.76,-1648.16 1268.29,-1645.48"/>
 </g> </g>
-<!-- lore:organisations:mi&#45;seng_lung&#45;&gt;lore:organisations:camorra --> +<!-- lore:lieux:europe --> 
-<g id="edge81" class="edge"><title>lore:organisations:mi&#45;seng_lung&#45;&gt;lore:organisations:camorra</title> +<g id="node69" class="node" onclick="click(evt)"><title>lore:lieux:europe</title> 
-<path fill="none" stroke="blackd="M4209.52,-1324.19C4243.4,-1327 4281.3,-1329.9 4316,-1332 4416.01,-1338.06 5122.63,-1334.36 5217,-1368 5392.49,-1430.56 5402.48,-1508.84 5552,-1620 5617.06,-1668.37 5662.39,-1655.67 5699,-1728 5807.73,-1942.81 5785.42,-2064.98 5656,-2268 5580.56,-2386.33 5225.05,-2505.82 5094,-2556 5060.83,-2568.7 5023.15,-2581.27 4992.69,-2590.98"/> +<ellipse fill="#021dcd" fill-opacity="0.733333" stroke="#021dcdstroke-opacity="0.733333" cx="3058" cy="-1530" rx="69.5877" ry="18"/> 
-<polygon fill="blackstroke="blackpoints="4991.55,-2587.67 4983.07,-2594.03 4993.66,-2594.34 4991.55,-2587.67"/>+<text text-anchor="middlex="3058y="-1526.3" font-family="Times,serif" font-size="14.00">lore:lieux:europe</text>
 </g> </g>
-<!-- lore:organisations:chrysantheme_renaissante&#45;&gt;lore:organisations:mi&#45;seng_lung --> +<!-- lore:organisations:rote_kasern&#45;&gt;lore:lieux:europe --> 
-<g id="edge473" class="edge"><title>lore:organisations:chrysantheme_renaissante&#45;&gt;lore:organisations:mi&#45;seng_lung</title> +<g id="edge89" class="edge"><title>lore:organisations:rote_kasern&#45;&gt;lore:lieux:europe</title> 
-<path fill="none" stroke="black" d="M2801.19,-603.133C3240.17,-631.369 4510,-743.589 4510,-1097 4510,-1171 4510,-1171 4510,-1171 4510,-1225.09 4474.67,-1234.44 4427,-1260 4407.58,-1270.42 4292.24,-1287.91 4205.56,-1299.93"/> +<path fill="none" stroke="black" d="M1392.91,-1596.55C1725.59,-1583.46 2696.46,-1545.23 2979.62,-1534.09"/> 
-<polygon fill="black" stroke="black" points="4204.83,-1296.5 4195.41,-1301.34 4205.79,-1303.44 4204.83,-1296.5"/>+<polygon fill="black" stroke="black" points="2979.95,-1537.58 2989.8,-1533.68 2979.67,-1530.58 2979.95,-1537.58"/>
 </g> </g>
-<!-- lore:organisations:chrysantheme_renaissante&#45;&gt;pnj:gin --> +<!-- pnj:obrennan&#45;&gt;lore:organisations:rote_kasern --> 
-<g id="edge474" class="edge"><title>lore:organisations:chrysantheme_renaissante&#45;&gt;pnj:gin</title> +<g id="edge381" class="edge"><title>pnj:obrennan&#45;&gt;lore:organisations:rote_kasern</title> 
-<path fill="none" stroke="black" d="M2786.37,-582.596C2997.36,-566.391 3399.66,-535.963 3533.51,-526.142"/> +<path fill="none" stroke="black" d="M959.731,-612.035C958.281,-643.782 959.563,-712.689 993,-756 1009.95,-777.962 1021.41,-775.894 1044,-792 1221.2,-918.331 1341.4,-885.993 1440,-1080 1530.81,-1258.69 1361.78,-1498.4 1300.75,-1575.79"/> 
-<polygon fill="black" stroke="black" points="3534.07,-529.611 3543.79,-525.39 3533.56,-522.63 3534.07,-529.611"/>+<polygon fill="black" stroke="black" points="1297.7,-1574 1294.2,-1584 1303.17,-1578.37 1297.7,-1574"/>
 </g> </g>
-<!-- lore:planques:box_m1&#45;&gt;lore:lieux:munich --> +<!-- pnj:obrennan&#45;&gt;lore:organisations:ira --> 
-<g id="edge194" class="edge"><title>lore:planques:box_m1&#45;&gt;lore:lieux:munich</title> +<g id="edge383" class="edge"><title>pnj:obrennan&#45;&gt;lore:organisations:ira</title> 
-<path fill="none" stroke="black" d="M2571.58,-1173.49C2437.72,-1182.72 2201,-1222.22 2201,-1385 2201,-2035 2201,-2035 2201,-2035 2201,-2202.51 2000.38,-2148.94 1937,-2304 1930.95,-2318.81 1931.12,-2325.12 1937,-2340 1969.26,-2421.58 1993.83,-2444.19 2072,-2484 2129.34,-2513.2 2303.66,-2527.16 2407.3,-2533.13"/> +<path fill="none" stroke="black" d="M967.655,-611.975C975.696,-645.204 989.662,-718.828 1035,-756 1039,-759.283 1157.17,-780.803 1236.49,-795.392"/> 
-<polygon fill="black" stroke="black" points="2407.23,-2536.63 2417.41,-2533.7 2407.62,-2529.64 2407.23,-2536.63"/>+<polygon fill="black" stroke="black" points="1235.97,-798.855 1246.44,-797.224 1237.24,-791.971 1235.97,-798.855"/>
 </g> </g>
-<!-- lore:planques:box_m1&#45;&gt;pnj:stocks --> +<!-- lore:lieux:dublin --> 
-<g id="edge196" class="edge"><title>lore:planques:box_m1&#45;&gt;pnj:stocks</title> +<g id="node51" class="node" onclick="click(evt)"><title>lore:lieux:dublin</title> 
-<path fill="none" stroke="blackd="M2684.72,-1152.59C2702.68,-1141.96 2727.56,-1128.1 2748.34,-1117.15"/> +<ellipse fill="#021dcd" fill-opacity="0.733333" stroke="#021dcdstroke-opacity="0.733333" cx="1136" cy="-666" rx="67.6881" ry="18"/> 
-<polygon fill="blackstroke="blackpoints="2750.01,-1120.22 2757.26,-1112.49 2746.77,-1114.01 2750.01,-1120.22"/>+<text text-anchor="middlex="1136y="-662.3" font-family="Times,serif" font-size="14.00">lore:lieux:dublin</text>
 </g> </g>
-<!-- lore:planques:box_m1&#45;&gt;pnj:leik --> +<!-- pnj:obrennan&#45;&gt;lore:lieux:dublin --> 
-<g id="edge195" class="edge"><title>lore:planques:box_m1&#45;&gt;pnj:leik</title> +<g id="edge382" class="edge"><title>pnj:obrennan&#45;&gt;lore:lieux:dublin</title> 
-<path fill="none" stroke="black" d="M2650.07,-1152.09C2642.75,-1133.8 2633.74,-1104.03 2622,-1080 2617.45,-1070.69 2611.52,-1061.07 2606.29,-1052.62"/> +<path fill="none" stroke="black" d="M998.563,-607.877C1026.85,-618.566 1065.46,-633.919 1094.62,-646.017"/> 
-<polygon fill="black" stroke="black" points="2609.2,-1050.67 2600.98,-1043.99 2603.24,-1054.34 2609.2,-1050.67"/>+<polygon fill="black" stroke="black" points="1093.54,-649.358 1104.12,-649.983 1096.24,-642.899 1093.54,-649.358"/>
 </g> </g>
-<!-- lore:planques:box_m1&#45;&gt;lore:corpos:gomorrah --> +<!-- lore:bars:posthaus&#45;&gt;pnj:valentinpragault --> 
-<g id="edge193" class="edge"><title>lore:planques:box_m1&#45;&gt;lore:corpos:gomorrah</title> +<g id="edge321" class="edge"><title>lore:bars:posthaus&#45;&gt;pnj:valentinpragault</title> 
-<path fill="none" stroke="black" d="M2673.07,-1152.06C2686.36,-1133.74 2708.69,-1103.95 2730,-1080 2738.73,-1070.19 2748.88,-1059.95 2758.01,-1051.12"/> +<path fill="none" stroke="black" d="M964.609,-968.637C998.071,-979.5 1043.3,-994.809 1077.25,-1006.73"/> 
-<polygon fill="black" stroke="black" points="2760.57,-1053.52 2765.38,-1044.08 2755.73,-1048.46 2760.57,-1053.52"/>+<polygon fill="black" stroke="black" points="1076.35,-1010.13 1086.95,-1010.15 1078.68,-1003.53 1076.35,-1010.13"/>
 </g> </g>
-<!-- lore:planques:box_m1&#45;&gt;lore:objets:nanoforge --> +<!-- lore:bars:posthaus&#45;&gt;lore:lieux:zweibruecken --> 
-<g id="edge191" class="edge"><title>lore:planques:box_m1&#45;&gt;lore:objets:nanoforge</title> +<g id="edge323" class="edge"><title>lore:bars:posthaus&#45;&gt;lore:lieux:zweibruecken</title> 
-<path fill="none" stroke="black" d="M2731.04,-1181.59C2809.72,-1194.04 2936.74,-1214.7 3016.99,-1228.08"/> +<path fill="none" stroke="black" d="M876.149,-969.021C854.468,-977.697 828.831,-990.552 810,-1008 776.395,-1039.14 758,-1051.19 758,-1097 758,-1171 758,-1171 758,-1171 758,-1297.37 1000.41,-1552.12 1107,-1620 1132.27,-1636.09 1163.06,-1648.09 1190.08,-1656.57"/> 
-<polygon fill="black" stroke="black" points="3016.59,-1231.56 3027.03,-1229.75 3017.74,-1224.65 3016.59,-1231.56"/>+<polygon fill="black" stroke="black" points="1189.26,-1659.98 1199.85,-1659.53 1191.29,-1653.28 1189.26,-1659.98"/>
 </g> </g>
-<!-- lore:planques:box_m1&#45;&gt;pnj:fgf --> +<!-- lore:bars:posthaus&#45;&gt;lore:organisations:rote_kasern --> 
-<g id="edge192" class="edge"><title>lore:planques:box_m1&#45;&gt;pnj:fgf</title> +<g id="edge322" class="edge"><title>lore:bars:posthaus&#45;&gt;lore:organisations:rote_kasern</title> 
-<path fill="none" stroke="black" d="M2645.06,-1152.28C2626.12,-1133.06 2592.9,-1101.43 2560,-1080 2496.02,-1038.32 2477.67,-1028.08 2404,-1008 2380.69,-1001.65 2041.58,-970.227 1918.89,-958.998"/> +<path fill="none" stroke="black" d="M890.781,-970.923C854.468,-993.747 796,-1039.43 796,-1097 796,-1171 796,-1171 796,-1171 796,-1290.58 1083.5,-1477.38 1180,-1548 1196.74,-1560.25 1216.69,-1571.42 1234.34,-1580.3"/> 
-<polygon fill="black" stroke="black" points="1919.01,-955.494 1908.73,-958.069 1918.37,-962.465 1919.01,-955.494"/>+<polygon fill="black" stroke="black" points="1232.82,-1583.45 1243.34,-1584.74 1235.92,-1577.17 1232.82,-1583.45"/>
 </g> </g>
-<!-- lore:corpos:gomorrah&#45;&gt;lore:lieux:munich --> +<!-- lore:organisations:ira&#45;&gt;lore:lieux:tir_na_nog --> 
-<g id="edge247" class="edge"><title>lore:corpos:gomorrah&#45;&gt;lore:lieux:munich</title> +<g id="edge49" class="edge"><title>lore:organisations:ira&#45;&gt;lore:lieux:tir_na_nog</title> 
-<path fill="none" stroke="black" d="M2811.32,-1043.34C2823.76,-1052.41 2837.2,-1064.92 2844,-1080 2850.58,-1094.59 2848.54,-1100.66 2844,-1116 2827.78,-1170.85 2797.28,-1171.75 2774,-1224 2757.32,-1261.42 2750,-1272.03 2750,-1313 2750,-1531 2750,-1531 2750,-1531 2750,-1799.9 2795.67,-1865.58 2870,-2124 2903.09,-2239.03 2943.54,-2258.25 2965,-2376 2973.65,-2423.47 2988.77,-2450.55 2954,-2484 2926.66,-2510.3 2692.61,-2526.36 2566.6,-2533.18"/> +<path fill="none" stroke="black" d="M1234.64,-819.622C1117.95,-833.007 889.013,-858.65 765.556,-872.164"/> 
-<polygon fill="black" stroke="black" points="2566.4,-2529.68 2556.6,-2533.71 2566.77,-2536.67 2566.4,-2529.68"/>+<polygon fill="black" stroke="black" points="764.959,-868.709 755.398,-873.275 765.72,-875.667 764.959,-868.709"/>
 </g> </g>
-<!-- pj:roland --> +<!-- lore:organisations:ira&#45;&gt;pnj:obrennan --> 
-<g id="node87" class="node"><title>pj:roland</title> +<g id="edge46" class="edge"><title>lore:organisations:ira&#45;&gt;pnj:obrennan</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfee" cx="2118cy="-954" rx="42.4939" ry="18"/> +<path fill="none" stroke="blackd="M1241.27,-798.456C1156.97,-784.03 1021.29,-759.521 1017,-756 975.912,-722.312 960.59,-658.688 957.969,-622.322"/> 
-<text text-anchor="middlex="2118y="-950.3" font-family="Times,serif" font-size="14.00">pj:roland</text>+<polygon fill="blackstroke="blackpoints="961.452,-621.825 957.549,-611.975 954.458,-622.109 961.452,-621.825"/>
 </g> </g>
-<!-- lore:corpos:gomorrah&#45;&gt;pj:roland --> +<!-- pnj:elephant --> 
-<g id="edge248" class="edge"><title>lore:corpos:gomorrah&#45;&gt;pj:roland</title> +<g id="node45" class="node" onclick="click(evt)"><title>pnj:elephant</title> 
-<path fill="none" stroke="blackd="M2709.81,-1015.93C2687.68,-1013.29 2663.37,-1010.46 2641,-1008 2467.87,-988.939 2262.21,-968.842 2168.74,-959.848"/> +<ellipse fill="#e5b030" fill-opacity="0.733333" stroke="#e5b030stroke-opacity="0.733333" cx="1136" cy="-594" rx="53.8905" ry="18"/> 
-<polygon fill="blackstroke="blackpoints="2169,-956.356 2158.71,-958.883 2168.33,-963.324 2169,-956.356"/>+<text text-anchor="middlex="1136y="-590.3" font-family="Times,serif" font-size="14.00">pnj:elephant</text>
 </g> </g>
-<!-- lore:corpos:aztechnology --> +<!-- lore:organisations:ira&#45;&gt;pnj:elephant --> 
-<g id="node126" class="node"><title>lore:corpos:aztechnology</title> +<g id="edge47" class="edge"><title>lore:organisations:ira&#45;&gt;pnj:elephant</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfeecx="2784" cy="-954" rx="102.082" ry="18"/> +<path fill="none" stroke="blackd="M1341.55,-793.383C1357.39,-784.998 1374.59,-772.844 1384,-756 1391.8,-742.03 1392.01,-733.852 1384,-720 1344.1,-650.969 1253.02,-619.347 1192.96,-605.371"/> 
-<text text-anchor="middlex="2784y="-950.3" font-family="Times,serif" font-size="14.00">lore:corpos:aztechnology</text>+<polygon fill="blackstroke="blackpoints="1193.39,-601.88 1182.87,-603.119 1191.87,-608.712 1193.39,-601.88"/>
 </g> </g>
-<!-- lore:corpos:gomorrah&#45;&gt;lore:corpos:aztechnology --> +<!-- lore:bars:the_hole_in_the_wall --> 
-<g id="edge246" class="edge"><title>lore:corpos:gomorrah&#45;&gt;lore:corpos:aztechnology</title> +<g id="node46" class="node" onclick="click(evt)"><title>lore:bars:the_hole_in_the_wall</title> 
-<path fill="none" stroke="blackd="M2778.08,-1007.7C2777.29,-999.983 2777.06,-990.712 2777.4,-982.112"/> +<ellipse fill="#6b706f" fill-opacity="0.733333" stroke="#6b706fstroke-opacity="0.733333" cx="1264" cy="-738" rx="120.479" ry="18"/> 
-<polygon fill="blackstroke="blackpoints="2780.9,-982.324 2778.1,-972.104 2773.92,-981.836 2780.9,-982.324"/>+<text text-anchor="middlex="1264y="-734.3" font-family="Times,serif" font-size="14.00">lore:bars:the_hole_in_the_wall</text>
 </g> </g>
-<!-- lore:objets:nanoforge&#45;&gt;lore:planques:box_m1 --> +<!-- lore:organisations:ira&#45;&gt;lore:bars:the_hole_in_the_wall --> 
-<g id="edge95" class="edge"><title>lore:objets:nanoforge&#45;&gt;lore:planques:box_m1</title> +<g id="edge48" class="edge"><title>lore:organisations:ira&#45;&gt;lore:bars:the_hole_in_the_wall</title> 
-<path fill="none" stroke="black" d="M3022.6,-1230.67C2944.65,-1218.34 2817.74,-1197.71 2736.83,-1184.23"/> +<path fill="none" stroke="black" d="M1290.71,-792.055C1284.91,-784.007 1278.67,-774.205 1273.55,-765.226"/> 
-<polygon fill="black" stroke="black" points="2737.15,-1180.73 2726.71,-1182.54 2735.99,-1187.64 2737.15,-1180.73"/>+<polygon fill="black" stroke="black" points="1276.54,-763.398 1268.7,-756.275 1270.39,-766.735 1276.54,-763.398"/>
 </g> </g>
-<!-- lore:objets:nanoforge&#45;&gt;lore:corpos:gomorrah --> +<!-- pj:ankou&#45;&gt;lore:lieux:tir_na_nog --> 
-<g id="edge93" class="edge"><title>lore:objets:nanoforge&#45;&gt;lore:corpos:gomorrah</title> +<g id="edge391" class="edge"><title>pj:ankou&#45;&gt;lore:lieux:tir_na_nog</title> 
-<path fill="none" stroke="black" d="M3101.71,-1223.87C3111.66,-1205.64 3123.61,-1176.17 3114,-1152 3097.74,-1111.1 3084.48,-1101.36 3046,-1080 2995.22,-1051.81 2931.47,-1038.52 2879.57,-1032.29"/> +<path fill="none" stroke="black" d="M1024.3,-941.673C1017.97,-939.591 1011.31,-937.58 1005,-936 924.154,-915.771 829.935,-901.325 764.196,-892.676"/> 
-<polygon fill="black" stroke="black" points="2879.68,-1028.78 2869.35,-1031.14 2878.9,-1035.74 2879.68,-1028.78"/>+<polygon fill="black" stroke="black" points="764.264,-889.155 753.897,-891.338 763.362,-896.097 764.264,-889.155"/>
 </g> </g>
-<!-- lore:objets:nanoforge&#45;&gt;lore:corpos:ares --> +<!-- pj:ankou&#45;&gt;lore:organisations:rote_kasern --> 
-<g id="edge92" class="edge"><title>lore:objets:nanoforge&#45;&gt;lore:corpos:ares</title> +<g id="edge392" class="edge"><title>pj:ankou&#45;&gt;lore:organisations:rote_kasern</title> 
-<path fill="none" stroke="black" d="M3012.29,-1234.26C2854.84,-1220.77 2502.99,-1190.62 2348.81,-1177.41"/> +<path fill="none" stroke="black" d="M1048.8,-972.17C1045.06,-982.537 1040.23,-996.017 1036,-1008 1024.73,-1039.94 1016.63,-1046.6 1011,-1080 1003.01,-1127.35 1005.03,-1140.83 1014,-1188 1048.23,-1368.02 1092.12,-1412.06 1215,-1548 1224.73,-1558.76 1236.72,-1569.17 1247.75,-1577.87"/> 
-<polygon fill="black" stroke="black" points="2348.76,-1173.89 2338.5,-1176.53 2348.16,-1180.87 2348.76,-1173.89"/>+<polygon fill="black" stroke="black" points="1245.88,-1580.85 1255.95,-1584.18 1250.15,-1575.3 1245.88,-1580.85"/>
 </g> </g>
-<!-- lore:objets:nanoforge&#45;&gt;lore:organisations:swamp_rats --> +<!-- pnj:jamestelestrian --> 
-<g id="edge94" class="edge"><title>lore:objets:nanoforge&#45;&gt;lore:organisations:swamp_rats</title> +<g id="node36" class="node" onclick="click(evt)"><title>pnj:jamestelestrian</title> 
-<path fill="none" stroke="blackd="M3130.46,-1258.06C3256.99,-1310.16 3659.25,-1492.54 3931,-1728 4041.4,-1823.66 4039.66,-1875.77 4142,-1980 4151.85,-1990.03 4163.34,-2000.33 4173.13,-2009.15"/> +<ellipse fill="#e5b030" fill-opacity="0.733333" stroke="#e5b030stroke-opacity="0.733333" cx="6835" cy="-1962" rx="76.0865" ry="18"/> 
-<polygon fill="blackstroke="blackpoints="4170.79,-2011.76 4180.55,-2015.87 4175.49,-2006.57 4170.79,-2011.76"/>+<text text-anchor="middlex="6835y="-1958.3" font-family="Times,serif" font-size="14.00">pnj:jamestelestrian</text>
 </g> </g>
-<!-- lore:organisations:fon&#45;&gt;lore:organisations:mi&#45;seng_lung --> +<!-- pnj:thomastelestrian --> 
-<g id="edge34" class="edge"><title>lore:organisations:fon&#45;&gt;lore:organisations:mi&#45;seng_lung</title> +<g id="node37" class="node" onclick="click(evt)"><title>pnj:thomastelestrian</title> 
-<path fill="none" stroke="blackd="M3494.08,-1250.47C3617.95,-1262.72 3859.62,-1287.18 3999.68,-1301.61"/> +<ellipse fill="#e5b030" fill-opacity="0.733333" stroke="#e5b030stroke-opacity="0.733333" cx="6773" cy="-1890" rx="81.7856" ry="18"/> 
-<polygon fill="blackstroke="blackpoints="3999.69,-1305.13 4010,-1302.67 4000.41,-1298.16 3999.69,-1305.13"/>+<text text-anchor="middlex="6773y="-1886.3" font-family="Times,serif" font-size="14.00">pnj:thomastelestrian</text>
 </g> </g>
-<!-- pnj:monsieur_j --> +<!-- pnj:jamestelestrian&#45;&gt;pnj:thomastelestrian --> 
-<g id="node39" class="node"><title>pnj:monsieur_j</title> +<g id="edge36" class="edge"><title>pnj:jamestelestrian&#45;&gt;pnj:thomastelestrian</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfee" cx="3402cy="-1170" rx="63.8893" ry="18"/> +<path fill="none" stroke="blackd="M6814.47,-1944.41C6806.01,-1935.91 6796.46,-1925.37 6788.57,-1915.91"/> 
-<text text-anchor="middlex="3402y="-1166.3" font-family="Times,serif" font-size="14.00">pnj:monsieur_j</text>+<polygon fill="blackstroke="blackpoints="6791.15,-1913.53 6782.14,-1907.96 6785.7,-1917.93 6791.15,-1913.53"/>
 </g> </g>
-<!-- lore:organisations:fon&#45;&gt;pnj:monsieur_j --> +<!-- lore:lieux:tir_tairngire --> 
-<g id="edge33" class="edge"><title>lore:organisations:fon&#45;&gt;pnj:monsieur_j</title> +<g id="node38" class="node" onclick="click(evt)"><title>lore:lieux:tir_tairngire</title> 
-<path fill="none" stroke="blackd="M3406.73,-1224.05C3404.37,-1216.35 3402.27,-1207.03 3400.87,-1198.36"/> +<ellipse fill="#021dcd" fill-opacity="0.733333" stroke="#021dcdstroke-opacity="0.733333" cx="6892" cy="-1818" rx="85.5853" ry="18"/> 
-<polygon fill="blackstroke="blackpoints="3404.32,-1197.73 3399.54,-1188.28 3397.37,-1198.65 3404.32,-1197.73"/>+<text text-anchor="middlex="6892y="-1814.3" font-family="Times,serif" font-size="14.00">lore:lieux:tir_tairngire</text>
 </g> </g>
-<!-- pnj:monsieur_j&#45;&gt;lore:lieux:munich --> +<!-- pnj:jamestelestrian&#45;&gt;lore:lieux:tir_tairngire --> 
-<g id="edge435" class="edge"><title>pnj:monsieur_j&#45;&gt;lore:lieux:munich</title> +<g id="edge37" class="edge"><title>pnj:jamestelestrian&#45;&gt;lore:lieux:tir_tairngire</title> 
-<path fill="none" stroke="black" d="M3368.14,-1185.32C3351.08,-1194.15 3331.44,-1207.04 3319,-1224 3196.76,-1390.65 3198,-1466.33 3198,-1673 3198,-1747 3198,-1747 3198,-1747 3198,-1925.28 2797.89,-2227 2700,-2376 2670.08,-2421.54 2683.54,-2448.75 2642,-2484 2617.65,-2504.67 2584.83,-2517.4 2555.67,-2525.18"/> +<path fill="none" stroke="black" d="M6837.68,-1943.76C6842.49,-1933.6 6849.74,-1920.35 6855,-1908 6863.69,-1887.6 6871.09,-1863.57 6877.48,-1845.62"/> 
-<polygon fill="black" stroke="black" points="2554.77,-2521.8 2545.93,-2527.64 2556.48,-2528.59 2554.77,-2521.8"/>+<polygon fill="black" stroke="black" points="6880.82,-1846.68 6881.02,-1836.09 6874.26,-1844.24 6880.82,-1846.68"/>
 </g> </g>
-<!-- pnj:monsieur_j&#45;&gt;lore:organisations:fon --> +<!-- lore:corpos:telestrian --> 
-<g id="edge436" class="edge"><title>pnj:monsieur_j&#45;&gt;lore:organisations:fon</title> +<g id="node39" class="node" onclick="click(evt)"><title>lore:corpos:telestrian</title> 
-<path fill="none" stroke="blackd="M3411.32,-1188.1C3413.66,-1195.79 3415.75,-1205.05 3417.14,-1213.67"/> +<ellipse fill="#41c2b5" fill-opacity="0.733333" stroke="#41c2b5stroke-opacity="0.733333" cx="6787" cy="-2034" rx="85.5853" ry="18"/> 
-<polygon fill="blackstroke="blackpoints="3413.68,-1214.24 3418.46,-1223.7 3420.62,-1213.33 3413.68,-1214.24"/>+<text text-anchor="middlex="6787y="-2030.3" font-family="Times,serif" font-size="14.00">lore:corpos:telestrian</text>
 </g> </g>
-<!-- pnj:ono&#45;&gt;lore:lieux:munich --> +<!-- pnj:jamestelestrian&#45;&gt;lore:corpos:telestrian --> 
-<g id="edge36" class="edge"><title>pnj:ono&#45;&gt;lore:lieux:munich</title> +<g id="edge38" class="edge"><title>pnj:jamestelestrian&#45;&gt;lore:corpos:telestrian</title> 
-<path fill="none" stroke="black" d="M4540.38,-1249.16C4479.33,-1259.91 4357.3,-1282.23 4316,-1296 4280.54,-1307.82 4274.51,-1317.65 4240,-1332 4196.38,-1350.13 4174.84,-1336.1 4140,-1368 4003.46,-1493.02 3873.44,-1958.74 3790,-2124 3778.75,-2146.28 3682,-2296.04 3682,-2321 3682,-2395 3682,-2395 3682,-2395 3682,-2438.74 3676.4,-2459.74 3640,-2484 3595.52,-2513.65 2823.88,-2530.7 2568.4,-2535.55"/> +<path fill="none" stroke="black" d="M6829.07,-1980.28C6824.2,-1988.63 6817.42,-1998.81 6810.65,-2007.99"/> 
-<polygon fill="black" stroke="black" points="2568.01,-2532.06 2558.08,-2535.74 2568.14,-2539.05 2568.01,-2532.06"/>+<polygon fill="black" stroke="black" points="6807.78,-2005.98 6804.5,-2016.05 6813.35,-2010.23 6807.78,-2005.98"/>
 </g> </g>
-<!-- pnj:ono&#45;&gt;lore:organisations:mi&#45;seng_lung --> +<!-- pnj:thomastelestrian&#45;&gt;pnj:jamestelestrian --> 
-<g id="edge35" class="edge"><title>pnj:ono&#45;&gt;lore:organisations:mi&#45;seng_lung</title> +<g id="edge85" class="edge"><title>pnj:thomastelestrian&#45;&gt;pnj:jamestelestrian</title> 
-<path fill="none" stroke="black" d="M4550.17,-1255.35C4544.56,-1257.1 4538.65,-1258.73 4533,-1260 4525.23,-1261.75 4334.1,-1285.76 4210.48,-1300.86"/> +<path fill="none" stroke="black" d="M6793.73,-1907.79C6802.16,-1916.28 6811.64,-1926.75 6819.48,-1936.15"/> 
-<polygon fill="black" stroke="black" points="4209.72,-1297.43 4200.21,-1302.11 4210.56,-1304.37 4209.72,-1297.43"/>+<polygon fill="black" stroke="black" points="6816.86,-1938.48 6825.87,-1944.05 6822.31,-1934.08 6816.86,-1938.48"/>
 </g> </g>
-<!-- pnj:ono&#45;&gt;pnj:iruka --> +<!-- pnj:thomastelestrian&#45;&gt;lore:lieux:tir_tairngire --> 
-<g id="edge37" class="edge"><title>pnj:ono&#45;&gt;pnj:iruka</title> +<g id="edge86" class="edge"><title>pnj:thomastelestrian&#45;&gt;lore:lieux:tir_tairngire</title> 
-<path fill="none" stroke="black" d="M4540.93,-1234.54C4472.44,-1221.92 4320.85,-1194 4243.46,-1179.74"/> +<path fill="none" stroke="black" d="M6795.08,-1872.59C6810.64,-1862.8 6831.81,-1850.27 6850.43,-1839.79"/> 
-<polygon fill="black" stroke="black" points="4243.97,-1176.28 4233.5,-1177.91 4242.7,-1183.16 4243.97,-1176.28"/>+<polygon fill="black" stroke="black" points="6852.31,-1842.75 6859.34,-1834.83 6848.9,-1836.63 6852.31,-1842.75"/>
 </g> </g>
-<!-- pnj:iruka&#45;&gt;lore:lieux:munich --> +<!-- pnj:thomastelestrian&#45;&gt;lore:corpos:telestrian --> 
-<g id="edge498" class="edge"><title>pnj:iruka&#45;&gt;lore:lieux:munich</title> +<g id="edge87" class="edge"><title>pnj:thomastelestrian&#45;&gt;lore:corpos:telestrian</title> 
-<path fill="none" stroke="black" d="M4155.25,-1174C4082.46,-1180.02 3933.68,-1195.49 3891,-1224 3699.97,-1351.58 3635,-1443.29 3635,-1673 3635,-1747 3635,-1747 3635,-1747 3635,-1844.38 3682,-1863.62 3682,-1961 3682,-2035 3682,-2035 3682,-2035 3682,-2168.8 3588,-2187.2 3588,-2321 3588,-2395 3588,-2395 3588,-2395 3588,-2437.67 3586.78,-2459.27 3552,-2484 3512.07,-2512.39 2809.82,-2530.07 2568.02,-2535.34"/> +<path fill="none" stroke="black" d="M6769.56,-1908.21C6762.51,-1926.25 6751.24,-1955.34 6759,-1980 6762.07,-1989.75 6767.63,-1999.27 6773.13,-2007.49"/> 
-<polygon fill="black" stroke="black" points="2567.81,-2531.84 2557.89,-2535.56 2567.96,-2538.84 2567.81,-2531.84"/>+<polygon fill="black" stroke="black" points="6770.36,-2009.63 6778.94,-2015.85 6776.1,-2005.64 6770.36,-2009.63"/>
 </g> </g>
-<!-- pnj:iruka&#45;&gt;lore:organisations:mi&#45;seng_lung --> +<!-- lore:lieux:tir_tairngire&#45;&gt;pnj:jamestelestrian --> 
-<g id="edge497" class="edge"><title>pnj:iruka&#45;&gt;lore:organisations:mi&#45;seng_lung</title> +<g id="edge385" class="edge"><title>lore:lieux:tir_tairngire&#45;&gt;pnj:jamestelestrian</title> 
-<path fill="none" stroke="black" d="M4204.6,-1187.74C4208.63,-1206.7 4208.48,-1237.81 4195,-1260 4186.98,-1273.2 4174.28,-1283.83 4160.95,-1292"/> +<path fill="none" stroke="black" d="M6894.37,-1836.09C6891.87,-1854.27 6883.35,-1883.71 6873,-1908 6869.03,-1917.31 6863.94,-1927.13 6858.65,-1935.76"/> 
-<polygon fill="black" stroke="black" points="4159.09,-1289.03 4152.14,-1297.02 4162.56,-1295.11 4159.09,-1289.03"/>+<polygon fill="black" stroke="black" points="6855.64,-1933.95 6853.1,-1944.24 6861.5,-1937.78 6855.64,-1933.95"/>
 </g> </g>
-<!-- pnj:iruka&#45;&gt;pnj:yu_mi&#45;seng --> +<!-- lore:lieux:tir_tairngire&#45;&gt;pnj:thomastelestrian --> 
-<g id="edge499" class="edge"><title>pnj:iruka&#45;&gt;pnj:yu_mi&#45;seng</title> +<g id="edge384" class="edge"><title>lore:lieux:tir_tairngire&#45;&gt;pnj:thomastelestrian</title> 
-<path fill="none" stroke="black" d="M4190.7,-1151.97C4175.8,-1104.08 4133.44,-967.98 4115.36,-909.852"/> +<path fill="none" stroke="black" d="M6869.57,-1835.63C6853.97,-1845.44 6832.86,-1857.93 6814.31,-1868.36"/> 
-<polygon fill="black" stroke="black" points="4118.59,-908.453 4112.27,-899.945 4111.9,-910.533 4118.59,-908.453"/>+<polygon fill="black" stroke="black" points="6812.48,-1865.37 6805.45,-1873.29 6815.89,-1871.49 6812.48,-1865.37"/>
 </g> </g>
-<!-- pnj:iruka&#45;&gt;pnj:niddon --> +<!-- lore:lieux:tir_tairngire&#45;&gt;lore:corpos:telestrian --> 
-<g id="edge496" class="edge"><title>pnj:iruka&#45;&gt;pnj:niddon</title> +<g id="edge386" class="edge"><title>lore:lieux:tir_tairngire&#45;&gt;lore:corpos:telestrian</title> 
-<path fill="none" stroke="black" d="M4162.02,-1159.49C4118.56,-1147.32 4043.02,-1126.17 3993.78,-1112.38"/> +<path fill="none" stroke="black" d="M6907.64,-1836.19C6928.86,-1867.6 6959.41,-1935.15 6929,-1980 6915.02,-2000.61 6891.61,-2013.21 6867.76,-2020.91"/> 
-<polygon fill="black" stroke="black" points="3994.57,-1108.96 3983.99,-1109.64 3992.68,-1115.7 3994.57,-1108.96"/>+<polygon fill="black" stroke="black" points="6866.49,-2017.63 6857.89,-2023.82 6868.48,-2024.34 6866.49,-2017.63"/>
 </g> </g>
-<!-- lore:gangs:jerenton&#45;&gt;lore:lieux:munich --> +<!-- lore:corpos:telestrian&#45;&gt;lore:corpos:saeder&#45;krupp --> 
-<g id="edge38" class="edge"><title>lore:gangs:jerenton&#45;&gt;lore:lieux:munich</title> +<g id="edge464" class="edge"><title>lore:corpos:telestrian&#45;&gt;lore:corpos:saeder&#45;krupp</title> 
-<path fill="none" stroke="black" d="M1279.6,-2477.7C1293.23,-2480.14 1307.61,-2482.47 1321,-2484 1726.15,-2530.35 2214.22,-2536.64 2405.02,-2537.16"/> +<path fill="none" stroke="black" d="M6704.25,-2029.22C6445.33,-2017.41 5650.64,-1981.15 5360.49,-1967.9"/> 
-<polygon fill="black" stroke="black" points="2405.24,-2540.66 2415.25,-2537.19 2405.26,-2533.66 2405.24,-2540.66"/>+<polygon fill="black" stroke="black" points="5360.53,-1964.4 5350.38,-1967.44 5360.21,-1971.4 5360.53,-1964.4"/>
 </g> </g>
-<!-- lore:gangs:jerenton&#45;&gt;lore:gangs:1thundershock --> +<!-- lore:corpos:telestrian&#45;&gt;lore:lieux:zurich --> 
-<g id="edge39" class="edge"><title>lore:gangs:jerenton&#45;&gt;lore:gangs:1thundershock</title> +<g id="edge467" class="edge"><title>lore:corpos:telestrian&#45;&gt;lore:lieux:zurich</title> 
-<path fill="none" stroke="black" d="M1241.14,-2448.59C1255.8,-2439.02 1275.65,-2426.85 1293.37,-2416.52"/> +<path fill="none" stroke="black" d="M6758.24,-2016.94C6721.61,-1994.12 6663,-1948.6 6663,-1891 6663,-1891 6663,-1891 6663,-449 6663,-408.031 6670.45,-386.257 6639,-360 6597.36,-325.239 6244.45,-312.56 6085.76,-308.587"/> 
-<polygon fill="black" stroke="black" points="1295.48,-2419.34 1302.4,-2411.31 1291.99,-2413.27 1295.48,-2419.34"/>+<polygon fill="black" stroke="black" points="6085.67,-305.084 6075.59,-308.338 6085.5,-312.082 6085.67,-305.084"/>
 </g> </g>
-<!-- lore:gangs:1thundershock&#45;&gt;lore:lieux:munich --> +<!-- lore:corpos:telestrian&#45;&gt;pnj:jamestelestrian --> 
-<g id="edge367" class="edge"><title>lore:gangs:1thundershock&#45;&gt;lore:lieux:munich</title> +<g id="edge465" class="edge"><title>lore:corpos:telestrian&#45;&gt;pnj:jamestelestrian</title> 
-<path fill="none" stroke="black" d="M1342.21,-2412.05C1347.09,-2432.84 1354.12,-2467.27 1377,-2484 1418.54,-2514.38 2156.54,-2530.76 2405.68,-2535.52"/> +<path fill="none" stroke="black" d="M6792.95,-2015.7C6797.86,-2007.27 6804.73,-1996.97 6811.56,-1987.73"/> 
-<polygon fill="black" stroke="black" points="2405.69,-2539.02 2415.76,-2535.71 2405.82,-2532.02 2405.69,-2539.02"/>+<polygon fill="black" stroke="black" points="6814.46,-1989.69 6817.76,-1979.62 6808.9,-1985.44 6814.46,-1989.69"/>
 </g> </g>
-<!-- lore:gangs:1thundershock&#45;&gt;lore:gangs:jerenton --> +<!-- lore:corpos:telestrian&#45;&gt;pnj:thomastelestrian --> 
-<g id="edge366" class="edge"><title>lore:gangs:1thundershock&#45;&gt;lore:gangs:jerenton</title> +<g id="edge466" class="edge"><title>lore:corpos:telestrian&#45;&gt;pnj:thomastelestrian</title> 
-<path fill="none" stroke="black" d="M1313.39,-2411.71C1298.42,-2421.47 1278.18,-2433.87 1260.32,-2444.25"/> +<path fill="none" stroke="black" d="M6763.42,-2016.31C6754.27,-2006.54 6745.24,-1993.49 6741,-1980 6734.35,-1958.87 6741.68,-1934.49 6751.21,-1916.59"/> 
-<polygon fill="black" stroke="black" points="1258.17,-2441.45 1251.24,-2449.46 1261.66,-2447.52 1258.17,-2441.45"/>+<polygon fill="black" stroke="black" points="6754.28,-1918.27 6756.33,-1907.88 6748.25,-1914.72 6754.28,-1918.27"/>
 </g> </g>
-<!-- pj:johnmcgill --> +<!-- lore:corpos:telestrian&#45;&gt;lore:lieux:tir_tairngire --> 
-<g id="node103" class="node"><title>pj:johnmcgill</title> +<g id="edge468" class="edge"><title>lore:corpos:telestrian&#45;&gt;lore:lieux:tir_tairngire</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfee" cx="1461cy="-594" rx="56.59" ry="18"/> +<path fill="none" stroke="blackd="M6849.27,-2021.43C6872.53,-2013.79 6896.7,-2001.09 6911,-1980 6938.68,-1939.18 6915.85,-1879.56 6901.17,-1845.49"/> 
-<text text-anchor="middlex="1461y="-590.3" font-family="Times,serif" font-size="14.00">pj:johnmcgill</text>+<polygon fill="blackstroke="blackpoints="6904.32,-1843.96 6897.12,-1836.19 6897.91,-1846.76 6904.32,-1843.96"/>
 </g> </g>
-<!-- lore:gangs:1thundershock&#45;&gt;pj:johnmcgill --> +<!-- pnj:yu_mi&#45;seng&#45;&gt;lore:lieux:munich --> 
-<g id="edge368" class="edge"><title>lore:gangs:1thundershock&#45;&gt;pj:johnmcgill</title> +<g id="edge39" class="edge"><title>pnj:yu_mi&#45;seng&#45;&gt;lore:lieux:munich</title> 
-<path fill="none" stroke="black" d="M1364.82,-2376.58C1379.55,-2367.33 1396.75,-2354.68 1409,-2340 1437.01,-2306.41 1451,-2294.74 1451,-2251 1451,-2251 1451,-2251 1451,-1961 1451,-1920.55 1460.74,-1900.46 1432,-1872 1374.96,-1815.51 1313.52,-1890.96 1255,-1836 1225.14,-1807.95 1231,-1787.97 1231,-1747 1231,-1747 1231,-1747 1231,-881 1231,-773.841 1218.97,-725.478 1293,-648 1319.73,-620.025 1361.07,-606.756 1396.05,-600.49"/> +<path fill="none" stroke="black" d="M4457.26,-525.125C4152.06,-535.8 2867.04,-588.366 2753,-720 2636.74,-854.202 3170.55,-830.719 3063,-972 3035.7,-1007.86 2711.85,-1058.94 2672,-1080 2522.36,-1159.07 2444,-1215.76 2444,-1385 2444,-1675 2444,-1675 2444,-1675 2444,-1803.61 2400,-1832.39 2400,-1961 2400,-2251 2400,-2251 2400,-2251 2400,-2346.45 2418,-2369.55 2418,-2465 2418,-2683 2418,-2683 2418,-2683 2418,-2771.19 2456.31,-2802.25 2534,-2844 2590.53,-2874.38 2766.24,-2888.04 2870.67,-2893.6"/> 
-<polygon fill="black" stroke="black" points="1396.9,-603.898 1406.2,-598.832 1395.77,-596.99 1396.9,-603.898"/>+<polygon fill="black" stroke="black" points="2870.69,-2897.11 2880.85,-2894.13 2871.05,-2890.12 2870.69,-2897.11"/>
 </g> </g>
-<!-- pj:splenters&#45;&gt;lore:lieux:munich --> +<!-- pnj:yu_mi&#45;seng&#45;&gt;lore:organisations:mi&#45;seng_lung --> 
-<g id="edge442" class="edge"><title>pj:splenters&#45;&gt;lore:lieux:munich</title> +<g id="edge40" class="edge"><title>pnj:yu_mi&#45;seng&#45;&gt;lore:organisations:mi&#45;seng_lung</title> 
-<path fill="none" stroke="black" d="M2251.48,-888.62C2203.16,-895.45 2127.63,-909.504 2067,-936 2002.84,-964.039 1937,-954.979 1937,-1025 1937,-1387 1937,-1387 1937,-1387 1937,-1675.27 2239,-1672.73 2239,-1961 2239,-2035 2239,-2035 2239,-2035 2239,-2113.2 2259.42,-2136.35 2310,-2196 2328.89,-2218.28 2346.5,-2209.39 2365,-2232 2436.26,-2319.07 2470.14,-2453.08 2481.94,-2509.97"/> +<path fill="none" stroke="black" d="M4525.55,-540.139C4529.4,-591.688 4526,-749.845 4526,-881 4526,-1027 4526,-1027 4526,-1027 4526,-1319.29 4444.14,-1383.37 4363,-1476 4313.52,-1532.49 4138.65,-1613.12 4077,-1656 4033.8,-1686.05 3920.08,-1757.54 3889,-1800 3819.02,-1895.61 3873.01,-1957.15 3802,-2052 3781.58,-2079.28 3367.64,-2360.87 3241.23,-2442.77"/> 
-<polygon fill="black" stroke="black" points="2478.55,-2510.86 2483.95,-2519.97 2485.41,-2509.48 2478.55,-2510.86"/>+<polygon fill="black" stroke="black" points="3239.14,-2439.96 3232.64,-2448.32 3242.94,-2445.84 3239.14,-2439.96"/>
 </g> </g>
-<!-- pnj:meredith&#45;&gt;pnj:enrique --> +<!-- pnj:theodore_smith&#45;&gt;lore:lieux:munich --> 
-<g id="edge330" class="edge"><title>pnj:meredith&#45;&gt;pnj:enrique</title> +<g id="edge44" class="edge"><title>pnj:theodore_smith&#45;&gt;lore:lieux:munich</title> 
-<path fill="none" stroke="black" d="M5179.31,-1520.7C5104.07,-1507.59 4958.27,-1482.21 4879.19,-1468.44"/> +<path fill="none" stroke="black" d="M3377.37,-1044.15C3354.89,-1102.37 3265.53,-1289.2 3264,-1296 3260.5,-1311.61 3257.04,-1317.59 3264,-1332 3325.2,-1458.77 3512,-1388.23 3512,-1529 3512,-1603 3512,-1603 3512,-1603 3512,-1936.71 3095.2,-1697.09 2811,-1872 2657.9,-1966.22 2604.4,-1997.75 2527,-2160 2467.76,-2284.18 2474,-2327.41 2474,-2465 2474,-2683 2474,-2683 2474,-2683 2474,-2855.35 2733.17,-2890.1 2869.49,-2896.31"/> 
-<polygon fill="black" stroke="black" points="4879.4,-1464.92 4868.95,-1466.65 4878.2,-1471.82 4879.4,-1464.92"/>+<polygon fill="black" stroke="black" points="2869.35,-2899.81 2879.49,-2896.72 2869.64,-2892.81 2869.35,-2899.81"/>
 </g> </g>
-<!-- pnj:meredith&#45;&gt;pj:oggodt --> +<!-- pnj:theodore_smith&#45;&gt;lore:organisations:mi&#45;seng_lung --> 
-<g id="edge329" class="edge"><title>pnj:meredith&#45;&gt;pj:oggodt</title> +<g id="edge43" class="edge"><title>pnj:theodore_smith&#45;&gt;lore:organisations:mi&#45;seng_lung</title> 
-<path fill="none" stroke="black" d="M5264.9,-1543.41C5282.88,-1552.08 5302.33,-1565.46 5312,-1584 5319.4,-1598.19 5322.54,-1607.96 5312,-1620 5261.18,-1678.03 4007.98,-1759.11 3931,-1764 3912.91,-1765.15 1337.45,-1861.05 1323,-1872 1175.49,-1983.82 1319.59,-2132.02 1194,-2268 1112.66,-2356.08 732.922,-2383.55 588.674,-2390.76"/> +<path fill="none" stroke="black" d="M3461.06,-1029.57C3652.64,-1036.19 4127.7,-1055.04 4151,-1080 4161.92,-1091.7 4155.51,-1100.65 4151,-1116 4126.85,-1198.14 3802.9,-1713.17 3734,-1764 3686.1,-1799.34 3662.01,-1782.89 3605,-1800 3554.92,-1815.03 3542.79,-1820.04 3493,-1836 3319.27,-1891.69 3102,-1778.56 3102,-1961 3102,-2179 3102,-2179 3102,-2179 3102,-2280.39 3160.01,-2390.67 3188.96,-2439.4"/> 
-<polygon fill="black" stroke="black" points="588.114,-2387.28 578.296,-2391.26 588.454,-2394.27 588.114,-2387.28"/>+<polygon fill="black" stroke="black" points="3186.01,-2441.28 3194.17,-2448.04 3192,-2437.67 3186.01,-2441.28"/>
 </g> </g>
-<!-- lore:lieux:genes --> +<!-- lore:lieux:gemito --> 
-<g id="node102" class="node"><title>lore:lieux:genes</title> +<g id="node42" class="node" onclick="click(evt)"><title>lore:lieux:gemito</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfee" cx="5015" cy="-1458" rx="65.7887" ry="18"/> +<ellipse fill="#021dcd" fill-opacity="0.733333" stroke="#021dcd" stroke-opacity="0.733333" cx="3513" cy="-1386" rx="69.5877" ry="18"/> 
-<text text-anchor="middle" x="5015" y="-1454.3" font-family="Times,serif" font-size="14.00">lore:lieux:genes</text>+<text text-anchor="middle" x="3513" y="-1382.3" font-family="Times,serif" font-size="14.00">lore:lieux:gemito</text>
 </g> </g>
-<!-- pnj:meredith&#45;&gt;lore:lieux:genes --> +<!-- pnj:theodore_smith&#45;&gt;lore:lieux:gemito --> 
-<g id="edge332" class="edge"><title>pnj:meredith&#45;&gt;lore:lieux:genes</title> +<g id="edge41" class="edge"><title>pnj:theodore_smith&#45;&gt;lore:lieux:gemito</title> 
-<path fill="none" stroke="black" d="M5189.59,-1516.65C5155,-1505.23 5103.33,-1488.17 5065.17,-1475.57"/> +<path fill="none" stroke="black" d="M3391.35,-1044.09C3416.98,-1101.49 3485.34,-1287.66 3506.86,-1357.87"/> 
-<polygon fill="black" stroke="black" points="5065.88,-1472.11 5055.29,-1472.3 5063.68,-1478.76 5065.88,-1472.11"/>+<polygon fill="black" stroke="black" points="3503.59,-1359.14 3509.79,-1367.73 3510.3,-1357.15 3503.59,-1359.14"/>
 </g> </g>
-<!-- pnj:meredith&#45;&gt;pnj:rufus --> +<!-- lore:corpos:bilbauer --> 
-<g id="edge331" class="edge"><title>pnj:meredith&#45;&gt;pnj:rufus</title> +<g id="node43" class="node" onclick="click(evt)"><title>lore:corpos:bilbauer</title> 
-<path fill="none" stroke="blackd="M5238.78,-1547.62C5242.46,-1555.53 5246.16,-1565.17 5248.97,-1574.08"/> +<ellipse fill="#41c2b5" fill-opacity="0.733333" stroke="#41c2b5stroke-opacity="0.733333" cx="3713" cy="-954" rx="83.3857" ry="18"/> 
-<polygon fill="blackstroke="blackpoints="5245.61,-1575.05 5251.74,-1583.7 5252.34,-1573.12 5245.61,-1575.05"/>+<text text-anchor="middlex="3713y="-950.3" font-family="Times,serif" font-size="14.00">lore:corpos:bilbauer</text>
 </g> </g>
-<!-- pj:endol&#45;&gt;pj:eidolon --> +<!-- pnj:theodore_smith&#45;&gt;lore:corpos:bilbauer --> 
-<g id="edge150" class="edge"><title>pj:endol&#45;&gt;pj:eidolon</title> +<g id="edge42" class="edge"><title>pnj:theodore_smith&#45;&gt;lore:corpos:bilbauer</title> 
-<path fill="none" stroke="black" d="M1099.22,-2243.15C1028.32,-2231.13 873.084,-2203.53 792.937,-2188.76"/> +<path fill="none" stroke="black" d="M3438.52,-1013.05C3495.89,-1000.91 3584.71,-982.13 3645.68,-969.236"/> 
-<polygon fill="black" stroke="black" points="793.548,-2185.31 783.078,-2186.94 792.275,-2192.2 793.548,-2185.31"/>+<polygon fill="black" stroke="black" points="3646.54,-972.633 3655.6,-967.139 3645.09,-965.784 3646.54,-972.633"/>
 </g> </g>
-<!-- pj:endol&#45;&gt;pnj:gutwayn --> +<!-- pnj:theodore_smith&#45;&gt;lore:organisations:swamp_rats --> 
-<g id="edge151" class="edge"><title>pj:endol&#45;&gt;pnj:gutwayn</title> +<g id="edge45" class="edge"><title>pnj:theodore_smith&#45;&gt;lore:organisations:swamp_rats</title> 
-<path fill="none" stroke="black" d="M1175.14,-2246.69C1356.37,-2236.37 2113.88,-2194.48 2338.81,-2182.32"/> +<path fill="none" stroke="black" d="M3460.26,-1030.43C3657.33,-1039.55 4160.33,-1064.72 4193,-1080 4562.49,-1252.84 4480.9,-1516.29 4805,-1764 4822,-1776.99 4842.68,-1787.97 4860.96,-1796.52"/> 
-<polygon fill="black" stroke="black" points="2339.32,-2185.8 2349.12,-2181.77 2338.94,-2178.81 2339.32,-2185.8"/>+<polygon fill="black" stroke="black" points="4859.72,-1799.79 4870.27,-1800.76 4862.62,-1793.43 4859.72,-1799.79"/>
 </g> </g>
-<!-- pj:endol&#45;&gt;pnj:az_ebo --> +<!-- lore:lieux:gemito&#45;&gt;pnj:theodore_smith --> 
-<g id="edge152" class="edge"><title>pj:endol&#45;&gt;pnj:az_ebo</title> +<g id="edge64" class="edge"><title>lore:lieux:gemito&#45;&gt;pnj:theodore_smith</title> 
-<path fill="none" stroke="black" d="M1143.03,-2232.04C1163.14,-2198.16 1218.55,-2119.51 1263,-2052 1294.35,-2004.39 1329.38,-1947.72 1351.62,-1915.9"/> +<path fill="none" stroke="black" d="M3503.57,-1367.73C3477.85,-1310.08 3409.5,-1123.89 3388.08,-1053.92"/> 
-<polygon fill="black" stroke="black" points="1354.57,-1917.78 1357.54,-1907.61 1348.88,-1913.71 1354.57,-1917.78"/>+<polygon fill="black" stroke="black" points="3391.36,-1052.68 3385.16,-1044.09 3384.65,-1054.68 3391.36,-1052.68"/>
 </g> </g>
-<!-- lore:objets:trollhammer_de_oggodt&#45;&gt;pj:oggodt --> +<!-- pnj:rufus --> 
-<g id="edge300" class="edge"><title>lore:objets:trollhammer_de_oggodt&#45;&gt;pj:oggodt</title> +<g id="node52" class="node" onclick="click(evt)"><title>pnj:rufus</title> 
-<path fill="none" stroke="blackd="M695.367,-2339.28C661.215,-2351.46 613.082,-2367.94 578.038,-2379.42"/> +<ellipse fill="#e5b030" fill-opacity="0.733333" stroke="#e5b030stroke-opacity="0.733333" cx="3648" cy="-1314" rx="42.4939" ry="18"/> 
-<polygon fill="blackstroke="blackpoints="576.948,-2376.1 568.523,-2382.52 579.116,-2382.75 576.948,-2376.1"/>+<text text-anchor="middlex="3648y="-1310.3" font-family="Times,serif" font-size="14.00">pnj:rufus</text>
 </g> </g>
-<!-- pj:eidolon&#45;&gt;pnj:tristanodunn --> +<!-- lore:lieux:gemito&#45;&gt;pnj:rufus --> 
-<g id="edge49" class="edge"><title>pj:eidolon&#45;&gt;pnj:tristanodunn</title> +<g id="edge60" class="edge"><title>lore:lieux:gemito&#45;&gt;pnj:rufus</title> 
-<path fill="none" stroke="black" d="M709.559,-2165.49C663.29,-2145.7 586,-2100.88 586,-2035 586,-2035 586,-2035 586,-953 586,-912.96 583.589,-866.627 584.116,-838.065"/> +<path fill="none" stroke="black" d="M3537.87,-1369.12C3558.06,-1357.98 3586.67,-1343.13 3609.74,-1331.8"/> 
-<polygon fill="black" stroke="black" points="587.615,-838.158 584.473,-828.039 580.619,-837.909 587.615,-838.158"/>+<polygon fill="black" stroke="black" points="3611.45,-1334.86 3618.92,-1327.34 3608.39,-1328.56 3611.45,-1334.86"/>
 </g> </g>
-<!-- pj:eidolon&#45;&gt;lore:lieux:tir_na_nog --> +<!-- pnj:marcello --> 
-<g id="edge51" class="edge"><title>pj:eidolon&#45;&gt;lore:lieux:tir_na_nog</title> +<g id="node53" class="node" onclick="click(evt)"><title>pnj:marcello</title> 
-<path fill="none" stroke="blackd="M742.768,-2159.77C742.29,-2113.25 741.91,-1981.27 751,-1872 772.393,-1614.84 664.18,-1498.6 824,-1296 851.194,-1261.53 889.789,-1295.23 916,-1260 959.125,-1202.04 966.053,-684.18 969,-612 969.653,-596.013 969.602,-591.989 969,-576 968.686,-567.665 968.095,-558.608 967.462,-550.379"/> +<ellipse fill="#e5b030" fill-opacity="0.733333" stroke="#e5b030stroke-opacity="0.733333" cx="3207" cy="-1242" rx="54.6905" ry="18"/> 
-<polygon fill="blackstroke="blackpoints="970.93,-549.848 966.625,-540.167 963.953,-550.42 970.93,-549.848"/>+<text text-anchor="middlex="3207y="-1238.3" font-family="Times,serif" font-size="14.00">pnj:marcello</text>
 </g> </g>
-<!-- pj:eidolon&#45;&gt;pnj:williamodunn --> +<!-- lore:lieux:gemito&#45;&gt;pnj:marcello --> 
-<g id="edge55" class="edge"><title>pj:eidolon&#45;&gt;pnj:williamodunn</title> +<g id="edge61" class="edge"><title>lore:lieux:gemito&#45;&gt;pnj:marcello</title> 
-<path fill="none" stroke="black" d="M696.89,-2176.62C633.982,-2174.61 519.631,-2165.15 433,-2124 378.352,-2098.04 330,-2095.5 330,-2035 330,-2035 330,-2035 330,-1889 330,-1598.43 17,-1605.57 17,-1315 17,-1315 17,-1315 17,-161 17,-85.9501 109.006,-48.4304 175.684,-31.3861"/> +<path fill="none" stroke="black" d="M3449.11,-1378.89C3380.42,-1370.91 3277.14,-1355.16 3246,-1332 3225.49,-1316.75 3212.78,-1290.05 3207.29,-1269.86"/> 
-<polygon fill="black" stroke="black" points="176.858,-34.7019 185.736,-28.9207 175.19,-27.9034 176.858,-34.7019"/>+<polygon fill="black" stroke="black" points="3210.68,-1268.99 3205.08,-1260 3203.85,-1270.52 3210.68,-1268.99"/>
 </g> </g>
-<!-- pj:eidolon&#45;&gt;pj:oggodt --> +<!-- lore:lieux:gemito&#45;&gt;pnj:meredith --> 
-<g id="edge56" class="edge"><title>pj:eidolon&#45;&gt;pj:oggodt</title> +<g id="edge62" class="edge"><title>lore:lieux:gemito&#45;&gt;pnj:meredith</title> 
-<path fill="none" stroke="black" d="M714.507,-2192.18C673.961,-2210.48 600.849,-2247.82 562,-2304 549.367,-2322.27 544.574,-2347.23 541.341,-2366.07"/> +<path fill="none" stroke="black" d="M3580.41,-1381.08C3619.57,-1375.42 3667.29,-1362.24 3699,-1332 3715.9,-1315.88 3723.28,-1289.93 3726.51,-1270.2"/> 
-<polygon fill="black" stroke="black" points="537.863,-2365.65 539.619,-2376.1 544.762,-2366.83 537.863,-2365.65"/>+<polygon fill="black" stroke="black" points="3729.98,-1270.64 3727.87,-1260.26 3723.04,-1269.69 3729.98,-1270.64"/>
 </g> </g>
-<!-- pj:eidolon&#45;&gt;pj:splenters --> +<!-- pnj:jimmyx --> 
-<g id="edge48" class="edge"><title>pj:eidolon&#45;&gt;pj:splenters</title> +<g id="node55" class="node" onclick="click(evt)"><title>pnj:jimmyx</title> 
-<path fill="none" stroke="blackd="M768.353,-2162.77C783.257,-2153.36 801.557,-2139.85 814,-2124 912.569,-1998.44 865.554,-1921.58 969,-1800 1258.39,-1459.89 1440.52,-1475.82 1705,-1116 1757.51,-1044.56 1718.55,-987.112 1791,-936 1826.92,-910.661 2111.46,-892.827 2238.78,-886.036"/> +<ellipse fill="#e5b030" fill-opacity="0.733333" stroke="#e5b030stroke-opacity="0.733333" cx="3314" cy="-1314" rx="50.0912" ry="18"/> 
-<polygon fill="blackstroke="blackpoints="2238.97,-889.531 2248.77,-885.509 2238.6,-882.541 2238.97,-889.531"/>+<text text-anchor="middlex="3314y="-1310.3" font-family="Times,serif" font-size="14.00">pnj:jimmyx</text>
 </g> </g>
-<!-- pj:eidolon&#45;&gt;pj:endol --> +<!-- lore:lieux:gemito&#45;&gt;pnj:jimmyx --> 
-<g id="edge54" class="edge"><title>pj:eidolon&#45;&gt;pj:endol</title> +<g id="edge63" class="edge"><title>lore:lieux:gemito&#45;&gt;pnj:jimmyx</title> 
-<path fill="none" stroke="black" d="M784.812,-2185.7C859.214,-2198.38 1013.63,-2225.85 1090.55,-2240.07"/> +<path fill="none" stroke="black" d="M3469.67,-1371.67C3435.62,-1360.26 3388.66,-1343.79 3355.18,-1331.54"/> 
-<polygon fill="black" stroke="black" points="1089.96,-2243.52 1100.43,-2241.9 1091.24,-2236.64 1089.96,-2243.52"/>+<polygon fill="black" stroke="black" points="3356.28,-1328.21 3345.69,-1328.04 3353.87,-1334.78 3356.28,-1328.21"/>
 </g> </g>
-<!-- pj:eidolon&#45;&gt;pj:sven --> +<!-- lore:lieux:confederation_italienne --> 
-<g id="edge52" class="edge"><title>pj:eidolon&#45;&gt;pj:sven</title> +<g id="node56" class="node" onclick="click(evt)"><title>lore:lieux:confederation_italienne</title> 
-<path fill="none" stroke="blackd="M769.228,-2192.95C812.117,-2218.16 896.299,-2271.38 939.795,-2300.65"/> +<ellipse fill="#021dcd" fill-opacity="0.733333" stroke="#021dcdstroke-opacity="0.733333" cx="3058" cy="-1458" rx="128.077" ry="18"/> 
-<polygon fill="blackstroke="blackpoints="937.94,-2303.62 948.179,-2306.34 941.871,-2297.83 937.94,-2303.62"/>+<text text-anchor="middlex="3058y="-1454.3" font-family="Times,serif" font-size="14.00">lore:lieux:confederation_italienne</text>
 </g> </g>
-<!-- pj:ankou --> +<!-- lore:lieux:gemito&#45;&gt;lore:lieux:confederation_italienne --> 
-<g id="node50" class="node"><title>pj:ankou</title> +<g id="edge65" class="edge"><title>lore:lieux:gemito&#45;&gt;lore:lieux:confederation_italienne</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfeecx="1272" cy="-234" rx="41.6928" ry="18"/> +<path fill="none" stroke="blackd="M3456.23,-1396.47C3380.53,-1408.48 3245.61,-1429.27 3153.97,-1443.08"/> 
-<text text-anchor="middlex="1272y="-230.3" font-family="Times,serif" font-size="14.00">pj:ankou</text>+<polygon fill="blackstroke="blackpoints="3153.22,-1439.66 3143.86,-1444.61 3154.27,-1446.58 3153.22,-1439.66"/>
 </g> </g>
-<!-- pj:eidolon&#45;&gt;pj:ankou --> +<!-- pnj:moman --> 
-<g id="edge50" class="edge"><title>pj:eidolon&#45;&gt;pj:ankou</title> +<g id="node57" class="node" onclick="click(evt)"><title>pnj:moman</title> 
-<path fill="none" stroke="blackd="M755.223,-2160.59C762.221,-2150.5 770.647,-2137.03 776,-2124 819.622,-2017.78 804.6,-1983.26 833,-1872 849.458,-1807.52 854.385,-1791.59 874,-1728 903.165,-1633.45 1155,-981.944 1155,-883 1155,-883 1155,-883 1155,-809 1155,-577.11 1063.04,-486.453 1183,-288 1193.6,-270.469 1212.38,-258.046 1229.97,-249.656"/> +<ellipse fill="#e5b030" fill-opacity="0.733333" stroke="#e5b030stroke-opacity="0.733333" cx="2980" cy="-1098" rx="50.8918" ry="18"/> 
-<polygon fill="blackstroke="blackpoints="1231.84,-252.657 1239.56,-245.403 1229,-246.258 1231.84,-252.657"/>+<text text-anchor="middlex="2980y="-1094.3" font-family="Times,serif" font-size="14.00">pnj:moman</text>
 </g> </g>
-<!-- pj:eidolon&#45;&gt;pnj:eidanodunn --> +<!-- lore:lieux:gemito&#45;&gt;pnj:moman --> 
-<g id="edge53" class="edge"><title>pj:eidolon&#45;&gt;pnj:eidanodunn</title> +<g id="edge66" class="edge"><title>lore:lieux:gemito&#45;&gt;pnj:moman</title> 
-<path fill="none" stroke="black" d="M701.312,-2170.04C606.983,-2152.21 386,-2101.56 386,-2035 386,-2035 386,-2035 386,-1889 386,-1846.81 370.79,-1838.25 353,-1800 302.207,-1690.78 111,-1435.45 111,-1315 111,-1315 111,-1315 111,-881 111,-657.776 127,-602.224 127,-379 127,-379 127,-379 127,-233 127,-171.111 194.843,-129.486 244.406,-108.058"/> +<path fill="none" stroke="black" d="M3445.39,-1381.58C3353.27,-1375.85 3194.15,-1361.9 3145,-1332 3063.38,-1282.36 3011.14,-1175.41 2990.3,-1125.57"/> 
-<polygon fill="black" stroke="black" points="245.855,-111.246 253.738,-104.167 243.161,-104.785 245.855,-111.246"/>+<polygon fill="black" stroke="black" points="2993.46,-1124.05 2986.44,-1116.12 2986.98,-1126.7 2993.46,-1124.05"/>
 </g> </g>
-<!-- pj:hiquse --> +<!-- lore:gangs:fils_de_sauron --> 
-<g id="node52" class="node"><title>pj:hiquse</title> +<g id="node58" class="node" onclick="click(evt)"><title>lore:gangs:fils_de_sauron</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfee" cx="3197" cy="-2106" rx="42.7926" ry="18"/> +<ellipse fill="#63356c" fill-opacity="0.733333" stroke="#63356c" stroke-opacity="0.733333" cx="3927" cy="-1026" rx="102.882" ry="18"/> 
-<text text-anchor="middle" x="3197" y="-2102.3" font-family="Times,serif" font-size="14.00">pj:hiquse</text>+<text text-anchor="middle" x="3927" y="-1022.3" font-family="Times,serif" font-size="14.00">lore:gangs:fils_de_sauron</text>
 </g> </g>
-<!-- pj:eidolon&#45;&gt;pj:hiquse --> +<!-- lore:lieux:gemito&#45;&gt;lore:gangs:fils_de_sauron --> 
-<g id="edge57" class="edge"><title>pj:eidolon&#45;&gt;pj:hiquse</title> +<g id="edge67" class="edge"><title>lore:lieux:gemito&#45;&gt;lore:gangs:fils_de_sauron</title> 
-<path fill="none" stroke="black" d="M788.864,-2175.63C1093.22,-2166.77 2818.46,-2117.56 3144.03,-2108.45"/> +<path fill="none" stroke="black" d="M3577.73,-1379.18C3650.38,-1371.84 3762.4,-1357.05 3797,-1332 3889.5,-1265.03 3911.33,-1115.92 3920.77,-1054.38"/> 
-<polygon fill="black" stroke="black" points="3144.24,-2111.95 3154.14,-2108.17 3144.04,-2104.95 3144.24,-2111.95"/>+<polygon fill="black" stroke="black" points="3924.26,-1054.7 3922.35,-1044.28 3917.34,-1053.62 3924.26,-1054.7"/>
 </g> </g>
-<!-- pj:sven&#45;&gt;pj:oggodt --> +<!-- pnj:enrique --> 
-<g id="edge266" class="edge"><title>pj:sven&#45;&gt;pj:oggodt</title> +<g id="node59" class="node" onclick="click(evt)"><title>pnj:enrique</title> 
-<path fill="none" stroke="blackd="M942.515,-2335.32C937.13,-2337.07 931.442,-2338.71 926,-2340 807.474,-2368.06 664.607,-2382.93 587.879,-2389.24"/> +<ellipse fill="#e5b030" fill-opacity="0.733333" stroke="#e5b030stroke-opacity="0.733333" cx="3599" cy="-1170" rx="50.0912" ry="18"/> 
-<polygon fill="blackstroke="blackpoints="587.188,-2385.79 577.5,-2390.08 587.748,-2392.76 587.188,-2385.79"/>+<text text-anchor="middlex="3599y="-1166.3" font-family="Times,serif" font-size="14.00">pnj:enrique</text>
 </g> </g>
-<!-- pj:sven&#45;&gt;pj:splenters --> +<!-- lore:lieux:gemito&#45;&gt;pnj:enrique --> 
-<g id="edge268" class="edge"><title>pj:sven&#45;&gt;pj:splenters</title> +<g id="edge68" class="edge"><title>lore:lieux:gemito&#45;&gt;pnj:enrique</title> 
-<path fill="none" stroke="black" d="M971.948,-2304.07C988.268,-2249.54 1043.67,-2074.49 1119,-1944 1139.13,-1909.13 1147.78,-1902.56 1174,-1872 1333.05,-1686.66 1413.09,-1674.77 1555,-1476 1574.59,-1448.56 1804.26,-955.171 1832,-936 1896.33,-891.534 2125.8,-883.927 2237.72,-882.923"/> +<path fill="none" stroke="black" d="M3512.8,-1367.88C3516.17,-1357.53 3522.03,-1344.05 3527,-1332 3546.6,-1284.47 3568.18,-1228.47 3583,-1196.61"/> 
-<polygon fill="black" stroke="black" points="2237.88,-886.422 2247.85,-882.848 2237.82,-879.423 2237.88,-886.422"/>+<polygon fill="black" stroke="black" points="3586.19,-1198.06 3587.38,-1187.54 3579.88,-1195.02 3586.19,-1198.06"/>
 </g> </g>
-<!-- pj:sven&#45;&gt;pj:endol --> +<!-- lore:gangs:white_skullz --> 
-<g id="edge267" class="edge"><title>pj:sven&#45;&gt;pj:endol</title> +<g id="node60" class="node" onclick="click(evt)"><title>lore:gangs:white_skullz</title> 
-<path fill="none" stroke="blackd="M994.153,-2309.75C1022.4,-2298.06 1066.82,-2279.65 1098.42,-2266.56"/> +<ellipse fill="#63356c" fill-opacity="0.733333" stroke="#63356cstroke-opacity="0.733333" cx="3796" cy="-1098" rx="93.6835" ry="18"/> 
-<polygon fill="blackstroke="blackpoints="1099.89,-2269.75 1107.79,-2262.69 1097.21,-2263.28 1099.89,-2269.75"/>+<text text-anchor="middlex="3796y="-1094.3" font-family="Times,serif" font-size="14.00">lore:gangs:white_skullz</text>
 </g> </g>
-<!-- pj:sven&#45;&gt;pj:eidolon --> +<!-- lore:lieux:gemito&#45;&gt;lore:gangs:white_skullz --> 
-<g id="edge265" class="edge"><title>pj:sven&#45;&gt;pj:eidolon</title> +<g id="edge69" class="edge"><title>lore:lieux:gemito&#45;&gt;lore:gangs:white_skullz</title> 
-<path fill="none" stroke="black" d="M943.075,-2308.4C901.259,-2283.96 815.7,-2229.92 771.139,-2199.98"/> +<path fill="none" stroke="black" d="M3582.21,-1383.77C3633.54,-1379.53 3703.03,-1366.92 3754,-1332 3822.69,-1284.93 3820.26,-1234.04 3806,-1152 3804.49,-1143.33 3801.7,-1134.21 3799.1,-1126.02"/> 
-<polygon fill="black" stroke="black" points="773.041,-2197.04 762.799,-2194.33 769.115,-2202.84 773.041,-2197.04"/>+<polygon fill="black" stroke="black" points="3802.36,-1124.74 3796.02,-1116.25 3795.69,-1126.84 3802.36,-1124.74"/>
 </g> </g>
-<!-- pj:sven&#45;&gt;pj:ankou --> +<!-- lore:gangs:familia_d_enrique --> 
-<g id="edge264" class="edge"><title>pj:sven&#45;&gt;pj:ankou</title> +<g id="node61" class="node" onclick="click(evt)"><title>lore:gangs:familia_d_enrique</title> 
-<path fill="none" stroke="blackd="M962.961,-2303.88C946.342,-2232.43 884.91,-1957.74 902,-1872 967.939,-1541.17 1193,-1508.33 1193,-1171 1193,-1171 1193,-1171 1193,-737 1193,-640.401 1231,-619.599 1231,-523 1231,-523 1231,-523 1231,-377 1231,-335.407 1247.44,-289.556 1259.5,-261.514"/> +<ellipse fill="#63356c" fill-opacity="0.733333" stroke="#63356cstroke-opacity="0.733333" cx="3571" cy="-1098" rx="113.98" ry="18"/> 
-<polygon fill="blackstroke="blackpoints="1262.85,-262.59 1263.7,-252.029 1256.45,-259.752 1262.85,-262.59"/>+<text text-anchor="middlex="3571y="-1094.3" font-family="Times,serif" font-size="14.00">lore:gangs:familia_d_enrique</text>
 </g> </g>
-<!-- pj:sven&#45;&gt;lore:corpos:ares --> +<!-- lore:lieux:gemito&#45;&gt;lore:gangs:familia_d_enrique --> 
-<g id="edge269" class="edge"><title>pj:sven&#45;&gt;lore:corpos:ares</title> +<g id="edge70" class="edge"><title>lore:lieux:gemito&#45;&gt;lore:gangs:familia_d_enrique</title> 
-<path fill="none" stroke="black" d="M980.025,-2304.78C987.977,-2294.53 998.099,-2280.84 1006,-2268 1110.6,-2097.96 1060.23,-1994.32 1218,-1872 1256.32,-1842.29 1279.59,-1861.24 1321,-1836 1340.87,-1823.89 1340.61,-1814.26 1359,-1800 1430.33,-1744.69 1455.8,-1741.93 1531,-1692 1812.21,-1505.29 2143.15,-1266.17 2243.61,-1193.15"/> +<path fill="none" stroke="black" d="M3507.93,-1367.81C3503.22,-1328.5 3505.14,-1229.44 3531,-1152 3534.21,-1142.39 3539.3,-1132.62 3544.9,-1124.12"/> 
-<polygon fill="black" stroke="black" points="2245.77,-1195.91 2251.8,-1187.19 2241.65,-1190.24 2245.77,-1195.91"/>+<polygon fill="black" stroke="black" points="3547.89,-1125.96 3550.87,-1115.79 3542.2,-1121.89 3547.89,-1125.96"/>
 </g> </g>
-<!-- pj:ankou&#45;&gt;lore:lieux:tir_na_nog --> +<!-- lore:gangs:groupe_leonkavallo --> 
-<g id="edge253" class="edge"><title>pj:ankou&#45;&gt;lore:lieux:tir_na_nog</title> +<g id="node62" class="node" onclick="click(evt)"><title>lore:gangs:groupe_leonkavallo</title> 
-<path fill="none" stroke="blackd="M1230.17,-235.218C1184.49,-237.619 1111.64,-248.073 1065,-288 1032.09,-316.171 990.678,-438.745 973.287,-493.915"/> +<ellipse fill="#63356c" fill-opacity="0.733333" stroke="#63356cstroke-opacity="0.733333" cx="3169" cy="-1098" rx="120.479" ry="18"/> 
-<polygon fill="blackstroke="blackpoints="969.872,-493.11 970.232,-503.698 976.553,-495.196 969.872,-493.11"/>+<text text-anchor="middlex="3169y="-1094.3" font-family="Times,serif" font-size="14.00">lore:gangs:groupe_leonkavallo</text>
 </g> </g>
-<!-- pj:ankou&#45;&gt;lore:organisations:rote_kasern --> +<!-- lore:lieux:gemito&#45;&gt;lore:gangs:groupe_leonkavallo --> 
-<g id="edge254" class="edge"><title>pj:ankou&#45;&gt;lore:organisations:rote_kasern</title> +<g id="edge71" class="edge"><title>lore:lieux:gemito&#45;&gt;lore:gangs:groupe_leonkavallo</title> 
-<path fill="none" stroke="black" d="M1311.51,-239.92C1345.09,-243.894 1394.63,-249.259 1438,-252 1581.31,-261.058 6606,-233.402 6606,-377 6606,-523 6606,-523 6606,-523 6606,-756.114 6758,-791.886 6758,-1025 6758,-1243 6758,-1243 6758,-1243 6758,-1473.55 6647.24,-1509.4 6574,-1728 6539.73,-1830.29 6506,-1853.12 6506,-1961 6506,-2035 6506,-2035 6506,-2035 6506,-2145.7 6496.5,-2189.95 6418,-2268 6248.33,-2436.7 5510.53,-2611.51 5271.23,-2664.7"/> +<path fill="none" stroke="black" d="M3480.9,-1369.79C3463.67,-1359.6 3442.67,-1345.6 3425,-1332 3332.73,-1260.96 3231.38,-1166.96 3188.99,-1123.26"/> 
-<polygon fill="black" stroke="black" points="5270.24,-2661.34 5261.23,-2666.92 5271.75,-2668.17 5270.24,-2661.34"/>+<polygon fill="black" stroke="black" points="3191.44,-1120.76 3182.01,-1115.95 3186.38,-1125.59 3191.44,-1120.76"/>
 </g> </g>
-<!-- pnj:eidanodunn&#45;&gt;pnj:tristanodunn --> +<!-- lore:corpos:bilbauer&#45;&gt;lore:lieux:sox --> 
-<g id="edge278" class="edge"><title>pnj:eidanodunn&#45;&gt;pnj:tristanodunn</title> +<g id="edge139" class="edge"><title>lore:corpos:bilbauer&#45;&gt;lore:lieux:sox</title> 
-<path fill="none" stroke="black" d="M291.081,-108.32C280.495,-134.475 257,-185.998 257,-233 257,-307 257,-307 257,-307 257,-508.214 176.809,-609.747 315,-756 341.79,-784.353 441.103,-797.834 512.512,-804.038"/> +<path fill="none" stroke="black" d="M3639.41,-962.481C3402.35,-987.326 2670.24,-1070.17 2605,-1152 2530.7,-1245.2 2725.89,-1617.43 2781.63,-1719.18"/> 
-<polygon fill="black" stroke="black" points="512.577,-807.556 522.834,-804.902 513.16,-800.58 512.577,-807.556"/>+<polygon fill="black" stroke="black" points="2778.69,-1721.09 2786.57,-1728.16 2784.82,-1717.72 2778.69,-1721.09"/>
 </g> </g>
-<!-- pnj:eidanodunn&#45;&gt;lore:lieux:tir_na_nog --> +<!-- lore:corpos:bilbauer&#45;&gt;lore:organisations:swamp_rats --> 
-<g id="edge275" class="edge"><title>pnj:eidanodunn&#45;&gt;lore:lieux:tir_na_nog</title> +<g id="edge138" class="edge"><title>lore:corpos:bilbauer&#45;&gt;lore:organisations:swamp_rats</title> 
-<path fill="none" stroke="black" d="M305.524,-108.046C328.376,-144.698 382.531,-229.509 408,-252 562.167,-388.136 797.411,-471.136 906.134,-504.31"/> +<path fill="none" stroke="black" d="M3787.08,-962.316C3855.66,-970.389 3959.84,-985.322 4048,-1008 4311.04,-1075.67 4395.73,-1103.17 4587,-1296 4746.53,-1456.83 4866.72,-1708.44 4898.26,-1790.3"/> 
-<polygon fill="black" stroke="black" points="905.355,-507.731 915.94,-507.271 907.379,-501.03 905.355,-507.731"/>+<polygon fill="black" stroke="black" points="4895.05,-1791.7 4901.82,-1799.85 4901.61,-1789.26 4895.05,-1791.7"/>
 </g> </g>
-<!-- pnj:eidanodunn&#45;&gt;pnj:williamodunn --> +<!-- lore:organisations:swamp_rats&#45;&gt;lore:lieux:munich --> 
-<g id="edge279" class="edge"><title>pnj:eidanodunn&#45;&gt;pnj:williamodunn</title> +<g id="edge267" class="edge"><title>lore:organisations:swamp_rats&#45;&gt;lore:lieux:munich</title> 
-<path fill="none" stroke="black" d="M276.837,-72.411C269.737,-64.0774 261.872,-53.7972 255.411,-44.4883"/> +<path fill="none" stroke="black" d="M4798.27,-1826.03C4697.66,-1833.88 4555.62,-1848.66 4505,-1872 4483.28,-1882.02 4486.62,-1897.77 4465,-1908 4369.1,-1953.39 4321.41,-1891.86 4229,-1944 4156.24,-1985.05 4132,-2021.46 4132,-2105 4132,-2179 4132,-2179 4132,-2179 4132,-2211.93 3949.89,-2556.58 3827,-2628 3764.73,-2664.19 3736.67,-2639.34 3669,-2664 3636.13,-2675.98 3631.17,-2686.24 3599,-2700 3554.03,-2719.23 3536.34,-2709.85 3495,-2736 3438.16,-2771.95 3449.34,-2814.29 3389,-2844 3327.84,-2874.12 3139.96,-2887.98 3031.16,-2893.63"/> 
-<polygon fill="black" stroke="black" points="258.179,-42.3311 249.717,-35.9562 252.357,-46.2169 258.179,-42.3311"/>+<polygon fill="black" stroke="black" points="3030.69,-2890.14 3020.88,-2894.15 3031.05,-2897.14 3030.69,-2890.14"/>
 </g> </g>
-<!-- pnj:eidanodunn&#45;&gt;lore:organisations:danann_o_dunn --> +<!-- lore:organisations:swamp_rats&#45;&gt;lore:objets:nanoforge --> 
-<g id="edge280" class="edge"><title>pnj:eidanodunn&#45;&gt;lore:organisations:danann_o_dunn</title> +<g id="edge264" class="edge"><title>lore:organisations:swamp_rats&#45;&gt;lore:objets:nanoforge</title> 
-<path fill="none" stroke="black" d="M306.947,-108.032C315.079,-126.171 325.062,-155.573 336,-180 417.132,-361.179 539.273,-566.878 578.073,-638.648"/> +<path fill="none" stroke="black" d="M4906.97,-1799.84C4916.85,-1740.13 4964.12,-1535.93 4943,-1368 4922.39,-1204.15 4910.4,-1162.09 4851,-1008 4837.99,-974.238 4838.4,-961.77 4813,-936 4799.82,-922.633 4782.56,-911.744 4766.75,-903.39"/> 
-<polygon fill="black" stroke="black" points="575.193,-640.686 582.981,-647.869 581.372,-637.397 575.193,-640.686"/>+<polygon fill="black" stroke="black" points="4768.16,-900.178 4757.66,-898.765 4764.98,-906.417 4768.16,-900.178"/>
 </g> </g>
-<!-- pnj:eidanodunn&#45;&gt;pj:eidolon --> +<!-- lore:organisations:swamp_rats&#45;&gt;lore:lieux:sox --> 
-<g id="edge277" class="edge"><title>pnj:eidanodunn&#45;&gt;pj:eidolon</title> +<g id="edge268" class="edge"><title>lore:organisations:swamp_rats&#45;&gt;lore:lieux:sox</title> 
-<path fill="none" stroke="black" d="M262.303,-105.731C218.032,-126.389 145,-168.787 145,-233 145,-379 145,-379 145,-379 145,-602.224 129,-657.776 129,-881 129,-1315 129,-1315 129,-1315 129,-1435.45 320.207,-1690.78 371,-1800 388.79,-1838.25 404,-1846.81 404,-1889 404,-2035 404,-2035 404,-2035 404,-2097.57 599.266,-2146.08 693.479,-2166.48"/> +<path fill="none" stroke="black" d="M4797.62,-1810.11C4743.55,-1806.66 4677.26,-1802.66 4618,-1800 3933.22,-1769.23 3103.54,-1752.7 2863.79,-1748.25"/> 
-<polygon fill="black" stroke="black" points="692.849,-2169.93 703.361,-2168.6 694.316,-2163.08 692.849,-2169.93"/>+<polygon fill="black" stroke="black" points="2863.56,-1744.74 2853.49,-1748.06 2863.43,-1751.74 2863.56,-1744.74"/>
 </g> </g>
-<!-- pnj:eidanodunn&#45;&gt;pnj:lilalee --> +<!-- lore:organisations:swamp_rats&#45;&gt;pnj:bartek --> 
-<g id="edge276" class="edge"><title>pnj:eidanodunn&#45;&gt;pnj:lilalee</title> +<g id="edge269" class="edge"><title>lore:organisations:swamp_rats&#45;&gt;pnj:bartek</title> 
-<path fill="none" stroke="black" d="M336.177,-104.176C368.955,-115.649 414.359,-132.328 446.435,-144.65"/> +<path fill="none" stroke="black" d="M4899.74,-1799.86C4876,-1714.26 4795.61,-1324.59 4719,-1008 4716.95,-999.545 4714.58,-990.371 4712.79,-982.069"/> 
-<polygon fill="black" stroke="black" points="445.343,-147.98 455.933,-148.324 447.868,-141.452 445.343,-147.98"/>+<polygon fill="black" stroke="black" points="4716.21,-981.308 4710.9,-972.14 4709.33,-982.618 4716.21,-981.308"/>
 </g> </g>
-<!-- pj:hiquse&#45;&gt;lore:lieux:sox --> +<!-- lore:organisations:swamp_rats&#45;&gt;pnj:theodore_smith --> 
-<g id="edge304" class="edge"><title>pj:hiquse&#45;&gt;lore:lieux:sox</title> +<g id="edge266" class="edge"><title>lore:organisations:swamp_rats&#45;&gt;pnj:theodore_smith</title> 
-<path fill="none" stroke="black" d="M3239,-2109.78C3549.59,-2130.4 5478.73,-2260.17 5519,-2304 5641.89,-2437.75 5549.74,-2574.96 5418,-2700 5365.13,-2750.18 5303.53,-2679.08 5258,-2736 5243.5,-2754.12 5253.13,-2780.28 5264.21,-2799.55"/> +<path fill="none" stroke="black" d="M4856,-1801.55C4833.49,-1792.48 4807.55,-1779.7 4787,-1764 4462.9,-1516.29 4544.49,-1252.84 4175,-1080 4143.34,-1065.19 3669.83,-1041.09 3469.92,-1031.32"/> 
-<polygon fill="black" stroke="black" points="5261.27,-2801.44 5269.49,-2808.12 5267.23,-2797.77 5261.27,-2801.44"/>+<polygon fill="black" stroke="black" points="3469.91,-1027.81 3459.75,-1030.82 3469.57,-1034.81 3469.91,-1027.81"/>
 </g> </g>
-<!-- pj:hiquse&#45;&gt;lore:objets:nanoforge --> +<!-- lore:organisations:swamp_rats&#45;&gt;lore:corpos:bilbauer --> 
-<g id="edge303" class="edge"><title>pj:hiquse&#45;&gt;lore:objets:nanoforge</title> +<g id="edge265" class="edge"><title>lore:organisations:swamp_rats&#45;&gt;lore:corpos:bilbauer</title> 
-<path fill="none" stroke="black" d="M3193.97,-2087.92C3185.14,-2036.55 3160,-1878.84 3160,-1747 3160,-1747 3160,-1747 3160,-1673 3160,-1505.44 3235.59,-1446.04 3161,-1296 3154.61,-1283.15 3143.45,-1272.58 3131.9,-1264.36"/> +<path fill="none" stroke="black" d="M4895.4,-1799.85C4858.93,-1730.13 4735.35,-1463.7 4569,-1296 4377.73,-1103.17 4293.04,-1075.67 4030,-1008 3950.67,-987.593 3858.36,-973.457 3793.82,-964.948"/> 
-<polygon fill="black" stroke="black" points="3133.75,-1261.38 3123.48,-1258.78 3129.89,-1267.22 3133.75,-1261.38"/>+<polygon fill="black" stroke="black" points="3794.08,-961.452 3783.71,-963.631 3793.17,-968.393 3794.08,-961.452"/>
 </g> </g>
-<!-- pj:hiquse&#45;&gt;pj:eidolon --> +<!-- lore:organisations:swamp_rats&#45;&gt;lore:objets:caisse_de_ruthenium --> 
-<g id="edge302" class="edge"><title>pj:hiquse&#45;&gt;pj:eidolon</title> +<g id="edge270" class="edge"><title>lore:organisations:swamp_rats&#45;&gt;lore:objets:caisse_de_ruthenium</title> 
-<path fill="none" stroke="black" d="M3154.36,-2108.27C2860.19,-2116.84 1134.28,-2166.08 799.287,-2175.46"/> +<path fill="none" stroke="black" d="M4922.64,-1799.7C4931.14,-1789.94 4940.95,-1777.1 4947,-1764 5056.7,-1526.53 5016.67,-1444.5 5068,-1188 5088.48,-1085.65 5111.17,-963.611 5121,-910.243"/> 
-<polygon fill="black" stroke="black" points="798.768,-2171.97 788.87,-2175.75 798.964,-2178.97 798.768,-2171.97"/>+<polygon fill="black" stroke="black" points="5124.48,-910.688 5122.84,-900.22 5117.59,-909.421 5124.48,-910.688"/>
 </g> </g>
-<!-- pj:hiquse&#45;&gt;lore:organisations:swamp_rats --> +<!-- lore:organisations:swamp_rats&#45;&gt;lore:lieux:camargue --> 
-<g id="edge301" class="edge"><title>pj:hiquse&#45;&gt;lore:organisations:swamp_rats</title> +<g id="edge271" class="edge"><title>lore:organisations:swamp_rats&#45;&gt;lore:lieux:camargue</title> 
-<path fill="none" stroke="black" d="M3238.89,-2102.06C3382.12,-2092 3855.73,-2058.75 4077.52,-2043.18"/> +<path fill="none" stroke="black" d="M4929.48,-1800.23C4942.09,-1790.53 4957.38,-1777.57 4969,-1764 5029.82,-1692.95 5028.69,-1663.47 5078,-1584 5097.33,-1552.84 5432,-1063.67 5432,-1027 5432,-1027 5432,-1027 5432,-953 5432,-912.031 5438.22,-900.91 5456,-864 5460.68,-854.274 5467.23,-844.506 5473.61,-836.053"/> 
-<polygon fill="black" stroke="black" points="4077.84,-2046.66 4087.57,-2042.47 4077.35,-2039.68 4077.84,-2046.66"/>+<polygon fill="black" stroke="black" points="5476.45,-838.113 5479.88,-828.089 5470.94,-833.786 5476.45,-838.113"/>
 </g> </g>
-<!-- pnj:elephant --> +<!-- pnj:elephant&#45;&gt;lore:organisations:ira --> 
-<g id="node53" class="node"><title>pnj:elephant</title> +<g id="edge327" class="edge"><title>pnj:elephant&#45;&gt;lore:organisations:ira</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfeecx="1313" cy="-306" rx="53.8905" ry="18"/> +<path fill="none" stroke="blackd="M1185.63,-601.254C1249.61,-612.632 1357.55,-643.109 1402,-720 1410.01,-733.852 1409.8,-742.03 1402,-756 1393.64,-770.977 1379.11,-782.246 1363.85,-790.454"/> 
-<text text-anchor="middlex="1313y="-302.3" font-family="Times,serif" font-size="14.00">pnj:elephant</text>+<polygon fill="blackstroke="blackpoints="1362.22,-787.355 1354.82,-794.938 1365.34,-793.625 1362.22,-787.355"/>
 </g> </g>
-<!-- pnj:elephant&#45;&gt;pnj:brendanodunn --> +<!-- pnj:elephant&#45;&gt;pj:ankou --> 
-<g id="edge59" class="edge"><title>pnj:elephant&#45;&gt;pnj:brendanodunn</title> +<g id="edge326" class="edge"><title>pnj:elephant&#45;&gt;pj:ankou</title> 
-<path fill="none" stroke="black" d="M1266.35,-315.365C1136.75,-340.019 764.162,-420.599 494,-576 452.248,-600.016 437.898,-606.768 413,-648 401.652,-666.793 396.146,-691.171 393.481,-709.661"/> +<path fill="none" stroke="black" d="M1168.84,-608.534C1185.28,-617.196 1203.64,-630.188 1213,-648 1220.44,-662.162 1221.62,-670.523 1213,-684 1192.42,-716.161 1160.59,-691.665 1135,-720 1080.88,-779.923 1063.07,-878.185 1057.46,-925.647"/> 
-<polygon fill="black" stroke="black" points="389.983,-709.423 392.217,-719.78 396.929,-710.29 389.983,-709.423"/>+<polygon fill="black" stroke="black" points="1053.96,-925.451 1056.35,-935.771 1060.92,-926.209 1053.96,-925.451"/>
 </g> </g>
 <!-- pnj:elephant&#45;&gt;pnj:tristanodunn --> <!-- pnj:elephant&#45;&gt;pnj:tristanodunn -->
-<g id="edge61" class="edge"><title>pnj:elephant&#45;&gt;pnj:tristanodunn</title> +<g id="edge324" class="edge"><title>pnj:elephant&#45;&gt;pnj:tristanodunn</title> 
-<path fill="none" stroke="black" d="M1287.26,-321.942C1252,-344.561 1193,-391.063 1193,-449 1193,-523 1193,-523 1193,-523 1193,-752.986 830.863,-798.284 667.406,-807.016"/> +<path fill="none" stroke="black" d="M1128.31,-575.907C1117.21,-549.623 1098,-497.447 1098,-451 1098,-451 1098,-451 1098,-377 1098,-329.782 1062.78,-284.844 1037.42,-258.605"/> 
-<polygon fill="black" stroke="black" points="667.217,-803.521 657.405,-807.518 667.568,-810.512 667.217,-803.521"/>+<polygon fill="black" stroke="black" points="1039.78,-256.013 1030.24,-251.398 1034.82,-260.953 1039.78,-256.013"/> 
 +</g> 
 +<!-- pnj:elephant&#45;&gt;pnj:brendanodunn --> 
 +<g id="edge329" class="edge"><title>pnj:elephant&#45;&gt;pnj:brendanodunn</title> 
 +<path fill="none" stroke="black" d="M1102.91,-579.631C1041.26,-553.673 915,-495.123 915,-451 915,-451 915,-451 915,-305 915,-272.464 710.546,-208.937 608.097,-179.147"/> 
 +<polygon fill="black" stroke="black" points="608.792,-175.705 598.213,-176.286 606.846,-182.429 608.792,-175.705"/> 
 +</g> 
 +<!-- pnj:elephant&#45;&gt;lore:lieux:dublin --> 
 +<g id="edge325" class="edge"><title>pnj:elephant&#45;&gt;lore:lieux:dublin</title> 
 +<path fill="none" stroke="black" d="M1141.91,-612.275C1142.71,-620.03 1142.94,-629.362 1142.59,-638.005"/> 
 +<polygon fill="black" stroke="black" points="1139.09,-637.832 1141.88,-648.055 1146.08,-638.327 1139.09,-637.832"/
 +</g> 
 +<!-- lore:corpos:sset --> 
 +<g id="node101" class="node" onclick="click(evt)"><title>lore:corpos:sset</title> 
 +<ellipse fill="#41c2b5" fill-opacity="0.733333" stroke="#41c2b5" stroke-opacity="0.733333" cx="598" cy="-522" rx="68.4888" ry="18"/> 
 +<text text-anchor="middle" x="598" y="-518.3" font-family="Times,serif" font-size="14.00">lore:corpos:sset</text>
 </g> </g>
 <!-- pnj:elephant&#45;&gt;lore:corpos:sset --> <!-- pnj:elephant&#45;&gt;lore:corpos:sset -->
-<g id="edge58" class="edge"><title>pnj:elephant&#45;&gt;lore:corpos:sset</title> +<g id="edge328" class="edge"><title>pnj:elephant&#45;&gt;lore:corpos:sset</title> 
-<path fill="none" stroke="black" d="M1261.2,-300.621C1119.37,-288.63 724.283,-255.229 559.089,-241.264"/> +<path fill="none" stroke="black" d="M1089.03,-585.04C1070.11,-581.98 1048.05,-578.601 1028,-576 872.047,-555.766 831.295,-564.784 676,-540 669.803,-539.011 663.357,-537.84 656.946,-536.582"/> 
-<polygon fill="black" stroke="black" points="559.279,-237.767 549.02,-240.412 558.689,-244.742 559.279,-237.767"/>+<polygon fill="black" stroke="black" points="657.435,-533.11 646.938,-534.548 656.041,-539.97 657.435,-533.11"/>
 </g> </g>
-<!-- pnj:elephant&#45;&gt;pj:ankou --> +<!-- lore:bars:the_hole_in_the_wall&#45;&gt;lore:organisations:ira --> 
-<g id="edge60" class="edge"><title>pnj:elephant&#45;&gt;pj:ankou</title> +<g id="edge305" class="edge"><title>lore:bars:the_hole_in_the_wall&#45;&gt;lore:organisations:ira</title> 
-<path fill="none" stroke="black" d="M1303.08,-288.055C1298.24,-279.801 1292.33,-269.701 1286.96,-260.538"/> +<path fill="none" stroke="black" d="M1280.4,-756.104C1286.17,-764.129 1292.38,-773.871 1297.46,-782.797"/> 
-<polygon fill="black" stroke="black" points="1289.91,-258.649 1281.83,-251.789 1283.87,-262.187 1289.91,-258.649"/>+<polygon fill="black" stroke="black" points="1294.44,-784.574 1302.29,-791.697 1300.6,-781.237 1294.44,-784.574"/>
 </g> </g>
-<!-- lore:lieux:dublin --> +<!-- lore:bars:the_hole_in_the_wall&#45;&gt;pnj:elephant --> 
-<g id="node54" class="node"><title>lore:lieux:dublin</title> +<g id="edge306" class="edge"><title>lore:bars:the_hole_in_the_wall&#45;&gt;pnj:elephant</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfeecx="1515" cy="-234" rx="67.6881" ry="18"/> +<path fill="none" stroke="blackd="M1264.84,-719.746C1264.89,-700.327 1262.16,-668.787 1246,-648 1231.5,-629.349 1208.79,-616.892 1187.75,-608.772"/> 
-<text text-anchor="middlex="1515y="-230.3" font-family="Times,serif" font-size="14.00">lore:lieux:dublin</text>+<polygon fill="blackstroke="blackpoints="1188.83,-605.442 1178.24,-605.34 1186.46,-612.026 1188.83,-605.442"/>
 </g> </g>
-<!-- pnj:elephant&#45;&gt;lore:lieux:dublin --> +<!-- lore:bars:the_hole_in_the_wall&#45;&gt;lore:lieux:dublin --> 
-<g id="edge62" class="edge"><title>pnj:elephant&#45;&gt;lore:lieux:dublin</title> +<g id="edge304" class="edge"><title>lore:bars:the_hole_in_the_wall&#45;&gt;lore:lieux:dublin</title> 
-<path fill="none" stroke="black" d="M1346.04,-291.669C1377.62,-280.162 1425.57,-263.504 1462.38,-251.225"/> +<path fill="none" stroke="black" d="M1228.51,-720.765C1209.6,-711.021 1186.6,-698.524 1168.21,-688.03"/> 
-<polygon fill="black" stroke="black" points="1463.57,-254.516 1471.96,-248.045 1461.37,-247.873 1463.57,-254.516"/>+<polygon fill="black" stroke="black" points="1169.73,-684.87 1159.32,-682.906 1166.24,-690.934 1169.73,-684.87"/>
 </g> </g>
-<!-- pnj:elephant&#45;&gt;lore:organisations:ira --> +<!-- pnj:tristanodunn&#45;&gt;pj:eidolon --> 
-<g id="edge63" class="edge"><title>pnj:elephant&#45;&gt;lore:organisations:ira</title> +<g id="edge52" class="edge"><title>pnj:tristanodunn&#45;&gt;pj:eidolon</title> 
-<path fill="none" stroke="black" d="M1320.53,-323.838C1325.27,-343.457 1331.57,-375.761 1350,-396 1365.04,-412.51 1386.04,-424.043 1406.15,-432.028"/> +<path fill="none" stroke="black" d="M1079.18,-238.231C1226,-247.291 1562,-279.045 1562,-377 1562,-667 1562,-667 1562,-667 1562,-802.558 1491.14,-857.69 1564,-972 1584.09,-1003.52 1610.46,-985.108 1640,-1008 1707.72,-1060.47 1746,-1083.33 1746,-1169 1746,-1315 1746,-1315 1746,-1315 1746,-1542.54 1621.51,-1571.62 1500,-1764 1495.23,-1771.55 1377.07,-1939.7 1341,-1980 1078.53,-2273.26 905.722,-2255.87 701,-2592 570.859,-2805.68 627.294,-2896.8 542,-3132 538.635,-3141.28 534.458,-3151.26 530.08,-3160.02"/> 
-<polygon fill="black" stroke="black" points="1405.02,-435.341 1415.61,-435.561 1407.47,-428.783 1405.02,-435.341"/>+<polygon fill="black" stroke="black" points="526.923,-3158.5 525.279,-3168.97 533.091,-3161.81 526.923,-3158.5"/>
 </g> </g>
-<!-- lore:lieux:dublin&#45;&gt;lore:lieux:tir_na_nog --> +<!-- pnj:tristanodunn&#45;&gt;lore:lieux:tir_na_nog --> 
-<g id="edge377" class="edge"><title>lore:lieux:dublin&#45;&gt;lore:lieux:tir_na_nog</title> +<g id="edge51" class="edge"><title>pnj:tristanodunn&#45;&gt;lore:lieux:tir_na_nog</title> 
-<path fill="none" stroke="black" d="M1450.16,-239.16C1394.74,-244.734 1314.06,-257.736 1250,-288 1137.24,-341.274 1030.79,-448.712 986.547,-496.786"/> +<path fill="none" stroke="black" d="M1075.4,-241.354C1200.7,-255.673 1468,-295.742 1468,-377 1468,-667 1468,-667 1468,-667 1468,-744.504 1463.85,-782.652 1401,-828 1351.41,-863.781 958.515,-875.819 775.374,-879.512"/> 
-<polygon fill="black" stroke="black" points="983.898,-494.496 979.746,-504.243 989.071,-499.213 983.898,-494.496"/>+<polygon fill="black" stroke="black" points="775.144,-876.016 765.215,-879.713 775.283,-883.015 775.144,-876.016"/>
 </g> </g>
-<!-- lore:lieux:dublin&#45;&gt;pnj:elephant --> +<!-- pnj:tristanodunn&#45;&gt;lore:organisations:danann_o_dunn --> 
-<g id="edge378" class="edge"><title>lore:lieux:dublin&#45;&gt;pnj:elephant</title> +<g id="edge55" class="edge"><title>pnj:tristanodunn&#45;&gt;lore:organisations:danann_o_dunn</title> 
-<path fill="none" stroke="black" d="M1479.3,-249.298C1446.62,-261.16 1398.13,-277.974 1361.88,-290.02"/> +<path fill="none" stroke="black" d="M960.602,-221.891C886.65,-204.76 746.4,-171.043 627,-144 572.432,-131.641 510.88,-118.328 464.262,-108.137"/> 
-<polygon fill="black" stroke="black" points="1360.4,-286.823 1352,-293.284 1362.6,-293.47 1360.4,-286.823"/>+<polygon fill="black" stroke="black" points="464.767,-104.664 454.25,-105.945 463.271,-111.502 464.767,-104.664"/>
 </g> </g>
-<!-- pnj:obrennan --> +<!-- pnj:tristanodunn&#45;&gt;pnj:brendanodunn --> 
-<g id="node136" class="node"><title>pnj:obrennan</title> +<g id="edge50" class="edge"><title>pnj:tristanodunn&#45;&gt;pnj:brendanodunn</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfeecx="1665" cy="-162" rx="57.6901" ry="18"/> +<path fill="none" stroke="blackd="M957.307,-223.043C944.985,-220.589 932.031,-218.073 920,-216 818.336,-198.479 700.533,-182.668 625.839,-172.967"/> 
-<text text-anchor="middlex="1665y="-158.3" font-family="Times,serif" font-size="14.00">pnj:obrennan</text>+<polygon fill="blackstroke="blackpoints="625.959,-169.453 615.592,-171.639 625.059,-176.395 625.959,-169.453"/>
 </g> </g>
-<!-- lore:lieux:dublin&#45;&gt;pnj:obrennan --> +<!-- pnj:tristanodunn&#45;&gt;pnj:williamodunn --> 
-<g id="edge379" class="edge"><title>lore:lieux:dublin&#45;&gt;pnj:obrennan</title> +<g id="edge53" class="edge"><title>pnj:tristanodunn&#45;&gt;pnj:williamodunn</title> 
-<path fill="none" stroke="black" d="M1542.57,-217.465C1564.62,-206.571 1595.79,-191.99 1621.22,-180.656"/> +<path fill="none" stroke="black" d="M953.272,-243.492C857.236,-256.749 667.07,-282.256 562.685,-295.886"/> 
-<polygon fill="black" stroke="black" points="1622.92,-183.73 1630.65,-176.485 1620.09,-177.328 1622.92,-183.73"/>+<polygon fill="black" stroke="black" points="562.013,-292.444 552.549,-297.208 562.918,-299.386 562.013,-292.444"/>
 </g> </g>
-<!-- lore:bars:the_hole_in_the_wall --> +<!-- pnj:tristanodunn&#45;&gt;pnj:eidanodunn --> 
-<g id="node142" class="node"><title>lore:bars:the_hole_in_the_wall</title> +<g id="edge54" class="edge"><title>pnj:tristanodunn&#45;&gt;pnj:eidanodunn</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfeecx="1470" cy="-378" rx="120.479" ry="18"/> +<path fill="none" stroke="blackd="M965.695,-247.497C862.228,-274.07 612.81,-336 498.683,-363.467"/> 
-<text text-anchor="middlex="1470y="-374.3" font-family="Times,serif" font-size="14.00">lore:bars:the_hole_in_the_wall</text>+<polygon fill="blackstroke="blackpoints="497.633,-360.119 488.727,-365.857 499.268,-366.926 497.633,-360.119"/>
 </g> </g>
-<!-- lore:lieux:dublin&#45;&gt;lore:bars:the_hole_in_the_wall --> +<!-- pnj:brendanodunn&#45;&gt;lore:lieux:tir_na_nog --> 
-<g id="edge376" class="edge"><title>lore:lieux:dublin&#45;&gt;lore:bars:the_hole_in_the_wall</title> +<g id="edge246" class="edge"><title>pnj:brendanodunn&#45;&gt;lore:lieux:tir_na_nog</title> 
-<path fill="none" stroke="black" d="M1514.14,-252.189C1508.97,-276.638 1494.97,-321.673 1483.82,-350.436"/> +<path fill="none" stroke="black" d="M505.901,-176.58C403.213,-210.442 163.355,-307.622 197,-468 199.242,-478.688 346.366,-821.313 355,-828 391.048,-855.917 507.88,-869.583 591.6,-875.943"/> 
-<polygon fill="black" stroke="black" points="1480.51,-349.288 1480.01,-359.871 1487,-351.907 1480.51,-349.288"/>+<polygon fill="black" stroke="black" points="591.408,-879.438 601.638,-876.683 591.923,-872.457 591.408,-879.438"/>
 </g> </g>
-<!-- lore:organisations:ira&#45;&gt;lore:lieux:tir_na_nog --> +<!-- pnj:brendanodunn&#45;&gt;lore:organisations:danann_o_dunn --> 
-<g id="edge400" class="edge"><title>lore:organisations:ira&#45;&gt;lore:lieux:tir_na_nog</title> +<g id="edge248" class="edge"><title>pnj:brendanodunn&#45;&gt;lore:organisations:danann_o_dunn</title> 
-<path fill="none" stroke="black" d="M1399.6,-461.083C1307.61,-474.25 1143.12,-497.189 1044.99,-510.54"/> +<path fill="none" stroke="black" d="M512.255,-146.496C487.994,-136.447 456.859,-122.917 432.164,-111.733"/> 
-<polygon fill="black" stroke="black" points="1044.27,-507.106 1034.83,-511.92 1045.21,-514.042 1044.27,-507.106"/>+<polygon fill="black" stroke="black" points="433.594,-108.538 423.043,-107.573 430.689,-114.907 433.594,-108.538"/>
 </g> </g>
-<!-- lore:organisations:ira&#45;&gt;pnj:elephant --> +<!-- pnj:brendanodunn&#45;&gt;pnj:tristanodunn --> 
-<g id="edge397" class="edge"><title>lore:organisations:ira&#45;&gt;pnj:elephant</title> +<g id="edge247" class="edge"><title>pnj:brendanodunn&#45;&gt;pnj:tristanodunn</title> 
-<path fill="none" stroke="black" d="M1405.28,-437.549C1379.34,-429.691 1350.94,-416.791 1332,-396 1316.54,-379.024 1309.62,-353.561 1308.04,-334.214"/> +<path fill="none" stroke="black" d="M618.41,-170.365C695.954,-179.673 826.656,-196.811 938,-216 943.345,-216.921 948.872,-217.93 954.392,-218.981"/> 
-<polygon fill="black" stroke="black" points="1311.54,-334.062 1307.7,-324.188 1304.54,-334.302 1311.54,-334.062"/>+<polygon fill="black" stroke="black" points="953.791,-222.43 964.277,-220.911 955.133,-215.56 953.791,-222.43"/>
 </g> </g>
-<!-- lore:organisations:ira&#45;&gt;pnj:obrennan --> +<!-- pnj:brendanodunn&#45;&gt;pnj:williamodunn --> 
-<g id="edge398" class="edge"><title>lore:organisations:ira&#45;&gt;pnj:obrennan</title> +<g id="edge249" class="edge"><title>pnj:brendanodunn&#45;&gt;pnj:williamodunn</title> 
-<path fill="none" stroke="black" d="M1522.14,-436.222C1545.88,-428.361 1572.16,-415.83 1590,-396 1643.21,-336.84 1653.82,-237.807 1659.37,-190.19"/> +<path fill="none" stroke="black" d="M543.616,-180.189C533.113,-204.638 513.767,-249.673 501.411,-278.436"/> 
-<polygon fill="black" stroke="black" points="1662.87,-190.389 1660.59,-180.042 1655.92,-189.551 1662.87,-190.389"/>+<polygon fill="black" stroke="black" points="498.089,-277.302 497.358,-287.871 504.521,-280.065 498.089,-277.302"/>
 </g> </g>
-<!-- lore:organisations:ira&#45;&gt;lore:bars:the_hole_in_the_wall --> +<!-- pnj:brendanodunn&#45;&gt;lore:corpos:sset --> 
-<g id="edge399" class="edge"><title>lore:organisations:ira&#45;&gt;lore:bars:the_hole_in_the_wall</title> +<g id="edge245" class="edge"><title>pnj:brendanodunn&#45;&gt;lore:corpos:sset</title> 
-<path fill="none" stroke="black" d="M1461.83,-431.697C1461.36,-423.983 1461.53,-414.712 1462.24,-406.112"/> +<path fill="none" stroke="black" d="M566.277,-179.889C583.245,-205.905 607,-257.738 607,-305 607,-379 607,-379 607,-379 607,-419.004 607,-465.347 604.708,-493.92"/> 
-<polygon fill="black" stroke="black" points="1465.73,-406.434 1463.37,-396.104 1458.77,-405.649 1465.73,-406.434"/>+<polygon fill="black" stroke="black" points="601.217,-493.654 603.712,-503.951 608.183,-494.345 601.217,-493.654"/>
 </g> </g>
-<!-- pnj:jinhong&#45;&gt;lore:lieux:munich --> +<!-- pnj:williamodunn&#45;&gt;pj:eidolon --> 
-<g id="edge66" class="edge"><title>pnj:jinhong&#45;&gt;lore:lieux:munich</title> +<g id="edge288" class="edge"><title>pnj:williamodunn&#45;&gt;pj:eidolon</title> 
-<path fill="none" stroke="black" d="M2371.26,-962.162C2269.68,-978.863 2031,-1024.56 2031,-1097 2031,-1171 2031,-1171 2031,-1171 2031,-1309.33 2257,-1246.67 2257,-1385 2257,-1675 2257,-1675 2257,-1675 2257,-1771.6 2295,-1792.4 2295,-1889 2295,-1963 2295,-1963 2295,-1963 2295,-2069.2 2281.34,-2113.33 2348,-2196 2371.71,-2225.41 2401.21,-2202.65 2425,-2232 2492.69,-2315.53 2498.17,-2452.01 2493.01,-2509.79"/> +<path fill="none" stroke="black" d="M460.958,-322.501C437.417,-333.048 403.706,-347.337 374,-360 299.272,-391.856 268.035,-379.552 206,-432 111.95,-511.515 56,-541.841 56,-665 56,-2827 56,-2827 56,-2827 56,-2971.87 58.4145,-3040.83 171,-3132 213.857,-3166.71 369.238,-3178.82 454.039,-3182.94"/> 
-<polygon fill="black" stroke="black" points="2489.51,-2509.62 2491.89,-2519.95 2496.47,-2510.39 2489.51,-2509.62"/>+<polygon fill="black" stroke="black" points="454.117,-3186.45 464.268,-3183.42 454.442,-3179.46 454.117,-3186.45"/>
 </g> </g>
-<!-- pnj:jinhong&#45;&gt;lore:organisations:mi&#45;seng_lung --> +<!-- pnj:williamodunn&#45;&gt;lore:lieux:tir_na_nog --> 
-<g id="edge65" class="edge"><title>pnj:jinhong&#45;&gt;lore:organisations:mi&#45;seng_lung</title> +<g id="edge287" class="edge"><title>pnj:williamodunn&#45;&gt;lore:lieux:tir_na_nog</title> 
-<path fill="none" stroke="black" d="M2464.65,-958.306C2518.17,-962.169 2606.29,-968.48 2682,-972 2756.39,-975.458 3960.35,-966.225 4022,-1008 4114.17,-1070.46 4119.56,-1222.77 4113.26,-1285.41"/> +<path fill="none" stroke="black" d="M500.365,-323.969C505.903,-334.043 512.153,-347.293 515,-360 537.672,-461.208 502,-489.283 502,-593 502,-667 502,-667 502,-667 502,-745.939 522.068,-771.31 577,-828 591.339,-842.798 610.689,-854.165 628.87,-862.506"/> 
-<polygon fill="black" stroke="black" points="4109.75,-1285.33 4112.02,-1295.68 4116.7,-1286.17 4109.75,-1285.33"/>+<polygon fill="black" stroke="black" points="627.674,-865.803 638.239,-866.595 630.474,-859.387 627.674,-865.803"/>
 </g> </g>
-<!-- pnj:jinhong&#45;&gt;pj:splenters --> +<!-- pnj:williamodunn&#45;&gt;lore:organisations:danann_o_dunn --> 
-<g id="edge64" class="edge"><title>pnj:jinhong&#45;&gt;pj:splenters</title> +<g id="edge291" class="edge"><title>pnj:williamodunn&#45;&gt;lore:organisations:danann_o_dunn</title> 
-<path fill="none" stroke="black" d="M2391.4,-938.155C2374.6,-928.015 2352.12,-914.452 2333.66,-903.313"/> +<path fill="none" stroke="black" d="M478.389,-288.208C457.672,-251.186 416.285,-162.297 398.668,-117.604"/> 
-<polygon fill="black" stroke="black" points="2335.34,-900.235 2324.97,-898.065 2331.72,-906.228 2335.34,-900.235"/>+<polygon fill="black" stroke="black" points="401.842,-116.104 395.005,-108.01 395.302,-118.601 401.842,-116.104"/>
 </g> </g>
-<!-- pnj:song_mi&#45;&gt;lore:lieux:munich --> +<!-- pnj:williamodunn&#45;&gt;pnj:tristanodunn --> 
-<g id="edge67" class="edge"><title>pnj:song_mi&#45;&gt;lore:lieux:munich</title> +<g id="edge289" class="edge"><title>pnj:williamodunn&#45;&gt;pnj:tristanodunn</title> 
-<path fill="none" stroke="black" d="M2282.96,-2268.08C2293.54,-2316.24 2311.75,-2451.75 2341,-2484 2360.57,-2505.58 2389.29,-2518.37 2416.13,-2525.96"/> +<path fill="none" stroke="black" d="M550.412,-296.276C647.593,-282.869 837.962,-257.339 941.303,-243.854"/> 
-<polygon fill="black" stroke="black" points="2415.35,-2529.37 2425.91,-2528.53 2417.13,-2522.6 2415.35,-2529.37"/>+<polygon fill="black" stroke="black" points="941.867,-247.31 951.331,-242.548 940.963,-240.369 941.867,-247.31"/>
 </g> </g>
-<!-- pnj:song_mi&#45;&gt;lore:organisations:munich_people_voice --> +<!-- pnj:williamodunn&#45;&gt;pnj:eidanodunn --> 
-<g id="edge68" class="edge"><title>pnj:song_mi&#45;&gt;lore:organisations:munich_people_voice</title> +<g id="edge290" class="edge"><title>pnj:williamodunn&#45;&gt;pnj:eidanodunn</title> 
-<path fill="none" stroke="black" d="M2245.97,-2264.9C2220.03,-2275.31 2182.47,-2289.67 2151.02,-2301.26"/> +<path fill="none" stroke="black" d="M483.768,-323.956C478.559,-332.519 471.224,-343.065 463.978,-352.493"/> 
-<polygon fill="black" stroke="black" points="2149.66,-2298.04 2141.48,-2304.76 2152.07,-2304.61 2149.66,-2298.04"/>+<polygon fill="black" stroke="black" points="461.168,-350.403 457.689,-360.411 466.649,-354.757 461.168,-350.403"/>
 </g> </g>
-<!-- lore:organisations:munich_people_voice&#45;&gt;lore:lieux:munich --> +<!-- pnj:eidanodunn&#45;&gt;pj:eidolon --> 
-<g id="edge136" class="edge"><title>lore:organisations:munich_people_voice&#45;&gt;lore:lieux:munich</title> +<g id="edge494" class="edge"><title>pnj:eidanodunn&#45;&gt;pj:eidolon</title> 
-<path fill="none" stroke="black" d="M2090.15,-2340.07C2080.14,-2372.49 2056.35,-2443.37 2092,-2484 2112.73,-2507.62 2299.34,-2523.99 2408.55,-2531.79"/> +<path fill="none" stroke="black" d="M415.826,-394.744C345.966,-438.446 150,-569.171 150,-737 150,-3043 150,-3043 150,-3043 150,-3101.18 194.118,-3105.67 246,-3132 312.672,-3165.84 398.582,-3178.13 454.064,-3182.56"/> 
-<polygon fill="black" stroke="black" points="2408.32,-2535.28 2418.54,-2532.49 2408.81,-2528.3 2408.32,-2535.28"/>+<polygon fill="black" stroke="black" points="453.827,-3186.06 464.058,-3183.3 454.343,-3179.08 453.827,-3186.06"/>
 </g> </g>
-<!-- lore:organisations:munich_people_voice&#45;&gt;pnj:song_mi --> +<!-- pnj:eidanodunn&#45;&gt;lore:lieux:tir_na_nog --> 
-<g id="edge137" class="edge"><title>lore:organisations:munich_people_voice&#45;&gt;pnj:song_mi</title> +<g id="edge492" class="edge"><title>pnj:eidanodunn&#45;&gt;lore:lieux:tir_na_nog</title> 
-<path fill="none" stroke="black" d="M2130.77,-2304.41C2159.44,-2293.03 2198.94,-2278.02 2229.7,-2266.8"/> +<path fill="none" stroke="black" d="M455.652,-395.686C463.728,-405.462 472.758,-418.512 477,-432 498.539,-500.481 464,-521.212 464,-593 464,-667 464,-667 464,-667 464,-742.473 462.484,-776.871 518,-828 541.037,-849.217 572.652,-861.944 601.979,-869.577"/> 
-<polygon fill="black" stroke="black" points="2231.15,-2270 2239.36,-2263.31 2228.77,-2263.42 2231.15,-2270"/>+<polygon fill="black" stroke="black" points="601.276,-873.008 611.821,-871.975 602.934,-866.207 601.276,-873.008"/>
 </g> </g>
-<!-- pnj:fenihilung&#45;&gt;lore:lieux:munich --> +<!-- pnj:eidanodunn&#45;&gt;lore:organisations:danann_o_dunn --> 
-<g id="edge355" class="edge"><title>pnj:fenihilung&#45;&gt;lore:lieux:munich</title> +<g id="edge496" class="edge"><title>pnj:eidanodunn&#45;&gt;lore:organisations:danann_o_dunn</title> 
-<path fill="none" stroke="black" d="M3927.62,-1043.27C3896.9,-1066.12 3834.79,-1109.67 3786,-1152 3722.18,-1207.37 3559,-1372.51 3559,-1457 3559,-1963 3559,-1963 3559,-1963 3559,-2126.53 3474,-2157.47 3474,-2321 3474,-2395 3474,-2395 3474,-2395 3474,-2437.19 3474.94,-2458.95 3441,-2484 3371.99,-2534.94 2786.84,-2538.04 2568.57,-2537.45"/> +<path fill="none" stroke="black" d="M420.465,-360.669C412.712,-350.6 405.039,-337.138 401,-324 378.912,-252.142 378.84,-162.29 383.898,-118.101"/> 
-<polygon fill="black" stroke="black" points="2568.47,-2533.95 2558.46,-2537.42 2568.45,-2540.95 2568.47,-2533.95"/>+<polygon fill="black" stroke="black" points="387.374,-118.516 385.244,-108.138 380.437,-117.579 387.374,-118.516"/>
 </g> </g>
-<!-- pnj:fenihilung&#45;&gt;lore:organisations:mi&#45;seng_lung --> +<!-- pnj:eidanodunn&#45;&gt;pnj:tristanodunn --> 
-<g id="edge356" class="edge"><title>pnj:fenihilung&#45;&gt;lore:organisations:mi&#45;seng_lung</title> +<g id="edge497" class="edge"><title>pnj:eidanodunn&#45;&gt;pnj:tristanodunn</title> 
-<path fill="none" stroke="black" d="M4001.97,-1031.26C4075.01,-1040.21 4199.77,-1067.76 4256,-1152 4283.79,-1193.64 4258.72,-1223.93 4224,-1260 4209.94,-1274.61 4191,-1285.76 4172.43,-1293.98"/> +<path fill="none" stroke="black" d="M485.267,-364.77C587.678,-338.453 836.782,-276.595 951.922,-248.869"/> 
-<polygon fill="black" stroke="black" points="4170.94,-1290.8 4163.07,-1297.89 4173.65,-1297.26 4170.94,-1290.8"/>+<polygon fill="black" stroke="black" points="953.068,-252.194 961.973,-246.454 951.432,-245.387 953.068,-252.194"/>
 </g> </g>
-<!-- pnj:fenihilung&#45;&gt;pnj:niddon --> +<!-- pnj:eidanodunn&#45;&gt;pnj:williamodunn --> 
-<g id="edge357" class="edge"><title>pnj:fenihilung&#45;&gt;pnj:niddon</title> +<g id="edge495" class="edge"><title>pnj:eidanodunn&#45;&gt;pnj:williamodunn</title> 
-<path fill="none" stroke="black" d="M3951.91,-1044.28C3952.71,-1052.03 3952.94,-1061.36 3952.59,-1070.01"/> +<path fill="none" stroke="black" d="M446.225,-360.055C451.402,-351.543 458.683,-341.068 465.888,-331.681"/> 
-<polygon fill="black" stroke="black" points="3949.09,-1069.83 3951.88,-1080.05 3956.08,-1070.33 3949.09,-1069.83"/>+<polygon fill="black" stroke="black" points="468.676,-333.799 472.146,-323.789 463.191,-329.45 468.676,-333.799"/>
 </g> </g>
-<!-- pnj:keito_lung&#45;&gt;lore:lieux:munich --> +<!-- pnj:eidanodunn&#45;&gt;pnj:lilalee --> 
-<g id="edge418" class="edge"><title>pnj:keito_lung&#45;&gt;lore:lieux:munich</title> +<g id="edge493" class="edge"><title>pnj:eidanodunn&#45;&gt;pnj:lilalee</title> 
-<path fill="none" stroke="black" d="M3492.95,-971.869C3512.89,-1018.55 3550.51,-1153.07 3522,-1260 3496.96,-1353.92 3427,-1359.8 3427,-1457 3427,-1963 3427,-1963 3427,-1963 3427,-2060.38 3380,-2079.62 3380,-2177 3380,-2395 3380,-2395 3380,-2395 3380,-2439.32 3372.01,-2459.6 3335,-2484 3272.35,-2525.31 2768.81,-2534.45 2568.59,-2536.45"/> +<path fill="none" stroke="black" d="M406.213,-393.509C374.754,-405.675 327.872,-422.939 293.615,-434.969"/> 
-<polygon fill="black" stroke="black" points="2568.39,-2532.95 2558.43,-2536.55 2568.46,-2539.95 2568.39,-2532.95"/>+<polygon fill="black" stroke="black" points="292.156,-431.771 283.866,-438.369 294.461,-438.381 292.156,-431.771"/>
 </g> </g>
-<!-- pnj:keito_lung&#45;&gt;lore:organisations:mi&#45;seng_lung --> +<!-- lore:lieux:dublin&#45;&gt;lore:lieux:tir_na_nog --> 
-<g id="edge417" class="edge"><title>pnj:keito_lung&#45;&gt;lore:organisations:mi&#45;seng_lung</title> +<g id="edge59" class="edge"><title>lore:lieux:dublin&#45;&gt;lore:lieux:tir_na_nog</title> 
-<path fill="none" stroke="black" d="M3537.16,-962.672C3558.68,-965.925 3583.52,-969.527 3606,-972 3717.83,-984.306 4004.32,-972.257 4111,-1008 4216.5,-1043.35 4301.44,-1077.95 4285,-1188 4280.06,-1221.09 4286.07,-1235.76 4263,-1260 4246.07,-1277.79 4222.73,-1289.63 4199.23,-1297.49"/> +<path fill="none" stroke="black" d="M1104.32,-681.933C1024.36,-719.625 814.318,-818.63 724.13,-861.141"/> 
-<polygon fill="black" stroke="black" points="4198.03,-1294.2 4189.53,-1300.53 4200.12,-1300.88 4198.03,-1294.2"/>+<polygon fill="black" stroke="black" points="722.569,-858.008 715.016,-865.437 725.554,-864.339 722.569,-858.008"/>
 </g> </g>
-<!-- pnj:keito_lung&#45;&gt;lore:objets:nanoforge --> +<!-- lore:lieux:dublin&#45;&gt;pnj:obrennan --> 
-<g id="edge416" class="edge"><title>pnj:keito_lung&#45;&gt;lore:objets:nanoforge</title> +<g id="edge56" class="edge"><title>lore:lieux:dublin&#45;&gt;pnj:obrennan</title> 
-<path fill="none" stroke="black" d="M3438.69,-966.576C3409.58,-975.345 3371.4,-989.123 3341,-1008 3281.43,-1044.98 3277.28,-1068.18 3226,-1116 3188.15,-1151.29 3144.14,-1191.98 3116.93,-1217.09"/> +<path fill="none" stroke="black" d="M1096.36,-651.337C1067.7,-640.47 1029.26,-625.165 1000.62,-613.25"/> 
-<polygon fill="black" stroke="black" points="3114.36,-1214.7 3109.38,-1224.06 3119.1,-1219.85 3114.36,-1214.7"/>+<polygon fill="black" stroke="black" points="1001.88,-609.985 991.303,-609.35 999.175,-616.441 1001.88,-609.985"/>
 </g> </g>
-<!-- pnj:keito_lung&#45;&gt;pnj:yu_mi&#45;seng --> +<!-- lore:lieux:dublin&#45;&gt;pnj:elephant --> 
-<g id="edge415" class="edge"><title>pnj:keito_lung&#45;&gt;pnj:yu_mi&#45;seng</title> +<g id="edge57" class="edge"><title>lore:lieux:dublin&#45;&gt;pnj:elephant</title> 
-<path fill="none" stroke="black" d="M3539.48,-946.665C3653.86,-933.833 3912.61,-904.806 4037.28,-890.821"/> +<path fill="none" stroke="black" d="M1130.12,-648.055C1129.3,-640.346 1129.06,-631.027 1129.39,-622.364"/> 
-<polygon fill="black" stroke="black" points="4037.92,-894.271 4047.47,-889.678 4037.14,-887.315 4037.92,-894.271"/>+<polygon fill="black" stroke="black" points="1132.89,-622.491 1130.09,-612.275 1125.91,-622.012 1132.89,-622.491"/>
 </g> </g>
-<!-- pnj:yu_mi&#45;seng&#45;&gt;lore:lieux:munich --> +<!-- lore:lieux:dublin&#45;&gt;lore:bars:the_hole_in_the_wall --> 
-<g id="edge305" class="edge"><title>pnj:yu_mi&#45;seng&#45;&gt;lore:lieux:munich</title> +<g id="edge58" class="edge"><title>lore:lieux:dublin&#45;&gt;lore:bars:the_hole_in_the_wall</title> 
-<path fill="none" stroke="black" d="M4073.5,-897.637C4027.39,-918.59 3942.84,-959.951 3879,-1008 3775.02,-1086.26 3503,-1326.86 3503,-1457 3503,-1963 3503,-1963 3503,-1963 3503,-2065.34 3418,-2074.66 3418,-2177 3418,-2395 3418,-2395 3418,-2395 3418,-2440.59 3405.74,-2459.97 3367,-2484 3300.21,-2525.44 2774.06,-2534.5 2568.7,-2536.46"/> +<path fill="none" stroke="black" d="M1169.01,-681.963C1187.86,-691.617 1211.34,-704.339 1230.3,-715.119"/> 
-<polygon fill="black" stroke="black" points="2568.54,-2532.96 2558.58,-2536.56 2568.61,-2539.96 2568.54,-2532.96"/>+<polygon fill="black" stroke="black" points="1228.79,-718.286 1239.2,-720.233 1232.27,-712.217 1228.79,-718.286"/>
 </g> </g>
-<!-- pnj:yu_mi&#45;seng&#45;&gt;lore:organisations:mi&#45;seng_lung --> +<!-- pnj:rufus&#45;&gt;lore:organisations:camorra --> 
-<g id="edge306" class="edge"><title>pnj:yu_mi&#45;seng&#45;&gt;lore:organisations:mi&#45;seng_lung</title> +<g id="edge424" class="edge"><title>pnj:rufus&#45;&gt;lore:organisations:camorra</title> 
-<path fill="none" stroke="black" d="M4157.79,-893.514C4216.29,-908.998 4310.71,-943.357 4363,-1008 4434.23,-1096.06 4473.4,-1172.89 4401,-1260 4388.83,-1274.64 4291.52,-1290.48 4212.09,-1301"/> +<path fill="none" stroke="black" d="M3606.56,-1309.96C3552.75,-1306.13 3455.91,-1299.6 3373,-1296 2613.91,-1263 1699.95,-1248.66 1382.36,-1244.42"/> 
-<polygon fill="black" stroke="black" points="4211.46,-1297.55 4202,-1302.32 4212.37,-1304.49 4211.46,-1297.55"/>+<polygon fill="black" stroke="black" points="1382.28,-1240.92 1372.23,-1244.29 1382.18,-1247.92 1382.28,-1240.92"/>
 </g> </g>
-<!-- pnj:tutoko&#45;&gt;lore:lieux:munich --> +<!-- pnj:rufus&#45;&gt;lore:lieux:gemito --> 
-<g id="edge154" class="edge"><title>pnj:tutoko&#45;&gt;lore:lieux:munich</title> +<g id="edge423" class="edge"><title>pnj:rufus&#45;&gt;lore:lieux:gemito</title> 
-<path fill="none" stroke="black" d="M3931.15,-1259.1C3886.64,-1305.3 3759.68,-1443.97 3697,-1584 3680.26,-1621.39 3673,-1632.03 3673,-1673 3673,-1747 3673,-1747 3673,-1747 3673,-1842.98 3644,-1865.02 3644,-1961 3644,-2035 3644,-2035 3644,-2035 3644,-2168.8 3550,-2187.2 3550,-2321 3550,-2395 3550,-2395 3550,-2395 3550,-2435.97 3557.88,-2458.27 3526,-2484 3488.91,-2513.94 2806.42,-2530.54 2568.21,-2535.44"/> +<path fill="none" stroke="black" d="M3625.91,-1329.35C3607.01,-1339.85 3579.46,-1354.23 3556.25,-1365.74"/> 
-<polygon fill="black" stroke="black" points="2567.81,-2531.95 2557.89,-2535.66 2567.96,-2538.95 2567.81,-2531.95"/>+<polygon fill="black" stroke="black" points="3554.7,-1362.6 3547.27,-1370.15 3557.78,-1368.88 3554.7,-1362.6"/>
 </g> </g>
-<!-- pnj:tutoko&#45;&gt;lore:organisations:mi&#45;seng_lung --> +<!-- pnj:rufus&#45;&gt;pnj:meredith --> 
-<g id="edge153" class="edge"><title>pnj:tutoko&#45;&gt;lore:organisations:mi&#45;seng_lung</title> +<g id="edge425" class="edge"><title>pnj:rufus&#45;&gt;pnj:meredith</title> 
-<path fill="none" stroke="black" d="M3979.77,-1255.04C4004.82,-1265.3 4039.35,-1280.26 4066.17,-1292.42"/> +<path fill="none" stroke="black" d="M3660.99,-1296.76C3670.89,-1287.29 3684.7,-1275.21 3697.35,-1264.9"/> 
-<polygon fill="black" stroke="black" points="4064.76,-1295.62 4075.31,-1296.59 4067.66,-1289.25 4064.76,-1295.62"/>+<polygon fill="black" stroke="black" points="3699.82,-1267.41 3705.44,-1258.43 3695.45,-1261.94 3699.82,-1267.41"/>
 </g> </g>
-<!-- pnj:niddon&#45;&gt;lore:lieux:munich --> +<!-- pnj:marcello&#45;&gt;lore:lieux:gemito --> 
-<g id="edge183" class="edge"><title>pnj:niddon&#45;&gt;lore:lieux:munich</title> +<g id="edge142" class="edge"><title>pnj:marcello&#45;&gt;lore:lieux:gemito</title> 
-<path fill="none" stroke="black" d="M3896.63,-1099.98C3759.1,-1103.07 3379.53,-1114.77 3338,-1152 3259.4,-1222.45 3292,-1279.45 3292,-1385 3292,-1603 3292,-1603 3292,-1603 3292,-1858.13 3286,-1921.87 3286,-2177 3286,-2395 3286,-2395 3286,-2395 3286,-2437.19 3286.77,-2458.71 3253,-2484 3199.48,-2524.08 2754.78,-2533.92 2568.49,-2536.28"/> +<path fill="none" stroke="black" d="M3217.71,-1260C3226.59,-1280.39 3239.91,-1314.09 3264,-1332 3292,-1352.82 3378.28,-1367.65 3441.51,-1376.23"/> 
-<polygon fill="black" stroke="black" points="2568.44,-2532.78 2558.48,-2536.4 2568.52,-2539.78 2568.44,-2532.78"/>+<polygon fill="black" stroke="black" points="3441.07,-1379.71 3451.45,-1377.56 3442,-1372.77 3441.07,-1379.71"/>
 </g> </g>
-<!-- pnj:niddon&#45;&gt;lore:organisations:mi&#45;seng_lung --> +<!-- pnj:marcello&#45;&gt;lore:gangs:groupe_leonkavallo --> 
-<g id="edge184" class="edge"><title>pnj:niddon&#45;&gt;lore:organisations:mi&#45;seng_lung</title> +<g id="edge140" class="edge"><title>pnj:marcello&#45;&gt;lore:gangs:groupe_leonkavallo</title> 
-<path fill="none" stroke="black" d="M3971.48,-1113.47C4002.2,-1134.84 4052.71,-1177.38 4083,-1224 4095.38,-1243.06 4104,-1267.42 4107.91,-1285.83"/> +<path fill="none" stroke="black" d="M3197.41,-1224.1C3191.82,-1206.08 3186.05,-1176.77 3179,-1152 3176.59,-1143.54 3173.53,-1134.48 3170.96,-1126.28"/> 
-<polygon fill="black" stroke="black" points="4104.5,-1286.65 4109.66,-1295.9 4111.4,-1285.45 4104.5,-1286.65"/>+<polygon fill="black" stroke="black" points="3174.25,-1125.07 3168.06,-1116.47 3167.54,-1127.06 3174.25,-1125.07"/>
 </g> </g>
-<!-- pnj:niddon&#45;&gt;pj:splenters --> +<!-- lore:lieux:milan --> 
-<g id="edge186" class="edge"><title>pnj:niddon&#45;&gt;pj:splenters</title> +<g id="node71" class="node" onclick="click(evt)"><title>lore:lieux:milan</title> 
-<path fill="none" stroke="blackd="M3905.55,-1087.49C3838.4,-1070.65 3701,-1031.61 3597,-972 3575.38,-959.605 3577.24,-944.996 3554,-936 3464.19,-901.239 2784.22,-904.108 2688,-900 2572.67,-895.076 2438.07,-889.135 2361.56,-885.74"/> +<ellipse fill="#021dcd" fill-opacity="0.733333" stroke="#021dcdstroke-opacity="0.733333" cx="3115" cy="-1170" rx="63.8893" ry="18"/> 
-<polygon fill="blackstroke="blackpoints="2361.3,-882.225 2351.15,-885.278 2360.99,-889.218 2361.3,-882.225"/>+<text text-anchor="middlex="3115y="-1166.3" font-family="Times,serif" font-size="14.00">lore:lieux:milan</text>
 </g> </g>
-<!-- pnj:niddon&#45;&gt;pnj:fenihilung --> +<!-- pnj:marcello&#45;&gt;lore:lieux:milan --> 
-<g id="edge182" class="edge"><title>pnj:niddon&#45;&gt;pnj:fenihilung</title> +<g id="edge141" class="edge"><title>pnj:marcello&#45;&gt;lore:lieux:milan</title> 
-<path fill="none" stroke="black" d="M3940.12,-1080.05C3939.3,-1072.35 3939.06,-1063.03 3939.39,-1054.36"/> +<path fill="none" stroke="black" d="M3181.36,-1225.81C3168.1,-1216.58 3152.11,-1204.6 3139.08,-1194.19"/> 
-<polygon fill="black" stroke="black" points="3942.89,-1054.49 3940.09,-1044.28 3935.91,-1054.01 3942.89,-1054.49"/>+<polygon fill="black" stroke="black" points="3140.98,-1191.22 3131.01,-1187.63 3136.56,-1196.65 3140.98,-1191.22"/>
 </g> </g>
-<!-- pnj:niddon&#45;&gt;pnj:yu_mi&#45;seng --> +<!-- pnj:meredith&#45;&gt;pj:oggodt --> 
-<g id="edge185" class="edge"><title>pnj:niddon&#45;&gt;pnj:yu_mi&#45;seng</title> +<g id="edge251" class="edge"><title>pnj:meredith&#45;&gt;pj:oggodt</title> 
-<path fill="none" stroke="black" d="M3969.21,-1081.92C3983.02,-1072.21 4000.26,-1058.67 4013,-1044 4049.7,-1001.74 4079.71,-943.106 4095.32,-909.505"/> +<path fill="none" stroke="black" d="M3735.66,-1260.15C3737.67,-1278.14 3736.63,-1307.19 3733,-1332 3709.18,-1494.77 3705.79,-1538.36 3647,-1692 3633.99,-1725.99 3635.81,-1740.53 3608,-1764 3569.97,-1796.09 3547.43,-1779.72 3502,-1800 3472.2,-1813.3 3469.06,-1825.99 3438,-1836 3300.94,-1880.18 3251.26,-1822.59 3116,-1872 2710.64,-2020.06 2699.49,-2228.25 2309,-2412 2207.46,-2459.78 2174.76,-2452.71 2067,-2484 1940.13,-2520.84 1002.68,-2702.62 923,-2808 832.417,-2927.8 1069.13,-2933.28 1209,-2988 1268.83,-3011.41 1389.67,-2983.06 1321,-3060 1293.76,-3090.52 1021.63,-3105.82 902.369,-3110.96"/> 
-<polygon fill="black" stroke="black" points="4098.54,-910.876 4099.52,-900.326 4092.18,-907.966 4098.54,-910.876"/>+<polygon fill="black" stroke="black" points="902.184,-3107.46 892.34,-3111.38 902.479,-3114.46 902.184,-3107.46"/>
 </g> </g>
-<!-- pnj:von_schencker_junior --> +<!-- pnj:meredith&#45;&gt;pnj:rufus --> 
-<g id="node67" class="node"><title>pnj:von_schencker_junior</title> +<g id="edge250" class="edge"><title>pnj:meredith&#45;&gt;pnj:rufus</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfeecx="3108" cy="-1026" rx="104.782" ry="18"/> +<path fill="none" stroke="blackd="M3715.53,-1259.7C3705.36,-1269.39 3691.26,-1281.69 3678.51,-1292.03"/> 
-<text text-anchor="middlex="3108y="-1022.3" font-family="Times,serif" font-size="14.00">pnj:von_schencker_junior</text>+<polygon fill="blackstroke="blackpoints="3676.03,-1289.53 3670.38,-1298.5 3680.38,-1295.01 3676.03,-1289.53"/>
 </g> </g>
-<!-- pnj:niddon&#45;&gt;pnj:von_schencker_junior --> +<!-- pnj:meredith&#45;&gt;pnj:enrique --> 
-<g id="edge181" class="edge"><title>pnj:niddon&#45;&gt;pnj:von_schencker_junior</title> +<g id="edge253" class="edge"><title>pnj:meredith&#45;&gt;pnj:enrique</title> 
-<path fill="none" stroke="black" d="M3899.44,-1091.9C3866.41,-1088.36 3821.01,-1083.64 3781,-1080 3580.22,-1061.75 3345.4,-1044.1 3212.94,-1034.48"/> +<path fill="none" stroke="black" d="M3701.75,-1226.33C3682.29,-1215.85 3655.93,-1201.65 3634.78,-1190.27"/> 
-<polygon fill="black" stroke="black" points="3213.02,-1030.98 3202.8,-1033.74 3212.52,-1037.96 3213.02,-1030.98"/>+<polygon fill="black" stroke="black" points="3636.24,-1187.07 3625.77,-1185.42 3632.92,-1193.24 3636.24,-1187.07"/>
 </g> </g>
-<!-- pnj:niddon&#45;&gt;lore:organisations:swamp_rats --> +<!-- lore:lieux:genes --> 
-<g id="edge180" class="edge"><title>pnj:niddon&#45;&gt;lore:organisations:swamp_rats</title> +<g id="node70" class="node" onclick="click(evt)"><title>lore:lieux:genes</title> 
-<path fill="none" stroke="blackd="M3934.24,-1115.49C3915.18,-1144.18 3880.69,-1205.44 3891,-1260 3906.1,-1339.9 4129.97,-1879.47 4182.86,-2006.33"/> +<ellipse fill="#021dcd" fill-opacity="0.733333" stroke="#021dcdstroke-opacity="0.733333" cx="3740" cy="-1170" rx="65.7887" ry="18"/> 
-<polygon fill="blackstroke="blackpoints="4179.7,-2007.83 4186.78,-2015.71 4186.16,-2005.14 4179.7,-2007.83"/>+<text text-anchor="middlex="3740y="-1166.3" font-family="Times,serif" font-size="14.00">lore:lieux:genes</text>
 </g> </g>
-<!-- pnj:bartek --> +<!-- pnj:meredith&#45;&gt;lore:lieux:genes --> 
-<g id="node104" class="node"><title>pnj:bartek</title> +<g id="edge252" class="edge"><title>pnj:meredith&#45;&gt;lore:lieux:genes</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfee" cx="5232cy="-1962" rx="46.2923" ry="18"/> +<path fill="none" stroke="blackd="M3731.72,-1223.7C3732.93,-1215.98 3734.39,-1206.71 3735.74,-1198.11"/> 
-<text text-anchor="middlex="5232y="-1958.3" font-family="Times,serif" font-size="14.00">pnj:bartek</text>+<polygon fill="blackstroke="blackpoints="3739.22,-1198.53 3737.31,-1188.1 3732.3,-1197.44 3739.22,-1198.53"/>
 </g> </g>
-<!-- pnj:niddon&#45;&gt;pnj:bartek --> +<!-- pnj:jimmyx&#45;&gt;lore:lieux:gemito --> 
-<g id="edge187" class="edge"><title>pnj:niddon&#45;&gt;pnj:bartek</title> +<g id="edge418" class="edge"><title>pnj:jimmyx&#45;&gt;lore:lieux:gemito</title> 
-<path fill="none" stroke="black" d="M3995.17,-1100.33C4241.71,-1107.52 5343.68,-1144.38 5675,-1224 5773.96,-1247.78 5886,-1211.22 5886,-1313 5886,-1459 5886,-1459 5886,-1459 5886,-1667.18 5793.03,-1740.58 5608,-1836 5497.73,-1892.87 5355.98,-1932.65 5281.9,-1950.47"/> +<path fill="none" stroke="black" d="M3351.13,-1326.26C3384.19,-1337.25 3432.49,-1354.13 3467.78,-1366.99"/> 
-<polygon fill="black" stroke="black" points="5280.83,-1947.12 5271.91,-1952.83 5282.44,-1953.93 5280.83,-1947.12"/>+<polygon fill="black" stroke="black" points="3466.77,-1370.34 3477.36,-1370.5 3469.17,-1363.77 3466.77,-1370.34"/>
 </g> </g>
-<!-- lore:organisations:camorra&#45;&gt;lore:lieux:munich --> +<!-- pnj:jimmyx&#45;&gt;pnj:marcello --> 
-<g id="edge310" class="edge"><title>lore:organisations:camorra&#45;&gt;lore:lieux:munich</title> +<g id="edge417" class="edge"><title>pnj:jimmyx&#45;&gt;pnj:marcello</title> 
-<path fill="none" stroke="black" d="M4830.23,-2606.11C4422.14,-2594.59 2932.47,-2551.97 2567.9,-2541.39"/> +<path fill="none" stroke="black" d="M3291.05,-1297.98C3275.88,-1288.06 3255.79,-1274.92 3239.06,-1263.97"/> 
-<polygon fill="black" stroke="black" points="2567.8,-2537.89 2557.7,-2541.09 2567.6,-2544.88 2567.8,-2537.89"/>+<polygon fill="black" stroke="black" points="3240.94,-1261.02 3230.66,-1258.48 3237.11,-1266.88 3240.94,-1261.02"/>
 </g> </g>
-<!-- lore:organisations:camorra&#45;&gt;lore:gangs:dorf_et_obere --> +<!-- pnj:jimmyx&#45;&gt;lore:lieux:milan --> 
-<g id="edge309" class="edge"><title>lore:organisations:camorra&#45;&gt;lore:gangs:dorf_et_obere</title> +<g id="edge419" class="edge"><title>pnj:jimmyx&#45;&gt;lore:lieux:milan</title> 
-<path fill="none" stroke="black" d="M4931.95,-2591.56C4933.93,-2581.33 4937.43,-2568.08 4939,-2556 4949.57,-2474.63 4962.15,-2427.15 4898,-2376 4810.66,-2306.36 3303.78,-2097.82 3240,-2088 2972.67,-2046.84 2656.3,-1998.97 2509.43,-1976.26"/> +<path fill="none" stroke="black" d="M3265.01,-1309.89C3226.95,-1304.93 3175.38,-1292.24 3143,-1260 3126.63,-1243.7 3119.81,-1217.95 3116.98,-1198.33"/> 
-<polygon fill="black" stroke="black" points="2509.57,-1972.74 2499.15,-1974.67 2508.5,-1979.66 2509.57,-1972.74"/>+<polygon fill="black" stroke="black" points="3120.43,-1197.68 3115.78,-1188.16 3113.48,-1198.5 3120.43,-1197.68"/>
 </g> </g>
-<!-- lore:organisations:camorra&#45;&gt;pnj:silvo_campolin --> +<!-- pnj:jimmyx&#45;&gt;lore:lieux:camargue --> 
-<g id="edge308" class="edge"><title>lore:organisations:camorra&#45;&gt;pnj:silvo_campolin</title> +<g id="edge416" class="edge"><title>pnj:jimmyx&#45;&gt;lore:lieux:camargue</title> 
-<path fill="none" stroke="black" d="M4915.8,-2592.15C4893.21,-2567.52 4855.66,-2521.47 4834.42,-2492.63"/> +<path fill="none" stroke="black" d="M3321.57,-1295.9C3343.51,-1247.04 3408.16,-1108.52 3448,-1080 3583.16,-983.244 3650.14,-1029.19 3815,-1008 4071.17,-975.068 4138.42,-1001.56 4395,-972 4442.69,-966.505 4773.84,-908.974 4821,-900 4896.87,-885.562 4914.72,-876.055 4991,-864 5137.82,-840.799 5310.36,-825.137 5410.73,-817.169"/> 
-<polygon fill="black" stroke="black" points="4837.08,-2490.33 4828.39,-2484.27 4831.4,-2494.42 4837.08,-2490.33"/>+<polygon fill="black" stroke="black" points="5411.12,-820.65 5420.81,-816.375 5410.57,-813.671 5411.12,-820.65"/>
 </g> </g>
-<!-- lore:organisations:camorra&#45;&gt;pnj:camillia_campolin --> +<!-- lore:lieux:confederation_italienne&#45;&gt;lore:lieux:gemito --> 
-<g id="edge307" class="edge"><title>lore:organisations:camorra&#45;&gt;pnj:camillia_campolin</title> +<g id="edge84" class="edge"><title>lore:lieux:confederation_italienne&#45;&gt;lore:lieux:gemito</title> 
-<path fill="none" stroke="black" d="M4930.5,-2591.9C4929.01,-2560.34 4929.56,-2492.15 4898,-2448 4887.85,-2433.8 4872.67,-2423.02 4857.67,-2415.02"/> +<path fill="none" stroke="black" d="M3137.91,-1443.87C3224.51,-1430.25 3361.22,-1409.25 3443.52,-1396.94"/> 
-<polygon fill="black" stroke="black" points="4858.91,-2411.73 4848.4,-2410.39 4855.78,-2417.99 4858.91,-2411.73"/>+<polygon fill="black" stroke="black" points="3444.16,-1400.38 3453.53,-1395.44 3443.12,-1393.46 3444.16,-1400.38"/>
 </g> </g>
-<!-- lore:organisations:mmar&#45;&gt;lore:lieux:munich --> +<!-- lore:lieux:pompei --> 
-<g id="edge91" class="edge"><title>lore:organisations:mmar&#45;&gt;lore:lieux:munich</title> +<g id="node66" class="node" onclick="click(evt)"><title>lore:lieux:pompei</title> 
-<path fill="none" stroke="blackd="M1594.82,-828.076C1615.28,-928.848 1685,-1456.24 1685,-1889 1685,-2251 1685,-2251 1685,-2251 1685,-2373.68 1727.92,-2420.68 1833,-2484 1881.35,-2513.13 2242.62,-2528.68 2406.58,-2534.4"/> +<ellipse fill="#021dcd" fill-opacity="0.733333" stroke="#021dcdstroke-opacity="0.733333" cx="2963" cy="-1386" rx="72.2875" ry="18"/> 
-<polygon fill="blackstroke="blackpoints="2406.5,-2537.9 2416.62,-2534.75 2406.75,-2530.91 2406.5,-2537.9"/>+<text text-anchor="middlex="2963y="-1382.3" font-family="Times,serif" font-size="14.00">lore:lieux:pompei</text>
 </g> </g>
-<!-- lore:organisations:mmar&#45;&gt;lore:organisations:chrysantheme_renaissante --> +<!-- lore:lieux:confederation_italienne&#45;&gt;lore:lieux:pompei --> 
-<g id="edge89" class="edge"><title>lore:organisations:mmar&#45;&gt;lore:organisations:chrysantheme_renaissante</title> +<g id="edge82" class="edge"><title>lore:lieux:confederation_italienne&#45;&gt;lore:lieux:pompei</title> 
-<path fill="none" stroke="black" d="M1653.37,-796.254C1835.6,-759.602 2361.2,-653.89 2568.49,-612.199"/> +<path fill="none" stroke="black" d="M3029.65,-1440.41C3016.32,-1431.32 3000.67,-1419.92 2987.82,-1409.99"/> 
-<polygon fill="black" stroke="black" points="2569.3,-615.606 2578.41,-610.203 2567.92,-608.743 2569.3,-615.606"/>+<polygon fill="black" stroke="black" points="2989.85,-1407.14 2979.83,-1403.71 2985.53,-1412.64 2989.85,-1407.14"/>
 </g> </g>
-<!-- lore:corpos:wuxing --> +<!-- lore:lieux:confederation_italienne&#45;&gt;lore:lieux:europe --> 
-<g id="node66" class="node"><title>lore:corpos:wuxing</title> +<g id="edge80" class="edge"><title>lore:lieux:confederation_italienne&#45;&gt;lore:lieux:europe</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfeecx="1530" cy="-738" rx="79.8859" ry="18"/> +<path fill="none" stroke="blackd="M3063.91,-1476.28C3064.71,-1484.03 3064.94,-1493.36 3064.59,-1502.01"/> 
-<text text-anchor="middlex="1530y="-734.3" font-family="Times,serif" font-size="14.00">lore:corpos:wuxing</text>+<polygon fill="blackstroke="blackpoints="3061.09,-1501.83 3063.88,-1512.05 3068.08,-1502.33 3061.09,-1501.83"/>
 </g> </g>
-<!-- lore:organisations:mmar&#45;&gt;lore:corpos:wuxing --> +<!-- lore:lieux:confederation_italienne&#45;&gt;lore:lieux:genes --> 
-<g id="edge88" class="edge"><title>lore:organisations:mmar&#45;&gt;lore:corpos:wuxing</title> +<g id="edge81" class="edge"><title>lore:lieux:confederation_italienne&#45;&gt;lore:lieux:genes</title> 
-<path fill="none" stroke="black" d="M1569.6,-792.055C1561.6,-783.753 1552.67,-773.584 1545.23,-764.378"/> +<path fill="none" stroke="black" d="M3184.45,-1455.06C3293.83,-1450.89 3455.43,-1438.69 3592,-1404 3631.96,-1393.85 3731.35,-1358.42 3763,-1332 3792.34,-1307.51 3799.1,-1296.63 3810,-1260 3814.56,-1244.66 3817.12,-1238.33 3810,-1224 3803.39,-1210.71 3791.69,-1199.86 3779.71,-1191.52"/> 
-<polygon fill="black" stroke="black" points="1547.81,-761.994 1538.89,-756.275 1542.3,-766.308 1547.81,-761.994"/>+<polygon fill="black" stroke="black" points="3781.31,-1188.39 3771.02,-1185.89 3777.51,-1194.27 3781.31,-1188.39"/>
 </g> </g>
-<!-- lore:organisations:mmar&#45;&gt;pnj:von_schencker_junior --> +<!-- lore:lieux:confederation_italienne&#45;&gt;lore:lieux:milan --> 
-<g id="edge90" class="edge"><title>lore:organisations:mmar&#45;&gt;pnj:von_schencker_junior</title> +<g id="edge83" class="edge"><title>lore:lieux:confederation_italienne&#45;&gt;lore:lieux:milan</title> 
-<path fill="none" stroke="black" d="M1686.64,-811.782C1968.54,-814.539 2776.73,-825.803 2889,-864 2973.16,-892.633 3053.78,-962.907 3089.41,-1000.44"/> +<path fill="none" stroke="black" d="M2997.91,-1442.07C2963.42,-1432.72 2919.61,-1419.51 2882,-1404 2866.28,-1397.52 2755.75,-1346.58 2747,-1332 2738.77,-1318.28 2742.51,-1311.36 2747,-1296 2757.65,-1259.55 2761.29,-1244.9 2793,-1224 2833.19,-1197.51 2961.88,-1182.84 3043.89,-1175.96"/> 
-<polygon fill="black" stroke="black" points="3086.96,-1002.94 3096.31,-1007.92 3092.11,-998.198 3086.96,-1002.94"/>+<polygon fill="black" stroke="black" points="3044.21,-1179.45 3053.89,-1175.14 3043.64,-1172.47 3044.21,-1179.45"/>
 </g> </g>
-<!-- lore:corpos:wuxing&#45;&gt;lore:lieux:munich --> +<!-- pnj:moman&#45;&gt;pj:sven --> 
-<g id="edge158" class="edge"><title>lore:corpos:wuxing&#45;&gt;lore:lieux:munich</title> +<g id="edge603" class="edge"><title>pnj:moman&#45;&gt;pj:sven</title> 
-<path fill="none" stroke="black" d="M1511.3,-755.958C1501.74,-765.623 1490.74,-778.48 1484,-792 1465.95,-828.196 1465,-840.553 1465,-881 1465,-1171 1465,-1171 1465,-1171 1465,-1526.01 1583,-1605.99 1583,-1961 1583,-2251 1583,-2251 1583,-2251 1583,-2323.79 1594.08,-2351.92 1553,-2412 1535.87,-2437.04 1509.75,-2421.49 1495,-2448 1487.22,-2461.98 1483.99,-2472.39 1495,-2484 1526.17,-2516.88 2174.5,-2531.49 2405.86,-2535.67"/> +<path fill="none" stroke="black" d="M2930.03,-1094.61C2704.21,-1083.81 1780.57,-1039.65 1562.36,-1029.22"/> 
-<polygon fill="black" stroke="black" points="2405.83,-2539.17 2415.9,-2535.85 2405.96,-2532.17 2405.83,-2539.17"/>+<polygon fill="black" stroke="black" points="1562.37,-1025.71 1552.21,-1028.73 1562.03,-1032.71 1562.37,-1025.71"/>
 </g> </g>
-<!-- lore:corpos:wuxing&#45;&gt;lore:organisations:mmar --> +<!-- pnj:moman&#45;&gt;pnj:theodore_smith --> 
-<g id="edge160" class="edge"><title>lore:corpos:wuxing&#45;&gt;lore:organisations:mmar</title> +<g id="edge602" class="edge"><title>pnj:moman&#45;&gt;pnj:theodore_smith</title> 
-<path fill="none" stroke="black" d="M1550.25,-755.789C1558.44,-764.277 1567.62,-774.746 1575.19,-784.146"/> +<path fill="none" stroke="black" d="M3017.27,-1085.68C3024.75,-1083.62 3032.6,-1081.62 3040,-1080 3129.1,-1060.55 3232.77,-1045.53 3302.41,-1036.53"/> 
-<polygon fill="black" stroke="black" points="1572.45,-786.32 1581.35,-792.055 1577.97,-782.016 1572.45,-786.32"/>+<polygon fill="black" stroke="black" points="3302.96,-1039.99 3312.43,-1035.24 3302.07,-1033.04 3302.96,-1039.99"/>
 </g> </g>
-<!-- lore:corpos:wuxing&#45;&gt;lore:organisations:lotus_jaune --> +<!-- pnj:moman&#45;&gt;lore:lieux:milan --> 
-<g id="edge159" class="edge"><title>lore:corpos:wuxing&#45;&gt;lore:organisations:lotus_jaune</title> +<g id="edge604" class="edge"><title>pnj:moman&#45;&gt;lore:lieux:milan</title> 
-<path fill="none" stroke="black" d="M1513.3,-720.055C1504.86,-711.498 1494.47,-700.959 1485.18,-691.535"/> +<path fill="none" stroke="black" d="M3011.09,-1112.3C3032.22,-1122.51 3060.02,-1136.79 3081.61,-1148.47"/> 
-<polygon fill="black" stroke="black" points="1487.54,-688.94 1478.03,-684.275 1482.56,-693.854 1487.54,-688.94"/>+<polygon fill="black" stroke="black" points="3079.99,-1151.57 3090.44,-1153.29 3083.34,-1145.43 3079.99,-1151.57"/>
 </g> </g>
-<!-- pnj:von_schencker_junior&#45;&gt;lore:lieux:munich --> +<!-- lore:gangs:fils_de_sauron&#45;&gt;lore:lieux:gemito --> 
-<g id="edge476" class="edge"><title>pnj:von_schencker_junior&#45;&gt;lore:lieux:munich</title> +<g id="edge368" class="edge"><title>lore:gangs:fils_de_sauron&#45;&gt;lore:lieux:gemito</title> 
-<path fill="none" stroke="black" d="M3089.65,-1043.92C3048.69,-1083.25 2951.28,-1185.88 2924,-1296 2920.15,-1311.53 2922.14,-1316.11 2924,-1332 2934.52,-1421.83 3084.07,-2037.97 3112,-2124 3122.7,-2156.97 3125.07,-2165.75 3142,-2196 3151.64,-2213.22 3159.51,-2214.18 3168,-2232 3185.61,-2268.99 3192,-2280.03 3192,-2321 3192,-2395 3192,-2395 3192,-2395 3192,-2435.97 3199.53,-2457.84 3168,-2484 3122.78,-2521.52 2739.37,-2532.71 2568.55,-2535.85"/> +<path fill="none" stroke="black" d="M3930.05,-1044.28C3931.69,-1097.72 3913.05,-1261.01 3815,-1332 3780.19,-1357.2 3666.98,-1372.03 3589.44,-1379.32"/> 
-<polygon fill="black" stroke="black" points="2568.29,-2532.36 2558.35,-2536.03 2568.41,-2539.36 2568.29,-2532.36"/>+<polygon fill="black" stroke="black" points="3588.86,-1375.86 3579.22,-1380.26 3589.5,-1382.83 3588.86,-1375.86"/>
 </g> </g>
-<!-- pnj:von_schencker_junior&#45;&gt;lore:organisations:mmar --> +<!-- pnj:enrique&#45;&gt;lore:lieux:gemito --> 
-<g id="edge477" class="edge"><title>pnj:von_schencker_junior&#45;&gt;lore:organisations:mmar</title> +<g id="edge209" class="edge"><title>pnj:enrique&#45;&gt;lore:lieux:gemito</title> 
-<path fill="none" stroke="black" d="M3086.75,-1008.19C3047.67,-973.514 2961.37,-894.748 2871,-864 2761.1,-826.607 1984.27,-815.026 1696.68,-811.968"/> +<path fill="none" stroke="black" d="M3598.02,-1188C3590.41,-1217.46 3566.52,-1279.83 3545,-1332 3541.29,-1340.99 3537.09,-1350.77 3532.82,-1359.45"/> 
-<polygon fill="black" stroke="black" points="1696.69,-808.468 1686.65,-811.863 1696.62,-815.468 1696.69,-808.468"/>+<polygon fill="black" stroke="black" points="3529.7,-1357.87 3528.17,-1368.36 3535.9,-1361.11 3529.7,-1357.87"/>
 </g> </g>
-<!-- pnj:von_schencker_junior&#45;&gt;lore:organisations:famille_von_schencker --> +<!-- pnj:enrique&#45;&gt;lore:gangs:familia_d_enrique --> 
-<g id="edge478" class="edge"><title>pnj:von_schencker_junior&#45;&gt;lore:organisations:famille_von_schencker</title> +<g id="edge210" class="edge"><title>pnj:enrique&#45;&gt;lore:gangs:familia_d_enrique</title> 
-<path fill="none" stroke="black" d="M3104.96,-1007.96C3106.87,-989.552 3114.98,-959.689 3127,-936 3131.94,-926.273 3138.62,-916.428 3145.52,-907.908"/> +<path fill="none" stroke="black" d="M3586.52,-1152.41C3582.52,-1144.54 3578.42,-1134.93 3575.22,-1126.04"/> 
-<polygon fill="black" stroke="black" points="3148.29,-910.055 3152.16,-900.191 3142.98,-905.49 3148.29,-910.055"/>+<polygon fill="black" stroke="black" points="3578.51,-1124.84 3572.05,-1116.45 3571.87,-1127.04 3578.51,-1124.84"/>
 </g> </g>
-<!-- pnj:marinavonschenker --> +<!-- lore:gangs:white_skullz&#45;&gt;lore:lieux:gemito --> 
-<g id="node121" class="node"><title>pnj:marinavonschenker</title> +<g id="edge188" class="edge"><title>lore:gangs:white_skullz&#45;&gt;lore:lieux:gemito</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfee" cx="3239cy="-954" rx="93.6835" ry="18"/> +<path fill="none" stroke="blackd="M3811.52,-1115.78C3816.96,-1126.01 3821.82,-1139.48 3824,-1152 3838.26,-1234.04 3840.69,-1284.93 3772,-1332 3719.54,-1367.94 3647.46,-1380.25 3592.59,-1384.12"/> 
-<text text-anchor="middlex="3239y="-950.3" font-family="Times,serif" font-size="14.00">pnj:marinavonschenker</text>+<polygon fill="blackstroke="blackpoints="3592.31,-1380.63 3582.55,-1384.75 3592.75,-1387.62 3592.31,-1380.63"/>
 </g> </g>
-<!-- pnj:von_schencker_junior&#45;&gt;pnj:marinavonschenker --> +<!-- lore:gangs:white_skullz&#45;&gt;lore:gangs:fils_de_sauron --> 
-<g id="edge475" class="edge"><title>pnj:von_schencker_junior&#45;&gt;pnj:marinavonschenker</title> +<g id="edge189" class="edge"><title>lore:gangs:white_skullz&#45;&gt;lore:gangs:fils_de_sauron</title> 
-<path fill="none" stroke="black" d="M3133.21,-1008.41C3150.63,-998.524 3174.14,-985.897 3194.62,-975.403"/> +<path fill="none" stroke="black" d="M3826.05,-1080.94C3844.31,-1071.18 3867.83,-1058.62 3887.57,-1048.07"/> 
-<polygon fill="black" stroke="black" points="3196.45,-978.398 3203.78,-970.749 3193.28,-972.157 3196.45,-978.398"/>+<polygon fill="black" stroke="black" points="3889.46,-1051.03 3896.63,-1043.23 3886.16,-1044.85 3889.46,-1051.03"/>
 </g> </g>
-<!-- pnj:sorenjohanson --> +<!-- lore:gangs:white_skullz&#45;&gt;lore:lieux:genes --> 
-<g id="node72" class="node"><title>pnj:sorenjohanson</title> +<g id="edge187" class="edge"><title>lore:gangs:white_skullz&#45;&gt;lore:lieux:genes</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfeecx="2474" cy="-1098" rx="76.8869" ry="18"/> +<path fill="none" stroke="blackd="M3788.31,-1115.96C3782.31,-1124.61 3773.97,-1135.28 3765.83,-1144.78"/> 
-<text text-anchor="middlex="2474y="-1094.3" font-family="Times,serif" font-size="14.00">pnj:sorenjohanson</text>+<polygon fill="blackstroke="blackpoints="3763.09,-1142.59 3759.11,-1152.41 3768.35,-1147.22 3763.09,-1142.59"/>
 </g> </g>
-<!-- lore:corpos:ares&#45;&gt;pnj:sorenjohanson --> +<!-- lore:gangs:familia_d_enrique&#45;&gt;lore:lieux:gemito --> 
-<g id="edge373" class="edge"><title>lore:corpos:ares&#45;&gt;pnj:sorenjohanson</title> +<g id="edge161" class="edge"><title>lore:gangs:familia_d_enrique&#45;&gt;lore:lieux:gemito</title> 
-<path fill="none" stroke="black" d="M2309.85,-1154.5C2340.41,-1143.3 2384.67,-1127.77 2419.58,-1115.99"/> +<path fill="none" stroke="black" d="M3566.35,-1116.27C3560.83,-1126.22 3553.25,-1139.26 3549,-1152 3525.11,-1223.54 3521.65,-1313.54 3518.16,-1357.83"/> 
-<polygon fill="black" stroke="black" points="2420.79,-1119.27 2429.16,-1112.77 2418.56,-1112.64 2420.79,-1119.27"/>+<polygon fill="black" stroke="black" points="3514.67,-1357.55 3517.29,-1367.81 3521.65,-1358.16 3514.67,-1357.55"/>
 </g> </g>
-<!-- pnj:michaelcarpenter --> +<!-- lore:gangs:familia_d_enrique&#45;&gt;pnj:enrique --> 
-<g id="node105" class="node"><title>pnj:michaelcarpenter</title> +<g id="edge162" class="edge"><title>lore:gangs:familia_d_enrique&#45;&gt;pnj:enrique</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfeecx="2200" cy="-1098" rx="85.2851" ry="18"/> +<path fill="none" stroke="blackd="M3583.74,-1116.1C3587.66,-1123.88 3591.64,-1133.26 3594.77,-1141.95"/> 
-<text text-anchor="middlex="2200y="-1094.3" font-family="Times,serif" font-size="14.00">pnj:michaelcarpenter</text>+<polygon fill="blackstroke="blackpoints="3591.53,-1143.3 3597.99,-1151.7 3598.18,-1141.1 3591.53,-1143.3"/>
 </g> </g>
-<!-- lore:corpos:ares&#45;&gt;pnj:michaelcarpenter --> +<!-- lore:gangs:groupe_leonkavallo&#45;&gt;pnj:theodore_smith --> 
-<g id="edge375" class="edge"><title>lore:corpos:ares&#45;&gt;pnj:michaelcarpenter</title> +<g id="edge292" class="edge"><title>lore:gangs:groupe_leonkavallo&#45;&gt;pnj:theodore_smith</title> 
-<path fill="none" stroke="black" d="M2251.04,-1152.76C2240.8,-1144.01 2228.97,-1133.03 2219.21,-1123.28"/> +<path fill="none" stroke="black" d="M3216.54,-1081.38C3249.79,-1070.45 3294.25,-1055.84 3328.7,-1044.52"/> 
-<polygon fill="black" stroke="black" points="2221.7,-1120.82 2212.21,-1116.12 2216.7,-1125.72 2221.7,-1120.82"/>+<polygon fill="black" stroke="black" points="3330.19,-1047.71 3338.59,-1041.26 3328,-1041.06 3330.19,-1047.71"/>
 </g> </g>
-<!-- pnj:milenasimons --> +<!-- lore:gangs:groupe_leonkavallo&#45;&gt;lore:lieux:gemito --> 
-<g id="node106" class="node"><title>pnj:milenasimons</title> +<g id="edge293" class="edge"><title>lore:gangs:groupe_leonkavallo&#45;&gt;lore:lieux:gemito</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfeecx="2322" cy="-1026" rx="72.5877" ry="18"/> +<path fill="none" stroke="blackd="M3191.23,-1115.95C3237.17,-1155.59 3345.19,-1256.7 3443,-1332 3456.96,-1342.74 3472.99,-1353.73 3486.31,-1362.9"/> 
-<text text-anchor="middlex="2322y="-1022.3" font-family="Times,serif" font-size="14.00">pnj:milenasimons</text>+<polygon fill="blackstroke="blackpoints="3484.39,-1365.83 3494.61,-1368.64 3488.37,-1360.07 3484.39,-1365.83"/>
 </g> </g>
-<!-- lore:corpos:ares&#45;&gt;pnj:milenasimons --> +<!-- lore:gangs:groupe_leonkavallo&#45;&gt;pnj:marcello --> 
-<g id="edge374" class="edge"><title>lore:corpos:ares&#45;&gt;pnj:milenasimons</title> +<g id="edge295" class="edge"><title>lore:gangs:groupe_leonkavallo&#45;&gt;pnj:marcello</title> 
-<path fill="none" stroke="black" d="M2272.91,-1151.9C2275.73,-1141.56 2280.82,-1128.08 2285,-1116 2292.21,-1095.14 2299.68,-1071.27 2306.44,-1053.51"/> +<path fill="none" stroke="black" d="M3183.57,-1116C3188.68,-1126.3 3193.52,-1139.78 3197,-1152 3202.8,-1172.39 3207.74,-1195.85 3209.83,-1213.56"/> 
-<polygon fill="black" stroke="black" points="2309.85,-1054.41 2310.34,-1043.82 2303.36,-1051.8 2309.85,-1054.41"/>+<polygon fill="black" stroke="black" points="3206.37,-1214.12 3210.75,-1223.77 3213.34,-1213.5 3206.37,-1214.12"/>
 </g> </g>
-<!-- lore:organisations:swamp_rats&#45;&gt;lore:lieux:camargue --> +<!-- lore:gangs:groupe_leonkavallo&#45;&gt;lore:lieux:milan --> 
-<g id="edge315" class="edge"><title>lore:organisations:swamp_rats&#45;&gt;lore:lieux:camargue</title> +<g id="edge294" class="edge"><title>lore:gangs:groupe_leonkavallo&#45;&gt;lore:lieux:milan</title> 
-<path fill="none" stroke="black" d="M4204.39,-2052.11C4223.88,-2085.33 4265.28,-2161.5 4280,-2232 4309.57,-2373.66 4166,-2392.29 4166,-2537 4166,-2755 4166,-2755 4166,-2755 4166,-2934.3 4334.76,-3101.76 4402.42,-3161.7"/> +<path fill="none" stroke="black" d="M3161.47,-1116.45C3155.77,-1124.96 3147.95,-1135.34 3140.28,-1144.61"/> 
-<polygon fill="black" stroke="black" points="4400.33,-3164.52 4410.16,-3168.47 4404.94,-3159.25 4400.33,-3164.52"/>+<polygon fill="black" stroke="black" points="3137.46,-1142.53 3133.64,-1152.41 3142.79,-1147.07 3137.46,-1142.53"/>
 </g> </g>
-<!-- lore:organisations:swamp_rats&#45;&gt;lore:lieux:sox --> +<!-- lore:corpos:wuxing --> 
-<g id="edge317" class="edge"><title>lore:organisations:swamp_rats&#45;&gt;lore:lieux:sox</title> +<g id="node63" class="node" onclick="click(evt)"><title>lore:corpos:wuxing</title> 
-<path fill="none" stroke="blackd="M4296.12,-2043.58C4577.28,-2069.42 5354.95,-2154.08 5556,-2304 5645.99,-2371.1 5622.32,-2455.16 5573,-2556 5537.14,-2629.33 5528.85,-2657.77 5459,-2700 5405.49,-2732.35 5369.08,-2693.74 5323,-2736 5305.48,-2752.07 5297.54,-2778.42 5292.32,-2798.29"/> +<ellipse fill="#41c2b5" fill-opacity="0.733333" stroke="#41c2b5stroke-opacity="0.733333" cx="4594" cy="-1890" rx="79.8859" ry="18"/> 
-<polygon fill="blackstroke="blackpoints="5288.93,-2797.45 5289.81,-2808 5295.7,-2799.2 5288.93,-2797.45"/>+<text text-anchor="middlex="4594y="-1886.3" font-family="Times,serif" font-size="14.00">lore:corpos:wuxing</text>
 </g> </g>
-<!-- lore:organisations:swamp_rats&#45;&gt;lore:lieux:munich --> +<!-- lore:corpos:wuxing&#45;&gt;lore:lieux:munich --> 
-<g id="edge314" class="edge"><title>lore:organisations:swamp_rats&#45;&gt;lore:lieux:munich</title> +<g id="edge73" class="edge"><title>lore:corpos:wuxing&#45;&gt;lore:lieux:munich</title> 
-<path fill="none" stroke="black" d="M4174.41,-2051.84C4135.85,-2084.2 4046.35,-2155.41 3960,-2196 3906.91,-2220.96 3875.2,-2191.24 3833,-2232 3748.38,-2313.73 3845.59,-2412.73 3752,-2484 3704.9,-2519.87 2840.85,-2532.91 2568.51,-2536.13"/> +<path fill="none" stroke="black" d="M4562.58,-1906.65C4522.98,-1928.85 4460,-1973.51 4460,-2033 4460,-2467 4460,-2467 4460,-2467 4460,-2634.66 4565.49,-2725.39 4447,-2844 4396.71,-2894.33 3337.53,-2897.34 3032.51,-2897.15"/> 
-<polygon fill="black" stroke="black" points="2568.25,-2532.64 2558.3,-2536.25 2568.34,-2539.63 2568.25,-2532.64"/>+<polygon fill="black" stroke="black" points="3032.42,-2893.65 3022.42,-2897.15 3032.41,-2900.65 3032.42,-2893.65"/>
 </g> </g>
-<!-- lore:organisations:swamp_rats&#45;&gt;lore:objets:nanoforge --> +<!-- lore:corpos:wuxing&#45;&gt;lore:organisations:lotus_jaune --> 
-<g id="edge321" class="edge"><title>lore:organisations:swamp_rats&#45;&gt;lore:objets:nanoforge</title> +<g id="edge72" class="edge"><title>lore:corpos:wuxing&#45;&gt;lore:organisations:lotus_jaune</title> 
-<path fill="none" stroke="black" d="M4165.37,-2016.34C4152.07,-2006.27 4136.68,-1992.91 4124,-1980 4021.66,-1875.77 4023.4,-1823.66 3913,-1728 3649.12,-1499.36 3262.17,-1320.76 3133.93,-1262.91"/> +<path fill="none" stroke="black" d="M4527.72,-1900.11C4424.33,-1914.41 4235.69,-1940.79 4229,-1944 4134.28,-1989.39 4056,-1999.97 4056,-2105 4056,-2179 4056,-2179 4056,-2179 4056,-2260.63 3845.54,-2376.56 3772,-2412 3703.21,-2445.15 3674.82,-2419.44 3604,-2448 3575.86,-2459.35 3573.27,-2470.7 3546,-2484 3504.29,-2504.34 3489.49,-2499.23 3448,-2520 3409.55,-2539.25 3368.6,-2566.91 3341.59,-2586.27"/> 
-<polygon fill="black" stroke="black" points="3135.35,-1259.71 3124.79,-1258.79 3132.47,-1266.09 3135.35,-1259.71"/>+<polygon fill="black" stroke="black" points="3339.38,-2583.54 3333.33,-2592.24 3343.48,-2589.22 3339.38,-2583.54"/>
 </g> </g>
-<!-- lore:organisations:swamp_rats&#45;&gt;lore:objets:caisse_de_ruthenium --> +<!-- lore:corpos:wuxing&#45;&gt;lore:organisations:mmar --> 
-<g id="edge320" class="edge"><title>lore:organisations:swamp_rats&#45;&gt;lore:objets:caisse_de_ruthenium</title> +<g id="edge74" class="edge"><title>lore:corpos:wuxing&#45;&gt;lore:organisations:mmar</title> 
-<path fill="none" stroke="black" d="M4276.45,-2020.89C4455.14,-1994.65 4877.26,-1932.67 5066.43,-1904.89"/> +<path fill="none" stroke="black" d="M4548.32,-1904.83C4507.5,-1916.28 4447.33,-1932.57 4401.26,-1944.66"/> 
-<polygon fill="black" stroke="black" points="5066.97,-1908.35 5076.35,-1903.43 5065.95,-1901.42 5066.97,-1908.35"/>+<polygon fill="black" stroke="black" points="4400.14,-1941.34 4391.35,-1947.25 4401.91,-1948.11 4400.14,-1941.34"/>
 </g> </g>
-<!-- lore:organisations:swamp_rats&#45;&gt;pnj:theodore_smith --> +<!-- lore:organisations:lotus_jaune&#45;&gt;lore:lieux:munich --> 
-<g id="edge318" class="edge"><title>lore:organisations:swamp_rats&#45;&gt;pnj:theodore_smith</title> +<g id="edge432" class="edge"><title>lore:organisations:lotus_jaune&#45;&gt;lore:lieux:munich</title> 
-<path fill="none" stroke="black" d="M4199.78,-2015.93C4213.01,-1990.09 4241,-1938.97 4241,-1891 4241,-1891 4241,-1891 4241,-1817 4241,-1729.33 4233.83,-1707.62 4231,-1620 4228.93,-1556.03 4229.44,-1540 4229,-1476 4228.89,-1460 4226.26,-1455.76 4229,-1440 4230.56,-1431 4233.52,-1421.51 4237.08,-1413.09"/> +<path fill="none" stroke="black" d="M3305.65,-2628.26C3282.62,-2680.94 3198.86,-2836.61 3189,-2844 3144.32,-2877.48 3081.98,-2890.31 3032.25,-2895"/> 
-<polygon fill="black" stroke="black" points="4240.37,-1414.32 4241.48,-1403.78 4234.04,-1411.32 4240.37,-1414.32"/>+<polygon fill="black" stroke="black" points="3031.83,-2891.53 3022.16,-2895.86 3032.43,-2898.5 3031.83,-2891.53"/>
 </g> </g>
-<!-- lore:organisations:swamp_rats&#45;&gt;pnj:bartek --> +<!-- lore:organisations:lotus_jaune&#45;&gt;lore:organisations:camorra --> 
-<g id="edge319" class="edge"><title>lore:organisations:swamp_rats&#45;&gt;pnj:bartek</title> +<g id="edge433" class="edge"><title>lore:organisations:lotus_jaune&#45;&gt;lore:organisations:camorra</title> 
-<path fill="none" stroke="black" d="M4300.23,-2025.54C4518.53,-2010.58 5010.8,-1977.41 5176.46,-1966.53"/> +<path fill="none" stroke="black" d="M3228.68,-2597.15C2981.23,-2558.98 2227.5,-2423.82 1681,-2124 1547.78,-2050.92 1521.25,-2017.59 1416,-1908 1374.44,-1864.73 1385.33,-1832.66 1335,-1800 1274.59,-1760.79 1233.89,-1808.16 1177,-1764 1148.58,-1741.94 1148.46,-1726.97 1140,-1692 1105.6,-1549.81 1147.49,-1505.29 1198,-1368 1209.86,-1335.78 1209.1,-1325.89 1226,-1296 1231.41,-1286.43 1238.41,-1276.7 1245.1,-1268.24"/> 
-<polygon fill="black" stroke="black" points="5177.14,-1969.99 5186.89,-1965.85 5176.68,-1963.01 5177.14,-1969.99"/>+<polygon fill="black" stroke="black" points="1248,-1270.22 1251.6,-1260.25 1242.57,-1265.8 1248,-1270.22"/>
 </g> </g>
-<!-- lore:corpos:bilbauer --> +<!-- lore:organisations:lotus_jaune&#45;&gt;lore:organisations:chrysantheme_renaissante --> 
-<g id="node137" class="node"><title>lore:corpos:bilbauer</title> +<g id="edge430" class="edge"><title>lore:organisations:lotus_jaune&#45;&gt;lore:organisations:chrysantheme_renaissante</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfee" cx="4408cy="-1314" rx="83.3857" ry="18"/> +<path fill="none" stroke="blackd="M3377.58,-2595.17C3431.25,-2584.02 3507.03,-2568.28 3564.72,-2556.3"/> 
-<text text-anchor="middlex="4408y="-1310.3" font-family="Times,serif" font-size="14.00">lore:corpos:bilbauer</text>+<polygon fill="blackstroke="blackpoints="3565.46,-2559.72 3574.54,-2554.26 3564.04,-2552.87 3565.46,-2559.72"/>
 </g> </g>
-<!-- lore:organisations:swamp_rats&#45;&gt;lore:corpos:bilbauer --> +<!-- pj:johnmcgill --> 
-<g id="edge316" class="edge"><title>lore:organisations:swamp_rats&#45;&gt;lore:corpos:bilbauer</title> +<g id="node138" class="node" onclick="click(evt)"><title>pj:johnmcgill</title> 
-<path fill="none" stroke="blackd="M4188.29,-2015.95C4185,-1989.29 4185,-1936.11 4185,-1891 4185,-1891 4185,-1891 4185,-1817 4185,-1617.08 4032.74,-1523.81 4158,-1368 4168.76,-1354.61 4260.61,-1337.2 4329.94,-1326.06"/> +<ellipse fill="#c983d0" fill-opacity="0.733333" stroke="#c983d0stroke-opacity="0.733333" cx="1871" cy="-2682" rx="56.59" ry="18"/> 
-<polygon fill="blackstroke="blackpoints="4330.67,-1329.49 4340,-1324.46 4329.57,-1322.57 4330.67,-1329.49"/>+<text text-anchor="middlex="1871y="-2678.3" font-family="Times,serif" font-size="14.00">pj:johnmcgill</text>
 </g> </g>
-<!-- pnj:lilalee&#45;&gt;pnj:brendanodunn --> +<!-- lore:organisations:lotus_jaune&#45;&gt;pj:johnmcgill --> 
-<g id="edge101" class="edge"><title>pnj:lilalee&#45;&gt;pnj:brendanodunn</title> +<g id="edge431" class="edge"><title>lore:organisations:lotus_jaune&#45;&gt;pj:johnmcgill</title> 
-<path fill="none" stroke="black" d="M455.238,-175.276C438.246,-183.973 418.325,-197.416 408,-216 315.251,-382.943 363.86,-628.677 383.802,-709.867"/> +<path fill="none" stroke="black" d="M3201.77,-2616.5C2918.05,-2630.49 2164.24,-2667.12 1936.82,-2677.94"/> 
-<polygon fill="black" stroke="black" points="380.463,-710.943 386.299,-719.786 387.252,-709.234 380.463,-710.943"/>+<polygon fill="black" stroke="black" points="1936.53,-2674.45 1926.71,-2678.43 1936.87,-2681.45 1936.53,-2674.45"/>
 </g> </g>
-<!-- pnj:lilalee&#45;&gt;lore:lieux:tir_na_nog --> +<!-- lore:organisations:mmar&#45;&gt;lore:lieux:munich --> 
-<g id="edge102" class="edge"><title>pnj:lilalee&#45;&gt;lore:lieux:tir_na_nog</title> +<g id="edge593" class="edge"><title>lore:organisations:mmar&#45;&gt;lore:lieux:munich</title> 
-<path fill="none" stroke="black" d="M518.494,-173.538C545.179,-182.703 582.919,-197.421 613,-216 751.312,-301.424 889.476,-440.782 942.422,-496.678"/> +<path fill="none" stroke="black" d="M4313.43,-1979.61C4281.46,-2002.88 4226,-2048.75 4226,-2105 4226,-2179 4226,-2179 4226,-2179 4226,-2408.05 4162,-2498.6 3973,-2628 3889.07,-2685.46 3843.57,-2632.06 3747,-2664 3714.16,-2674.86 3710.36,-2687.77 3678,-2700 3615.48,-2723.63 3585.24,-2695.6 3532,-2736 3488.09,-2769.33 3517.11,-2813.79 3471,-2844 3401.27,-2889.69 3160.9,-2896.91 3032.77,-2897.48"/> 
-<polygon fill="black" stroke="black" points="939.913,-499.119 949.318,-503.997 945.008,-494.318 939.913,-499.119"/>+<polygon fill="black" stroke="black" points="3032.61,-2893.98 3022.62,-2897.52 3032.63,-2900.98 3032.61,-2893.98"/>
 </g> </g>
-<!-- pnj:lilalee&#45;&gt;lore:corpos:sset --> +<!-- lore:organisations:mmar&#45;&gt;lore:corpos:wuxing --> 
-<g id="edge100" class="edge"><title>pnj:lilalee&#45;&gt;lore:corpos:sset</title> +<g id="edge596" class="edge"><title>lore:organisations:mmar&#45;&gt;lore:corpos:wuxing</title> 
-<path fill="none" stroke="black" d="M490.913,-180.275C491.715,-188.03 491.94,-197.362 491.591,-206.005"/> +<path fill="none" stroke="black" d="M4383.68,-1946.33C4425.72,-1934.56 4486.58,-1918.11 4532.07,-1906.2"/> 
-<polygon fill="black" stroke="black" points="488.094,-205.832 490.878,-216.055 495.077,-206.327 488.094,-205.832"/>+<polygon fill="black" stroke="black" points="4533.03,-1909.57 4541.82,-1903.66 4531.26,-1902.8 4533.03,-1909.57"/>
 </g> </g>
-<!-- pnj:lilalee&#45;&gt;lore:organisations:danann_o_dunn --> +<!-- lore:organisations:mmar&#45;&gt;lore:organisations:chrysantheme_renaissante --> 
-<g id="edge103" class="edge"><title>pnj:lilalee&#45;&gt;lore:organisations:danann_o_dunn</title> +<g id="edge594" class="edge"><title>lore:organisations:mmar&#45;&gt;lore:organisations:chrysantheme_renaissante</title> 
-<path fill="none" stroke="black" d="M516.919,-174.336C535.424,-183.388 557.401,-197.597 571,-216 595.643,-249.35 599,-263.533 599,-305 599,-523 599,-523 599,-523 599,-563.004 599,-609.347 596.708,-637.92"/> +<path fill="none" stroke="black" d="M4266.79,-1974.8C4240.79,-1982.51 4212.9,-1995.19 4194,-2016 4166.46,-2046.33 4170,-2064.03 4170,-2105 4170,-2179 4170,-2179 4170,-2179 4170,-2387.8 3882.43,-2483.87 3734.18,-2519.52"/> 
-<polygon fill="black" stroke="black" points="593.217,-637.654 595.712,-647.951 600.183,-638.345 593.217,-637.654"/>+<polygon fill="black" stroke="black" points="3733.11,-2516.18 3724.18,-2521.88 3734.72,-2522.99 3733.11,-2516.18"/>
 </g> </g>
-<!-- pnj:lilalee&#45;&gt;pj:eidolon --> +<!-- pnj:von_schencker_junior --> 
-<g id="edge98" class="edge"><title>pnj:lilalee&#45;&gt;pj:eidolon</title> +<g id="node146" class="node" onclick="click(evt)"><title>pnj:von_schencker_junior</title> 
-<path fill="none" stroke="blackd="M522.555,-171.163C557.69,-179.628 611.052,-194.635 654,-216 851.43,-314.211 944.516,-314.935 1058,-504 1095.14,-565.872 1079,-592.838 1079,-665 1079,-811 1079,-811 1079,-811 1079,-846.748 797.78,-1960.38 749.892,-2149.76"/> +<ellipse fill="#e5b030" fill-opacity="0.733333" stroke="#e5b030stroke-opacity="0.733333" cx="4669" cy="-2178" rx="104.782" ry="18"/> 
-<polygon fill="blackstroke="blackpoints="746.43,-2149.17 747.371,-2159.73 753.216,-2150.89 746.43,-2149.17"/>+<text text-anchor="middlex="4669y="-2174.3" font-family="Times,serif" font-size="14.00">pnj:von_schencker_junior</text>
 </g> </g>
-<!-- pnj:lilalee&#45;&gt;pnj:eidanodunn --> +<!-- lore:organisations:mmar&#45;&gt;pnj:von_schencker_junior --> 
-<g id="edge99" class="edge"><title>pnj:lilalee&#45;&gt;pnj:eidanodunn</title> +<g id="edge595" class="edge"><title>lore:organisations:mmar&#45;&gt;pnj:von_schencker_junior</title> 
-<path fill="none" stroke="black" d="M451.134,-150.369C419.643,-139.473 372.758,-122.322 338.527,-109.251"/> +<path fill="none" stroke="black" d="M4364.49,-1979.46C4427.57,-2017.48 4574.42,-2111.45 4638.43,-2154.64"/> 
-<polygon fill="black" stroke="black" points="339.377,-105.828 328.787,-105.509 336.867,-112.362 339.377,-105.828"/>+<polygon fill="black" stroke="black" points="4636.66,-2157.67 4646.9,-2160.39 4640.59,-2151.87 4636.66,-2157.67"/>
 </g> </g>
-<!-- lore:gangs:machinedreammck&#45;&gt;lore:lieux:munich --> +<!-- lore:lieux:pompei&#45;&gt;lore:lieux:confederation_italienne --> 
-<g id="edge105" class="edge"><title>lore:gangs:machinedreammck&#45;&gt;lore:lieux:munich</title> +<g id="edge77" class="edge"><title>lore:lieux:pompei&#45;&gt;lore:lieux:confederation_italienne</title> 
-<path fill="none" stroke="black" d="M1708.67,-2477.98C1726.05,-2480.16 1744.11,-2482.3 1761,-2484 1996.09,-2507.71 2274.52,-2524.79 2408.02,-2532.47"/> +<path fill="none" stroke="black" d="M2990.24,-1402.83C3003.64,-1411.93 3019.59,-1423.52 3032.72,-1433.65"/> 
-<polygon fill="black" stroke="black" points="2407.97,-2535.98 2418.16,-2533.05 2408.37,-2528.99 2407.97,-2535.98"/>+<polygon fill="black" stroke="black" points="3030.85,-1436.64 3040.88,-1440.05 3035.17,-1431.13 3030.85,-1436.64"/>
 </g> </g>
-<!-- lore:gangs:machinedreammck&#45;&gt;lore:organisations:mmar --> +<!-- lore:planques:entrepot_np1 --> 
-<g id="edge104" class="edge"><title>lore:gangs:machinedreammck&#45;&gt;lore:organisations:mmar</title> +<g id="node67" class="node" onclick="click(evt)"><title>lore:planques:entrepot_np1</title> 
-<path fill="none" stroke="blackd="M1621,-2447.95C1621,-2421.29 1621,-2368.11 1621,-2323 1621,-2323 1621,-2323 1621,-1961 1621,-1735.07 1541,-1684.93 1541,-1459 1541,-1459 1541,-1459 1541,-1169 1541,-1033.03 1530.09,-995.417 1565,-864 1567.43,-854.856 1571.39,-845.361 1575.46,-836.977"/> +<ellipse fill="#92c6a8" fill-opacity="0.733333" stroke="#92c6a8stroke-opacity="0.733333" cx="2911" cy="-1242" rx="108.581" ry="18"/> 
-<polygon fill="blackstroke="blackpoints="1578.58,-838.558 1580.01,-828.061 1572.34,-835.375 1578.58,-838.558"/>+<text text-anchor="middlex="2911y="-1238.3" font-family="Times,serif" font-size="14.00">lore:planques:entrepot_np1</text>
 </g> </g>
-<!-- pnj:sorenjohanson&#45;&gt;lore:lieux:zurich --> +<!-- lore:lieux:pompei&#45;&gt;lore:planques:entrepot_np1 --> 
-<g id="edge106" class="edge"><title>pnj:sorenjohanson&#45;&gt;lore:lieux:zurich</title> +<g id="edge78" class="edge"><title>lore:lieux:pompei&#45;&gt;lore:planques:entrepot_np1</title> 
-<path fill="none" stroke="black" d="M2546.52,-1092.07C2732.77,-1079.39 3213.96,-1046.43 3222,-1044 3268.49,-1029.94 3365.84,-951.104 3412,-936 3675.65,-849.727 3755.29,-883.65 4032,-864 4789.69,-810.193 5710.41,-809.461 5979.03,-810.54"/> +<path fill="none" stroke="black" d="M2952.28,-1368.15C2940.82,-1343.94 2924.08,-1299.05 2915.49,-1270.13"/> 
-<polygon fill="black" stroke="black" points="5979.05,-814.04 5989.07,-810.582 5979.08,-807.04 5979.05,-814.04"/>+<polygon fill="black" stroke="black" points="2918.8,-1268.95 2912.72,-1260.27 2912.06,-1270.84 2918.8,-1268.95"/>
 </g> </g>
-<!-- pnj:sorenjohanson&#45;&gt;lore:corpos:saeder&#45;krupp --> +<!-- lore:lieux:pompei&#45;&gt;lore:lieux:nancy --> 
-<g id="edge107" class="edge"><title>pnj:sorenjohanson&#45;&gt;lore:corpos:saeder&#45;krupp</title> +<g id="edge79" class="edge"><title>lore:lieux:pompei&#45;&gt;lore:lieux:nancy</title> 
-<path fill="none" stroke="black" d="M2545.68,-1104.58C2596.98,-1108.37 2667.7,-1113.19 2730,-1116 3376.9,-1145.14 5007.88,-1092.79 5642,-1224 5911.37,-1279.74 5988.02,-1295.36 6222,-1440 6430.9,-1569.14 6626,-1571.41 6626,-1817 6626,-2179 6626,-2179 6626,-2179 6626,-2301.12 6665.57,-2326.99 6682,-2448 6694.95,-2543.33 6692.89,-2567.85 6696,-2664 6696.52,-2679.99 6697.57,-2684.08 6696,-2700 6683.73,-2824.47 6661.49,-2949.63 6632,-2988 6594.33,-3037.01 6571.94,-3041.36 6513,-3060 6392.87,-3097.98 6034.94,-3108.76 5850.95,-3111.8"/> +<path fill="none" stroke="black" d="M2932.06,-1369.64C2911.34,-1359.36 2883.9,-1345.73 2861.59,-1334.66"/> 
-<polygon fill="black" stroke="black" points="5850.64,-3108.31 5840.7,-3111.97 5850.76,-3115.31 5850.64,-3108.31"/>+<polygon fill="black" stroke="black" points="2862.9,-1331.4 2852.39,-1330.09 2859.79,-1337.67 2862.9,-1331.4"/>
 </g> </g>
-<!-- pnj:sorenjohanson&#45;&gt;lore:corpos:ares --> +<!-- lore:planques:entrepot_np1&#45;&gt;lore:lieux:sox --> 
-<g id="edge108" class="edge"><title>pnj:sorenjohanson&#45;&gt;lore:corpos:ares</title> +<g id="edge410" class="edge"><title>lore:planques:entrepot_np1&#45;&gt;lore:lieux:sox</title> 
-<path fill="none" stroke="black" d="M2437,-1113.93C2405.93,-1125.3 2361.3,-1140.93 2326.55,-1152.64"/> +<path fill="none" stroke="black" d="M2909.77,-1260.06C2908.12,-1278.21 2904.5,-1307.63 2897,-1332 2882.76,-1378.27 2804,-1480.59 2804,-1529 2804,-1603 2804,-1603 2804,-1603 2804,-1643.07 2800.79,-1689.39 2798.43,-1717.95"/> 
-<polygon fill="black" stroke="black" points="2325.4,-1149.34 2317.03,-1155.83 2327.62,-1155.97 2325.4,-1149.34"/>+<polygon fill="black" stroke="black" points="2794.94,-1717.71 2797.58,-1727.97 2801.91,-1718.3 2794.94,-1717.71"/>
 </g> </g>
-<!-- lore:objets:caisse_de_ruthenium&#45;&gt;lore:lieux:camargue --> +<!-- lore:planques:entrepot_np1&#45;&gt;lore:lieux:confederation_italienne --> 
-<g id="edge109" class="edge"><title>lore:objets:caisse_de_ruthenium&#45;&gt;lore:lieux:camargue</title> +<g id="edge411" class="edge"><title>lore:planques:entrepot_np1&#45;&gt;lore:lieux:confederation_italienne</title> 
-<path fill="none" stroke="black" d="M5151.49,-1907.96C5128.56,-1948.05 5067.12,-2050.79 5000,-2124 4898.24,-2234.98 4859.41,-2249.6 4739,-2340 4716.23,-2357.1 4702.95,-2353.12 4686,-2376 4641.4,-2436.2 4636,-2462.07 4636,-2537 4636,-2755 4636,-2755 4636,-2755 4636,-2924.14 4504.77,-3097.21 4451.79,-3160.19"/> +<path fill="none" stroke="black" d="M2937.15,-1259.53C2968.14,-1280.65 3018.75,-1320.23 3044,-1368 3054.08,-1387.07 3057.36,-1411.43 3058.25,-1429.84"/> 
-<polygon fill="black" stroke="black" points="4448.96,-3158.11 4445.15,-3167.99 4454.29,-3162.65 4448.96,-3158.11"/>+<polygon fill="black" stroke="black" points="3054.75,-1430.01 3058.52,-1439.91 3061.75,-1429.81 3054.75,-1430.01"/>
 </g> </g>
-<!-- lore:objets:caisse_de_ruthenium&#45;&gt;lore:lieux:sox --> +<!-- lore:planques:entrepot_np1&#45;&gt;lore:lieux:pompei --> 
-<g id="edge110" class="edge"><title>lore:objets:caisse_de_ruthenium&#45;&gt;lore:lieux:sox</title> +<g id="edge414" class="edge"><title>lore:planques:entrepot_np1&#45;&gt;lore:lieux:pompei</title> 
-<path fill="none" stroke="black" d="M5253.47,-1902.28C5342.2,-1916.75 5476.73,-1948.56 5574,-2016 5699.23,-2102.81 5716.94,-2157.84 5760,-2304 5792.01,-2412.65 5791.13,-2466.27 5722,-2556 5659.26,-2637.43 5635.06,-2658.52 5541,-2700 5477.87,-2727.84 5451.47,-2704.67 5390,-2736 5368.1,-2747.16 5366.92,-2756.3 5348,-2772 5335.81,-2782.12 5322.17,-2793.12 5310.48,-2802.46"/> +<path fill="none" stroke="black" d="M2921.89,-1260.19C2933.37,-1284.53 2950.03,-1329.28 2958.56,-1358.06"/> 
-<polygon fill="black" stroke="black" points="5308,-2799.96 5302.36,-2808.93 5312.36,-2805.44 5308,-2799.96"/>+<polygon fill="black" stroke="black" points="2955.24,-1359.19 2961.31,-1367.87 2961.98,-1357.3 2955.24,-1359.19"/>
 </g> </g>
-<!-- lore:objets:caisse_de_ruthenium&#45;&gt;lore:corpos:saeder&#45;krupp --> +<!-- lore:planques:entrepot_np1&#45;&gt;lore:lieux:nancy --> 
-<g id="edge111" class="edge"><title>lore:objets:caisse_de_ruthenium&#45;&gt;lore:corpos:saeder&#45;krupp</title> +<g id="edge413" class="edge"><title>lore:planques:entrepot_np1&#45;&gt;lore:lieux:nancy</title> 
-<path fill="none" stroke="black" d="M5158.89,-1908.09C5145.49,-2015.92 5072.22,-2598.46 5049,-2628 4958.45,-2743.16 4744,-2606.5 4744,-2753 4744,-2971 4744,-2971 4744,-2971 4744,-3059.73 5372.17,-3097.11 5630.27,-3108.72"/> +<path fill="none" stroke="black" d="M2895.22,-1260.04C2884.31,-1269.4 2869.57,-1281.1 2856.12,-1291.13"/> 
-<polygon fill="black" stroke="black" points="5630.27,-3112.22 5640.42,-3109.17 5630.58,-3105.23 5630.27,-3112.22"/>+<polygon fill="black" stroke="black" points="2853.95,-1288.38 2847.96,-1297.12 2858.09,-1294.02 2853.95,-1288.38"/>
 </g> </g>
-<!-- lore:objets:caisse_de_ruthenium&#45;&gt;pnj:martha_finkerbachen --> +<!-- lore:lieux:france --> 
-<g id="edge113" class="edge"><title>lore:objets:caisse_de_ruthenium&#45;&gt;pnj:martha_finkerbachen</title> +<g id="node109" class="node" onclick="click(evt)"><title>lore:lieux:france</title> 
-<path fill="none" stroke="blackd="M5036.27,-1887.24C4342.18,-1877.44 963.485,-1829.74 311.878,-1820.54"/> +<ellipse fill="#021dcd" fill-opacity="0.733333" stroke="#021dcdstroke-opacity="0.733333" cx="2682" cy="-1170" rx="67.6881" ry="18"/> 
-<polygon fill="blackstroke="blackpoints="311.609,-1817.03 301.561,-1820.39 311.51,-1824.03 311.609,-1817.03"/>+<text text-anchor="middlex="2682y="-1166.3" font-family="Times,serif" font-size="14.00">lore:lieux:france</text>
 </g> </g>
-<!-- lore:objets:caisse_de_ruthenium&#45;&gt;pnj:karl_paolo --> +<!-- lore:planques:entrepot_np1&#45;&gt;lore:lieux:france --> 
-<g id="edge112" class="edge"><title>lore:objets:caisse_de_ruthenium&#45;&gt;pnj:karl_paolo</title> +<g id="edge412" class="edge"><title>lore:planques:entrepot_np1&#45;&gt;lore:lieux:france</title> 
-<path fill="none" stroke="black" d="M5229.72,-1874.83C5297.55,-1861.56 5400.25,-1842.01 5465.75,-1829.91"/> +<path fill="none" stroke="black" d="M2861.59,-1225.9C2824.18,-1214.46 2772.87,-1198.78 2734.68,-1187.1"/> 
-<polygon fill="black" stroke="black" points="5466.74,-1833.29 5475.94,-1828.03 5465.47,-1826.4 5466.74,-1833.29"/>+<polygon fill="black" stroke="black" points="2735.36,-1183.65 2724.77,-1184.07 2733.31,-1190.34 2735.36,-1183.65"/>
 </g> </g>
-<!-- pnj:karl_paolo&#45;&gt;lore:lieux:camargue --> +<!-- lore:planques:entrepot_np1&#45;&gt;pnj:ekhart --> 
-<g id="edge589" class="edge"><title>pnj:karl_paolo&#45;&gt;lore:lieux:camargue</title> +<g id="edge415" class="edge"><title>lore:planques:entrepot_np1&#45;&gt;pnj:ekhart</title> 
-<path fill="none" stroke="black" d="M5470.41,-1825.08C5338.56,-1839 5026,-1872 5026,-1872 4863.07,-1965.86 4646.76,-2320.78 4566,-2520 4470.71,-2755.07 4439.51,-3064.98 4432,-3157.68"/> +<path fill="none" stroke="black" d="M3005.38,-1233.03C3045.05,-1230.03 3091.68,-1226.68 3134,-1224 3432.5,-1205.07 3507.8,-1211.15 3806,-1188 3846.73,-1184.84 3892.92,-1180.04 3927.86,-1176.35"/> 
-<polygon fill="black" stroke="black" points="4428.49,-3157.65 4431.2,-3167.89 4435.47,-3158.2 4428.49,-3157.65"/>+<polygon fill="black" stroke="black" points="3928.28,-1179.82 3937.86,-1175.29 3927.55,-1172.86 3928.28,-1179.82"/>
 </g> </g>
-<!-- pnj:karl_paolo&#45;&gt;lore:lieux:zurich --> +<!-- lore:lieux:nancy&#45;&gt;lore:lieux:sox --> 
-<g id="edge595" class="edge"><title>pnj:karl_paolo&#45;&gt;lore:lieux:zurich</title> +<g id="edge155" class="edge"><title>lore:lieux:nancy&#45;&gt;lore:lieux:sox</title> 
-<path fill="none" stroke="black" d="M5577.46,-1806.86C5612.68,-1798.43 5660.42,-1784.46 5699,-1764 5789.51,-1716 5815.8,-1700.63 5879,-1620 6029.87,-1427.53 6056,-1343.55 6056,-1099 6056,-1099 6056,-1099 6056,-953 6056,-912.996 6056,-866.653 6056,-838.08"/> +<path fill="none" stroke="black" d="M2822.18,-1332.13C2817.36,-1355.96 2803.96,-1400.66 2799,-1440 2785,-1551.12 2792.69,-1580.18 2799,-1692 2799.47,-1700.36 2800.36,-1709.42 2800.91,-1717.65"/> 
-<polygon fill="black" stroke="black" points="6059.5,-838.049 6056,-828.049 6052.5,-838.049 6059.5,-838.049"/>+<polygon fill="black" stroke="black" points="2797.43,-1718.03 2801.38,-1727.86 2804.42,-1717.7 2797.43,-1718.03"/>
 </g> </g>
-<!-- pnj:karl_paolo&#45;&gt;lore:corpos:saeder&#45;krupp --> +<!-- lore:lieux:nancy&#45;&gt;lore:planques:entrepot_np1 --> 
-<g id="edge590" class="edge"><title>pnj:karl_paolo&#45;&gt;lore:corpos:saeder&#45;krupp</title> +<g id="edge157" class="edge"><title>lore:lieux:nancy&#45;&gt;lore:planques:entrepot_np1</title> 
-<path fill="none" stroke="black" d="M5562.55,-1833C5581.15,-1842.69 5603.55,-1856.59 5621,-1872 5652.01,-1899.39 5654.92,-1911.1 5680,-1944 5793.83,-2093.3 5846.53,-2124.33 5901,-2304 5952.73,-2474.61 5984.03,-2599.17 5837,-2700 5724.07,-2777.45 5635.18,-2647.12 5531,-2736 5455.11,-2800.75 5483.68,-2853.19 5470,-2952 5463.42,-2999.55 5439.4,-3023.02 5470,-3060 5491.3,-3085.75 5568.45,-3099.09 5634.73,-3105.95"/> +<path fill="none" stroke="black" d="M2837.25,-1296.41C2847.99,-1287.17 2862.61,-1275.54 2876.06,-1265.49"/> 
-<polygon fill="black" stroke="black" points="5634.55,-3109.45 5644.84,-3106.96 5635.24,-3102.49 5634.55,-3109.45"/>+<polygon fill="black" stroke="black" points="2878.25,-1268.22 2884.23,-1259.47 2874.1,-1262.58 2878.25,-1268.22"/>
 </g> </g>
-<!-- pnj:karl_paolo&#45;&gt;lore:corpos:gomorrah --> +<!-- lore:lieux:nancy&#45;&gt;lore:lieux:france --> 
-<g id="edge592" class="edge"><title>pnj:karl_paolo&#45;&gt;lore:corpos:gomorrah</title> +<g id="edge156" class="edge"><title>lore:lieux:nancy&#45;&gt;lore:lieux:france</title> 
-<path fill="none" stroke="black" d="M5528.01,-1799.83C5528.8,-1780.78 5532.48,-1749.84 5547,-1728 5585.81,-1669.64 5765.65,-1605.31 5806,-1548 5829.58,-1514.5 5830,-1499.97 5830,-1459 5830,-1459 5830,-1459 5830,-1385 5830,-1250.59 5703.91,-1258.47 5574,-1224 5369.16,-1169.66 4832.46,-1202.16 4621,-1188 4454.38,-1176.84 4413.31,-1167.11 4247,-1152 3727.93,-1104.84 3104.78,-1053.28 2874.9,-1034.43"/> +<path fill="none" stroke="black" d="M2801.45,-1296.71C2774.3,-1271.94 2727.39,-1224.62 2701.03,-1195.64"/> 
-<polygon fill="black" stroke="black" points="2875.17,-1030.94 2864.91,-1033.61 2874.59,-1037.91 2875.17,-1030.94"/>+<polygon fill="black" stroke="black" points="2703.45,-1193.09 2694.17,-1187.98 2698.24,-1197.76 2703.45,-1193.09"/>
 </g> </g>
-<!-- pnj:karl_paolo&#45;&gt;lore:organisations:swamp_rats --> +<!-- lore:lieux:nancy&#45;&gt;lore:objets:caisse_de_ruthenium --> 
-<g id="edge588" class="edge"><title>pnj:karl_paolo&#45;&gt;lore:organisations:swamp_rats</title> +<g id="edge158" class="edge"><title>lore:lieux:nancy&#45;&gt;lore:objets:caisse_de_ruthenium</title> 
-<path fill="none" stroke="black" d="M5467.58,-1822.84C5362.88,-1829.88 5141.08,-1846.53 4955,-1872 4777.77,-1896.26 4733.97,-1906.8 4559,-1944 4454.2,-1966.28 4333.6,-1996.62 4260.63,-2015.49"/> +<path fill="none" stroke="black" d="M2882.29,-1306.45C3020.61,-1291.47 3371.43,-1253.7 3665,-1224 3830.26,-1207.28 3876.1,-1229.27 4037,-1188 4233.32,-1137.64 4263.2,-1070.51 4456,-1008 4525.34,-985.519 4550.66,-1004.3 4616,-972 4638.34,-960.953 4636.09,-945.821 4659,-936 4690.51,-922.49 4881.94,-903.875 5009.72,-892.681"/> 
-<polygon fill="black" stroke="black" points="4259.46,-2012.18 4250.66,-2018.08 4261.22,-2018.96 4259.46,-2012.18"/>+<polygon fill="black" stroke="black" points="5010.3,-896.144 5019.96,-891.788 5009.69,-889.17 5010.3,-896.144"/>
 </g> </g>
-<!-- pnj:karl_paolo&#45;&gt;lore:objets:caisse_de_ruthenium --> +<!-- lore:lieux:europe&#45;&gt;lore:lieux:tir_na_nog --> 
-<g id="edge594" class="edge"><title>pnj:karl_paolo&#45;&gt;lore:objets:caisse_de_ruthenium</title> +<g id="edge600" class="edge"><title>lore:lieux:europe&#45;&gt;lore:lieux:tir_na_nog</title> 
-<path fill="none" stroke="black" d="M5479.23,-1829.24C5419.97,-1840.95 5319.12,-1860.24 5246.78,-1873.72"/> +<path fill="none" stroke="black" d="M3004.95,-1518.29C2915.78,-1500.53 2730.09,-1464.48 2572,-1440 1943.33,-1342.67 1738.51,-1506.4 1152,-1260 1048.76,-1216.63 789.482,-982.126 707.361,-906.513"/> 
-<polygon fill="black" stroke="black" points="5245.96,-1870.32 5236.77,-1875.59 5247.25,-1877.2 5245.96,-1870.32"/>+<polygon fill="black" stroke="black" points="709.701,-903.91 699.978,-899.703 704.956,-909.056 709.701,-903.91"/>
 </g> </g>
-<!-- pnj:karl_paolo&#45;&gt;pnj:jibril --> +<!-- lore:lieux:europe&#45;&gt;lore:lieux:confederation_italienne --> 
-<g id="edge593" class="edge"><title>pnj:karl_paolo&#45;&gt;pnj:jibril</title> +<g id="edge601" class="edge"><title>lore:lieux:europe&#45;&gt;lore:lieux:confederation_italienne</title> 
-<path fill="none" stroke="black" d="M5466.64,-1814.4C5202.2,-1803.22 4162.51,-1759.25 3922.59,-1749.1"/> +<path fill="none" stroke="black" d="M3052.12,-1512.05C3051.3,-1504.35 3051.06,-1495.03 3051.39,-1486.36"/> 
-<polygon fill="black" stroke="black" points="3922.56,-1745.59 3912.42,-1748.67 3922.26,-1752.59 3922.56,-1745.59"/>+<polygon fill="black" stroke="black" points="3054.89,-1486.49 3052.09,-1476.28 3047.91,-1486.01 3054.89,-1486.49"/>
 </g> </g>
-<!-- pnj:karl_paolo&#45;&gt;pnj:janusibherin --> +<!-- lore:lieux:europe&#45;&gt;lore:lieux:france --> 
-<g id="edge591" class="edge"><title>pnj:karl_paolo&#45;&gt;pnj:janusibherin</title> +<g id="edge599" class="edge"><title>lore:lieux:europe&#45;&gt;lore:lieux:france</title> 
-<path fill="none" stroke="black" d="M5550.03,-1800.76C5562.74,-1791.4 5578.91,-1779.49 5592.79,-1769.26"/> +<path fill="none" stroke="black" d="M3012.22,-1516.3C2982.77,-1506.53 2944.33,-1492.03 2912,-1476 2884.65,-1462.44 2818.47,-1423.53 2795,-1404 2761.86,-1376.42 2752.07,-1369.04 2730,-1332 2704.12,-1288.56 2687.42,-1231.54 2681.82,-1198.32"/> 
-<polygon fill="black" stroke="black" points="5595.11,-1771.9 5601.09,-1763.15 5590.96,-1766.26 5595.11,-1771.9"/>+<polygon fill="black" stroke="black" points="2685.29,-1197.82 2680.4,-1188.42 2678.36,-1198.82 2685.29,-1197.82"/>
 </g> </g>
-<!-- pnj:karl_paolo&#45;&gt;pnj:klausvongreschman --> +<!-- lore:lieux:genes&#45;&gt;lore:lieux:gemito --> 
-<g id="edge587" class="edge"><title>pnj:karl_paolo&#45;&gt;pnj:klausvongreschman</title> +<g id="edge345" class="edge"><title>lore:lieux:genes&#45;&gt;lore:lieux:gemito</title> 
-<path fill="none" stroke="black" d="M5545.21,-1835.43C5617.08,-1906.1 5884.39,-2190.59 5773,-2412 5676.48,-2603.85 5568.57,-2588.54 5385,-2700 5353.74,-2718.98 5342.22,-2716.94 5311,-2736 5308.23,-2737.69 5171.93,-2774.85 5215,-2844 5285.2,-2956.71 5440.84,-3006.77 5536.25,-3027.57"/> +<path fill="none" stroke="black" d="M3763.09,-1187.08C3774.4,-1196.4 3786.87,-1209.21 3793,-1224 3799.12,-1238.78 3798.97,-1245.15 3793,-1260 3776.48,-1301.13 3762.32,-1309.73 3724,-1332 3681.98,-1356.42 3628.89,-1369.68 3586.47,-1376.83"/> 
-<polygon fill="black" stroke="black" points="5535.63,-3031.02 5546.14,-3029.67 5537.09,-3024.17 5535.63,-3031.02"/>+<polygon fill="black" stroke="black" points="3585.81,-1373.39 3576.49,-1378.44 3586.92,-1380.3 3585.81,-1373.39"/>
 </g> </g>
-<!-- pnj:theodore_smith&#45;&gt;lore:lieux:gemito --> +<!-- lore:lieux:genes&#45;&gt;lore:gangs:white_skullz --> 
-<g id="edge600" class="edge"><title>pnj:theodore_smith&#45;&gt;lore:lieux:gemito</title> +<g id="edge346" class="edge"><title>lore:lieux:genes&#45;&gt;lore:gangs:white_skullz</title> 
-<path fill="none" stroke="black" d="M4336.97,-1388.71C4432.29,-1392.36 4583.69,-1403.86 4625,-1440 4656.19,-1467.28 4679.03,-1590.4 4683.83,-1645.82"/> +<path fill="none" stroke="black" d="M3747.68,-1152.05C3753.64,-1143.46 3761.93,-1132.86 3770.02,-1123.4"/> 
-<polygon fill="black" stroke="black" points="4680.35,-1646.22 4684.54,-1655.95 4687.33,-1645.73 4680.35,-1646.22"/>+<polygon fill="black" stroke="black" points="3772.73,-1125.61 3776.71,-1115.79 3767.47,-1120.99 3772.73,-1125.61"/>
 </g> </g>
-<!-- pnj:theodore_smith&#45;&gt;lore:lieux:munich --> +<!-- lore:lieux:milan&#45;&gt;lore:lieux:gemito --> 
-<g id="edge601" class="edge"><title>pnj:theodore_smith&#45;&gt;lore:lieux:munich</title> +<g id="edge548" class="edge"><title>lore:lieux:milan&#45;&gt;lore:lieux:gemito</title> 
-<path fill="none" stroke="black" d="M4256.92,-1404.13C4253.35,-1414.48 4247.25,-1427.96 4242,-1440 4165.74,-1614.94 4166.07,-1667.75 4076,-1836 3985.36,-2005.32 3943.38,-2036.1 3837,-2196 3826.35,-2212.01 3822.16,-2215.09 3813,-2232 3754.96,-2339.14 3805.23,-2414.71 3705,-2484 3658.47,-2516.16 2834.52,-2531.72 2568.81,-2535.85"/> +<path fill="none" stroke="black" d="M3111.73,-1188.29C3109.09,-1207.17 3107.57,-1237.69 3120,-1260 3147.19,-1308.79 3171.46,-1310.49 3223,-1332 3291.76,-1360.7 3376.1,-1373.9 3436.06,-1379.94"/> 
-<polygon fill="black" stroke="black" points="2568.41,-2532.36 2558.46,-2536.01 2568.52,-2539.35 2568.41,-2532.36"/>+<polygon fill="black" stroke="black" points="3435.92,-1383.45 3446.21,-1380.92 3436.6,-1376.48 3435.92,-1383.45"/>
 </g> </g>
-<!-- pnj:theodore_smith&#45;&gt;lore:organisations:mi&#45;seng_lung --> +<!-- lore:lieux:milan&#45;&gt;pnj:marcello --> 
-<g id="edge602" class="edge"><title>pnj:theodore_smith&#45;&gt;lore:organisations:mi&#45;seng_lung</title> +<g id="edge550" class="edge"><title>lore:lieux:milan&#45;&gt;pnj:marcello</title> 
-<path fill="none" stroke="black" d="M4223.71,-1369.46C4202.39,-1359.52 4174.49,-1346.49 4151.31,-1335.68"/> +<path fill="none" stroke="black" d="M3141.1,-1186.51C3154.32,-1195.73 3170.14,-1207.6 3183.04,-1217.91"/> 
-<polygon fill="black" stroke="black" points="4152.57,-1332.4 4142.02,-1331.34 4149.61,-1338.74 4152.57,-1332.4"/>+<polygon fill="black" stroke="black" points="3181.07,-1220.82 3191.04,-1224.41 3185.49,-1215.39 3181.07,-1220.82"/>
 </g> </g>
-<!-- pnj:theodore_smith&#45;&gt;lore:organisations:swamp_rats --> +<!-- lore:lieux:milan&#45;&gt;pnj:moman --> 
-<g id="edge598" class="edge"><title>pnj:theodore_smith&#45;&gt;lore:organisations:swamp_rats</title> +<g id="edge549" class="edge"><title>lore:lieux:milan&#45;&gt;pnj:moman</title> 
-<path fill="none" stroke="black" d="M4256.98,-1404.25C4253.89,-1414.42 4249.14,-1427.67 4247,-1440 4244.26,-1455.76 4246.89,-1460 4247,-1476 4247.44,-1540 4246.93,-1556.03 4249,-1620 4251.83,-1707.62 4259,-1729.33 4259,-1817 4259,-1891 4259,-1891 4259,-1891 4259,-1934.28 4236.21,-1980.13 4217.37,-2007.66"/> +<path fill="none" stroke="black" d="M3081.44,-1154.5C3060.34,-1144.24 3033.38,-1130.36 3012.49,-1119.05"/> 
-<polygon fill="black" stroke="black" points="4214.42,-2005.77 4211.42,-2015.93 4220.1,-2009.85 4214.42,-2005.77"/>+<polygon fill="black" stroke="black" points="3014.11,-1115.94 3003.66,-1114.21 3010.75,-1122.08 3014.11,-1115.94"/>
 </g> </g>
-<!-- pnj:theodore_smith&#45;&gt;lore:corpos:bilbauer --> +<!-- lore:lieux:milan&#45;&gt;lore:gangs:groupe_leonkavallo --> 
-<g id="edge599" class="edge"><title>pnj:theodore_smith&#45;&gt;lore:corpos:bilbauer</title> +<g id="edge551" class="edge"><title>lore:lieux:milan&#45;&gt;lore:gangs:groupe_leonkavallo</title> 
-<path fill="none" stroke="black" d="M4290.51,-1369.46C4312.6,-1359.22 4341.73,-1345.72 4365.45,-1334.73"/> +<path fill="none" stroke="black" d="M3122.19,-1152.05C3127.86,-1143.54 3135.74,-1133.07 3143.48,-1123.68"/> 
-<polygon fill="black" stroke="black" points="4366.98,-1337.87 4374.58,-1330.49 4364.04,-1331.52 4366.98,-1337.87"/>+<polygon fill="black" stroke="black" points="3146.38,-1125.68 3150.19,-1115.79 3141.04,-1121.14 3146.38,-1125.68"/>
 </g> </g>
-<!-- pnj:jibril&#45;&gt;lore:lieux:gemito --> +<!-- lore:bars:shatterwein&#45;&gt;lore:lieux:munich --> 
-<g id="edge121" class="edge"><title>pnj:jibril&#45;&gt;lore:lieux:gemito</title> +<g id="edge88" class="edge"><title>lore:bars:shatterwein&#45;&gt;lore:lieux:munich</title> 
-<path fill="none" stroke="black" d="M3902.95,-1734.2C3910.7,-1731.79 3919.08,-1729.5 3927,-1728 4170.24,-1681.85 4464.34,-1674.91 4603.12,-1674.47"/> +<path fill="none" stroke="black" d="M3639.58,-2771.61C3660.18,-2791.01 3683.39,-2823.1 3664,-2844 3642.87,-2866.78 3213.45,-2886.73 3031.38,-2894.04"/> 
-<polygon fill="black" stroke="black" points="4603.25,-1677.97 4613.25,-1674.45 4603.24,-1670.97 4603.25,-1677.97"/>+<polygon fill="black" stroke="black" points="3031.18,-2890.54 3021.33,-2894.44 3031.46,-2897.53 3031.18,-2890.54"/>
 </g> </g>
-<!-- pnj:jibril&#45;&gt;pnj:tristanodunn --> +<!-- pnj:marinemosangle --> 
-<g id="edge124" class="edge"><title>pnj:jibril&#45;&gt;pnj:tristanodunn</title> +<g id="node73" class="node" onclick="click(evt)"><title>pnj:marinemosangle</title> 
-<path fill="none" stroke="blackd="M3833.65,-1742.77C3732.13,-1736.8 3453.16,-1719.06 3222,-1692 2801.78,-1642.8 2698.25,-1618.06 2281,-1548 1913.71,-1486.33 648,-1543.43 648,-1171 648,-1171 648,-1171 648,-953 648,-909.588 624.193,-864.03 606.824,-836.57"/> +<ellipse fill="#e5b030" fill-opacity="0.733333" stroke="#e5b030stroke-opacity="0.733333" cx="5766" cy="-2106" rx="81.7856" ry="18"/> 
-<polygon fill="blackstroke="blackpoints="609.618,-834.446 601.225,-827.981 603.754,-838.269 609.618,-834.446"/>+<text text-anchor="middlex="5766y="-2102.3" font-family="Times,serif" font-size="14.00">pnj:marinemosangle</text>
 </g> </g>
-<!-- pnj:jibril&#45;&gt;lore:lieux:tir_na_nog --> +<!-- pnj:marinemosangle&#45;&gt;lore:corpos:saeder&#45;krupp --> 
-<g id="edge123" class="edge"><title>pnj:jibril&#45;&gt;lore:lieux:tir_na_nog</title> +<g id="edge93" class="edge"><title>pnj:marinemosangle&#45;&gt;lore:corpos:saeder&#45;krupp</title> 
-<path fill="none" stroke="black" d="M3833.75,-1742.7C3626.14,-1729.06 2639.95,-1645.59 1961,-1260 1522.28,-1010.84 1474.4,-856.47 1055,-576 1038.34,-564.858 1019.29,-553.458 1003.02,-544.098"/> +<path fill="none" stroke="black" d="M5686.87,-2101.3C5581.11,-2095.32 5400.12,-2081.11 5341,-2052 5325.32,-2044.28 5294.62,-2011.14 5273.95,-1987.56"/> 
-<polygon fill="black" stroke="black" points="1004.72,-541.038 994.295,-539.124 1001.25,-547.119 1004.72,-541.038"/>+<polygon fill="black" stroke="black" points="5276.56,-1985.23 5267.36,-1979.98 5271.28,-1989.82 5276.56,-1985.23"/>
 </g> </g>
-<!-- pnj:jibril&#45;&gt;lore:lieux:europe --> +<!-- pnj:marinemosangle&#45;&gt;lore:lieux:zurich --> 
-<g id="edge119" class="edge"><title>pnj:jibril&#45;&gt;lore:lieux:europe</title> +<g id="edge94" class="edge"><title>pnj:marinemosangle&#45;&gt;lore:lieux:zurich</title> 
-<path fill="none" stroke="black" d="M3874.84,-1727.68C3882.27,-1667.17 3915.68,-1463.72 4037,-1368 4108.94,-1311.24 4152.71,-1359.86 4240,-1332 4275.61,-1320.64 4279.73,-1305.02 4316,-1296 4524.93,-1244.06 5185.31,-1241.68 5415.18,-1242.49"/> +<path fill="none" stroke="black" d="M5847.79,-2104.84C5969.83,-2103.1 6206.18,-2093.99 6402,-2052 6506.34,-2029.63 6625,-2069.71 6625,-1963 6625,-1963 6625,-1963 6625,-449 6625,-339.486 6250.63,-314.422 6085.59,-308.694"/> 
-<polygon fill="black" stroke="black" points="5415.46,-1245.99 5425.47,-1242.53 5415.48,-1238.99 5415.46,-1245.99"/>+<polygon fill="black" stroke="black" points="6085.62,-305.193 6075.51,-308.359 6085.39,-312.189 6085.62,-305.193"/>
 </g> </g>
-<!-- pnj:jibril&#45;&gt;lore:corpos:saeder&#45;krupp --> +<!-- pnj:alphonsemosangle --> 
-<g id="edge118" class="edge"><title>pnj:jibril&#45;&gt;lore:corpos:saeder&#45;krupp</title> +<g id="node74" class="node" onclick="click(evt)"><title>pnj:alphonsemosangle</title> 
-<path fill="none" stroke="blackd="M3885.98,-1763.26C3943.65,-1844.79 4171.09,-2206.11 4182,-2232 4210.63,-2299.95 4222,-2319.27 4222,-2393 4222,-2467 4222,-2467 4222,-2467 4222,-2622.68 4460.49,-2981.62 4595,-3060 4682.82,-3111.17 5355.67,-3114.52 5626.58,-3113.71"/> +<ellipse fill="#e5b030" fill-opacity="0.733333" stroke="#e5b030stroke-opacity="0.733333" cx="5766" cy="-2034" rx="90.1842" ry="18"/> 
-<polygon fill="blackstroke="blackpoints="5626.84,-3117.21 5636.83,-3113.68 5626.82,-3110.21 5626.84,-3117.21"/>+<text text-anchor="middlex="5766y="-2030.3" font-family="Times,serif" font-size="14.00">pnj:alphonsemosangle</text>
 </g> </g>
-<!-- pnj:jibril&#45;&gt;pj:eidolon --> +<!-- pnj:marinemosangle&#45;&gt;pnj:alphonsemosangle --> 
-<g id="edge122" class="edge"><title>pnj:jibril&#45;&gt;pj:eidolon</title> +<g id="edge95" class="edge"><title>pnj:marinemosangle&#45;&gt;pnj:alphonsemosangle</title> 
-<path fill="none" stroke="black" d="M3833.22,-1747.48C3534.85,-1751.15 1655.77,-1775.16 1539,-1800 1498.47,-1808.62 1492.98,-1825.13 1453,-1836 1337.88,-1867.3 1295.98,-1823.46 1187,-1872 1028.87,-1942.44 1039.81,-2037.26 890,-2124 858.677,-2142.14 820.075,-2155.76 790.29,-2164.66"/> +<path fill="none" stroke="black" d="M5760.08,-2087.7C5759.29,-2079.98 5759.06,-2070.71 5759.4,-2062.11"/> 
-<polygon fill="black" stroke="black" points="789.174,-2161.34 780.55,-2167.49 791.13,-2168.06 789.174,-2161.34"/>+<polygon fill="black" stroke="black" points="5762.9,-2062.32 5760.1,-2052.1 5755.92,-2061.84 5762.9,-2062.32"/>
 </g> </g>
-<!-- pnj:jibril&#45;&gt;pnj:le_boss_d_ekhart --> +<!-- pnj:alphonsemosangle&#45;&gt;lore:corpos:saeder&#45;krupp --> 
-<g id="edge120" class="edge"><title>pnj:jibril&#45;&gt;pnj:le_boss_d_ekhart</title> +<g id="edge401" class="edge"><title>pnj:alphonsemosangle&#45;&gt;lore:corpos:saeder&#45;krupp</title> 
-<path fill="none" stroke="black" d="M3885.51,-1728.57C3940.28,-1656.69 4156.66,-1373.24 4167,-1368 4225.99,-1338.08 5291.05,-1337.05 5357,-1332 5375.57,-1330.58 5395.47,-1328.47 5414.23,-1326.22"/> +<path fill="none" stroke="black" d="M5693.86,-2023.16C5601.28,-2010.52 5440.75,-1988.62 5341.06,-1975.02"/> 
-<polygon fill="black" stroke="black" points="5414.71,-1329.68 5424.21,-1324.99 5413.86,-1322.74 5414.71,-1329.68"/>+<polygon fill="black" stroke="black" points="5341.39,-1971.53 5331.01,-1973.64 5340.45,-1978.46 5341.39,-1971.53"/>
 </g> </g>
-<!-- pnj:le_boss_d_ekhart&#45;&gt;lore:lieux:europe --> +<!-- pnj:alphonsemosangle&#45;&gt;lore:lieux:zurich --> 
-<g id="edge449" class="edge"><title>pnj:le_boss_d_ekhart&#45;&gt;lore:lieux:europe</title> +<g id="edge399" class="edge"><title>pnj:alphonsemosangle&#45;&gt;lore:lieux:zurich</title> 
-<path fill="none" stroke="black" d="M5495,-1295.7C5495,-1287.98 5495,-1278.71 5495,-1270.11"/> +<path fill="none" stroke="black" d="M5834.93,-2022.29C5892.08,-2012.46 5968.02,-1996.88 5994,-1980 6102.83,-1909.3 6170,-1876.78 6170,-1747 6170,-1747 6170,-1747 6170,-1385 6170,-1288.4 6208,-1267.6 6208,-1171 6208,-1171 6208,-1171 6208,-449 6208,-379.044 6125.51,-340.306 6066.75,-321.586"/> 
-<polygon fill="black" stroke="black" points="5498.5,-1270.1 5495,-1260.1 5491.5,-1270.1 5498.5,-1270.1"/>+<polygon fill="black" stroke="black" points="6067.76,-318.235 6057.17,-318.643 6065.7,-324.926 6067.76,-318.235"/>
 </g> </g>
-<!-- pnj:le_boss_d_ekhart&#45;&gt;lore:corpos:saeder&#45;krupp --> +<!-- pnj:alphonsemosangle&#45;&gt;pnj:marinemosangle --> 
-<g id="edge447" class="edge"><title>pnj:le_boss_d_ekhart&#45;&gt;lore:corpos:saeder&#45;krupp</title> +<g id="edge400" class="edge"><title>pnj:alphonsemosangle&#45;&gt;pnj:marinemosangle</title> 
-<path fill="none" stroke="black" d="M5482.52,-1332.13C5472.86,-1341.85 5460.14,-1354.7 5451,-1368 5381.61,-1469.03 5420.14,-1528.14 5339,-1620 5313.33,-1649.06 5069.86,-1775.26 5040,-1800 4940.85,-1882.12 4928.14,-1916.05 4847,-2016 4685.25,-2215.25 4598,-2280.36 4598,-2537 4598,-2755 4598,-2755 4598,-2755 4598,-2902.36 4607.21,-2975.6 4728,-3060 4800.44,-3110.62 5378.65,-3114.54 5626.7,-3113.8"/> +<path fill="none" stroke="black" d="M5771.9,-2052.1C5772.7,-2059.79 5772.94,-2069.05 5772.6,-2077.67"/> 
-<polygon fill="black" stroke="black" points="5626.83,-3117.3 5636.82,-3113.77 5626.81,-3110.3 5626.83,-3117.3"/>+<polygon fill="black" stroke="black" points="5769.11,-2077.48 5771.92,-2087.7 5776.09,-2077.96 5769.11,-2077.48"/>
 </g> </g>
-<!-- pnj:le_boss_d_ekhart&#45;&gt;pnj:ekhart --> +<!-- pnj:domovoi&#45;&gt;lore:lieux:munich --> 
-<g id="edge448" class="edge"><title>pnj:le_boss_d_ekhart&#45;&gt;pnj:ekhart</title> +<g id="edge261" class="edge"><title>pnj:domovoi&#45;&gt;lore:lieux:munich</title> 
-<path fill="none" stroke="black" d="M5501.41,-1332.28C5502.43,-1340.03 5502.92,-1349.36 5502.82,-1358.01"/> +<path fill="none" stroke="black" d="M3550.71,-2839.28C3542.91,-2841.06 3534.75,-2842.72 3527,-2844 3351.54,-2873.06 3142.71,-2887.45 3030.91,-2893.44"/> 
-<polygon fill="black" stroke="black" points="5499.32,-1357.92 5502.39,-1368.05 5506.31,-1358.21 5499.32,-1357.92"/>+<polygon fill="black" stroke="black" points="3030.53,-2889.95 3020.73,-2893.97 3030.9,-2896.94 3030.53,-2889.95"/>
 </g> </g>
-<!-- lore:gangs:dorf_et_obere&#45;&gt;lore:organisations:camorra --> +<!-- pnj:domovoi&#45;&gt;lore:bars:shatterwein --> 
-<g id="edge127" class="edge"><title>lore:gangs:dorf_et_obere&#45;&gt;lore:organisations:camorra</title> +<g id="edge260" class="edge"><title>pnj:domovoi&#45;&gt;lore:bars:shatterwein</title> 
-<path fill="none" stroke="black" d="M2503.82,-1973.82C2650.61,-1995.38 2980.69,-2045.31 3258,-2088 3321.78,-2097.82 4828.66,-2306.36 4916,-2376 4980.15,-2427.15 4967.57,-2474.63 4957,-2556 4955.87,-2564.72 4953.73,-2574.05 4951.03,-2582.42"/> +<path fill="none" stroke="black" d="M3595.54,-2808.05C3598.57,-2800.18 3602.26,-2790.62 3605.67,-2781.79"/> 
-<polygon fill="black" stroke="black" points="4947.66,-2581.44 4947.5,-2592.04 4954.23,-2583.86 4947.66,-2581.44"/>+<polygon fill="black" stroke="black" points="3609,-2782.86 3609.34,-2772.28 3602.47,-2780.35 3609,-2782.86"/>
 </g> </g>
-<!-- lore:gangs:dorf_et_obere&#45;&gt;lore:corpos:ares --> +<!-- lore:planques:squat_d_en_dol&#45;&gt;lore:lieux:munich --> 
-<g id="edge128" class="edge"><title>lore:gangs:dorf_et_obere&#45;&gt;lore:corpos:ares</title> +<g id="edge402" class="edge"><title>lore:planques:squat_d_en_dol&#45;&gt;lore:lieux:munich</title> 
-<path fill="none" stroke="black" d="M2406.14,-1944.14C2378.45,-1919.72 2333,-1871.63 2333,-1819 2333,-1819 2333,-1819 2333,-1529 2333,-1403.62 2297.33,-1256.78 2281.46,-1197.65"/> +<path fill="none" stroke="black" d="M1475,-2838.24C1493.21,-2840.46 1512.24,-2842.55 1530,-2844 2038.5,-2885.6 2651.41,-2894.56 2869.33,-2896.48"/> 
-<polygon fill="black" stroke="black" points="2284.83,-1196.71 2278.83,-1187.98 2278.08,-1198.54 2284.83,-1196.71"/>+<polygon fill="black" stroke="black" points="2869.38,-2899.98 2879.41,-2896.57 2869.44,-2892.98 2869.38,-2899.98"/>
 </g> </g>
-<!-- lore:gangs:dorf_et_obere&#45;&gt;pnj:gutwayn --> +<!-- lore:planques:squat_d_en_dol&#45;&gt;pj:endol --> 
-<g id="edge125" class="edge"><title>lore:gangs:dorf_et_obere&#45;&gt;pnj:gutwayn</title> +<g id="edge403" class="edge"><title>lore:planques:squat_d_en_dol&#45;&gt;pj:endol</title> 
-<path fill="none" stroke="black" d="M2410.9,-1980C2400.79,-1989.24 2388.93,-2001.69 2383,-2016 2364.48,-2060.7 2383.06,-2117.3 2394.87,-2150.1"/> +<path fill="none" stroke="black" d="M1295.12,-2814.41C1239.63,-2806.35 1168.06,-2792.99 1107,-2772 987.191,-2730.82 955.211,-2712.7 861,-2628 717.077,-2498.61 689.413,-2447.07 616,-2268 532.864,-2065.21 362,-1534.17 362,-1315 362,-1315 362,-1315 362,-1241 362,-1105.43 323.171,-1067.29 357,-936 366.75,-898.16 390.657,-859.524 407.588,-835.42"/> 
-<polygon fill="black" stroke="black" points="2391.71,-2151.66 2398.41,-2159.87 2398.3,-2149.27 2391.71,-2151.66"/>+<polygon fill="black" stroke="black" points="410.482,-837.391 413.471,-827.226 404.795,-833.308 410.482,-837.391"/>
 </g> </g>
-<!-- lore:gangs:dorf_et_obere&#45;&gt;pnj:arima --> +<!-- pnj:jed&#45;&gt;lore:lieux:munich --> 
-<g id="edge126" class="edge"><title>lore:gangs:dorf_et_obere&#45;&gt;pnj:arima</title> +<g id="edge577" class="edge"><title>pnj:jed&#45;&gt;lore:lieux:munich</title> 
-<path fill="none" stroke="black" d="M2432.91,-1980.28C2433.71,-1988.03 2433.94,-1997.36 2433.59,-2006.01"/> +<path fill="none" stroke="black" d="M988.95,-2833.28C1006.26,-2837.13 1027.74,-2841.73 1047,-2844 1408.61,-2886.61 2553.33,-2895.11 2869.47,-2896.67"/> 
-<polygon fill="black" stroke="black" points="2430.09,-2005.83 2432.88,-2016.05 2437.08,-2006.33 2430.09,-2005.83"/>+<polygon fill="black" stroke="black" points="2869.45,-2900.17 2879.47,-2896.72 2869.49,-2893.17 2869.45,-2900.17"/>
 </g> </g>
-<!-- lore:gangs:dorf_et_obere&#45;&gt;pnj:edrich --> +<!-- pnj:jed&#45;&gt;pj:oggodt --> 
-<g id="edge129" class="edge"><title>lore:gangs:dorf_et_obere&#45;&gt;pnj:edrich</title> +<g id="edge576" class="edge"><title>pnj:jed&#45;&gt;pj:oggodt</title> 
-<path fill="none" stroke="black" d="M2457.76,-1979.22C2469.97,-1988.58 2482.46,-2001.39 2489,-2016 2497.72,-2035.48 2498.49,-2059.81 2495.95,-2078.1"/> +<path fill="none" stroke="black" d="M936.222,-2840.43C894.885,-2868.56 803.369,-2938.2 769,-3024 763.05,-3038.85 761.513,-3045.86 769,-3060 777.185,-3075.46 792.121,-3087.24 806.749,-3095.73"/> 
-<polygon fill="black" stroke="black" points="2492.48,-2077.62 2494.1,-2088.09 2499.36,-2078.9 2492.48,-2077.62"/>+<polygon fill="black" stroke="black" points="805.292,-3098.92 815.754,-3100.59 808.617,-3092.76 805.292,-3098.92"/>
 </g> </g>
-<!-- lore:gangs:dorf_et_obere&#45;&gt;pnj:az_ebo --> +<!-- pnj:jed&#45;&gt;pnj:martha_finkerbachen --> 
-<g id="edge130" class="edge"><title>lore:gangs:dorf_et_obere&#45;&gt;pnj:az_ebo</title> +<g id="edge578" class="edge"><title>pnj:jed&#45;&gt;pnj:martha_finkerbachen</title> 
-<path fill="none" stroke="black" d="M2333.16,-1955.03C2120.25,-1941.15 1605.83,-1906.97 1431.7,-1895.12"/> +<path fill="none" stroke="black" d="M953.281,-2843.94C945.157,-2880.92 925.77,-2969.2 915.937,-3013.97"/> 
-<polygon fill="black" stroke="black" points="1431.92,-1891.63 1421.7,-1894.44 1431.44,-1898.61 1431.92,-1891.63"/>+<polygon fill="black" stroke="black" points="912.493,-3013.33 913.767,-3023.85 919.33,-3014.83 912.493,-3013.33"/>
 </g> </g>
-<!-- pnj:gutwayn&#45;&gt;lore:lieux:munich --> +<!-- lore:organisations:famille_von_schencker&#45;&gt;lore:lieux:munich --> 
-<g id="edge140" class="edge"><title>pnj:gutwayn&#45;&gt;lore:lieux:munich</title> +<g id="edge563" class="edge"><title>lore:organisations:famille_von_schencker&#45;&gt;lore:lieux:munich</title> 
-<path fill="none" stroke="black" d="M2437.52,-2191.83C2454.58,-2200.72 2473.2,-2214.18 2483,-2232 2533.26,-2323.4 2513.93,-2454.54 2498.21,-2510.29"/> +<path fill="none" stroke="black" d="M4810.23,-2050.56C4831.24,-2058.77 4853.02,-2070.81 4868,-2088 4895.24,-2119.26 4896,-2135.53 4896,-2177 4896,-2755 4896,-2755 4896,-2755 4896,-2832.9 4819.84,-2822.39 4745,-2844 4579.94,-2891.67 3362.53,-2896.52 3033.01,-2896.97"/> 
-<polygon fill="black" stroke="black" points="2494.78,-2509.51 2495.23,-2520.1 2501.48,-2511.54 2494.78,-2509.51"/>+<polygon fill="black" stroke="black" points="3032.58,-2893.47 3022.59,-2896.98 3032.59,-2900.47 3032.58,-2893.47"/>
 </g> </g>
-<!-- pnj:gutwayn&#45;&gt;pj:endol --> +<!-- lore:organisations:famille_von_schencker&#45;&gt;lore:corpos:saeder&#45;krupp --> 
-<g id="edge143" class="edge"><title>pnj:gutwayn&#45;&gt;pj:endol</title> +<g id="edge566" class="edge"><title>lore:organisations:famille_von_schencker&#45;&gt;lore:corpos:saeder&#45;krupp</title> 
-<path fill="none" stroke="black" d="M2349.16,-2182.09C2141.96,-2193.82 1387,-2235.56 1185.61,-2246.41"/> +<path fill="none" stroke="black" d="M4843.37,-2019.67C4936.14,-2006.84 5075.23,-1987.59 5165.06,-1975.17"/> 
-<polygon fill="black" stroke="black" points="1185.13,-2242.93 1175.34,-2246.96 1185.51,-2249.92 1185.13,-2242.93"/>+<polygon fill="black" stroke="black" points="5165.79,-1978.6 5175.22,-1973.76 5164.83,-1971.66 5165.79,-1978.6"/>
 </g> </g>
-<!-- pnj:gutwayn&#45;&gt;lore:gangs:dorf_et_obere --> +<!-- lore:organisations:famille_von_schencker&#45;&gt;lore:lieux:zurich --> 
-<g id="edge141" class="edge"><title>pnj:gutwayn&#45;&gt;lore:gangs:dorf_et_obere</title> +<g id="edge562" class="edge"><title>lore:organisations:famille_von_schencker&#45;&gt;lore:lieux:zurich</title> 
-<path fill="none" stroke="black" d="M2387.94,-2160.34C2369.79,-2130.36 2344.37,-2065.8 2365,-2016 2369.75,-2004.54 2378.31,-1994.27 2387.64,-1985.89"/> +<path fill="none" stroke="black" d="M4881.81,-2024.4C5007.02,-2015.71 5198.5,-2000.62 5364,-1980 5560.64,-1955.5 5612.78,-1959.98 5804,-1908 5824.23,-1902.5 5848,-1911.96 5848,-1891 5848,-1891 5848,-1891 5848,-1817 5848,-1669.13 6018,-1678.87 6018,-1531 6018,-1531 6018,-1531 6018,-1241 6018,-1144.4 6056,-1123.6 6056,-1027 6056,-1027 6056,-1027 6056,-881 6056,-784.401 6094,-763.599 6094,-667 6094,-667 6094,-667 6094,-449 6094,-401.929 6059.19,-356.95 6034.12,-330.662"/> 
-<polygon fill="black" stroke="black" points="2390.13,-1988.37 2395.61,-1979.31 2385.67,-1982.98 2390.13,-1988.37"/>+<polygon fill="black" stroke="black" points="6036.53,-328.121 6027.03,-323.44 6031.54,-333.026 6036.53,-328.121"/>
 </g> </g>
-<!-- pnj:gutwayn&#45;&gt;pnj:arima --> +<!-- lore:organisations:famille_von_schencker&#45;&gt;lore:organisations:mmar --> 
-<g id="edge139" class="edge"><title>pnj:gutwayn&#45;&gt;pnj:arima</title> +<g id="edge564" class="edge"><title>lore:organisations:famille_von_schencker&#45;&gt;lore:organisations:mmar</title> 
-<path fill="none" stroke="black" d="M2400.43,-2159.87C2402.15,-2135.43 2409.82,-2090.33 2416.93,-2061.55"/> +<path fill="none" stroke="black" d="M4662.63,-2018.67C4589.82,-2006.29 4485.42,-1988.56 4414.16,-1976.45"/> 
-<polygon fill="black" stroke="black" points="2420.34,-2062.31 2419.51,-2051.75 2413.58,-2060.53 2420.34,-2062.31"/>+<polygon fill="black" stroke="black" points="4414.34,-1972.93 4403.9,-1974.71 4413.17,-1979.83 4414.34,-1972.93"/>
 </g> </g>
-<!-- pnj:gutwayn&#45;&gt;pnj:edrich --> +<!-- lore:organisations:famille_von_schencker&#45;&gt;pnj:von_schencker_junior --> 
-<g id="edge142" class="edge"><title>pnj:gutwayn&#45;&gt;pnj:edrich</title> +<g id="edge567" class="edge"><title>lore:organisations:famille_von_schencker&#45;&gt;pnj:von_schencker_junior</title> 
-<path fill="none" stroke="black" d="M2415.83,-2160.41C2426.28,-2150.7 2440.79,-2138.35 2453.89,-2127.97"/> +<path fill="none" stroke="black" d="M4704.77,-2051.55C4688.52,-2059.73 4671.64,-2071.5 4662,-2088 4650.98,-2106.87 4656.67,-2131.54 4662.72,-2150.12"/> 
-<polygon fill="black" stroke="black" points="2456.07,-2130.71 2461.82,-2121.8 2451.77,-2125.18 2456.07,-2130.71"/>+<polygon fill="black" stroke="black" points="4659.46,-2151.41 4666.01,-2159.74 4666.08,-2149.14 4659.46,-2151.41"/>
 </g> </g>
-<!-- pnj:arima&#45;&gt;lore:lieux:munich --> +<!-- pnj:marinavonschenker --> 
-<g id="edge322" class="edge"><title>pnj:arima&#45;&gt;lore:lieux:munich</title> +<g id="node147" class="node" onclick="click(evt)"><title>pnj:marinavonschenker</title> 
-<path fill="none" stroke="blackd="M2460.15,-2046.05C2485.29,-2056.16 2519.98,-2071.96 2549,-2088 2704.37,-2173.88 2751.49,-2186.99 2885,-2304 2916.54,-2331.64 2931.56,-2336.62 2946,-2376 2962.8,-2421.83 2962.98,-2452.13 2926,-2484 2874.47,-2528.4 2681.14,-2536.52 2568.91,-2537.46"/> +<ellipse fill="#e5b030" fill-opacity="0.733333" stroke="#e5b030stroke-opacity="0.733333" cx="4756" cy="-2106" rx="93.6835" ry="18"/> 
-<polygon fill="blackstroke="blackpoints="2568.62,-2533.96 2558.64,-2537.53 2568.66,-2540.96 2568.62,-2533.96"/>+<text text-anchor="middlex="4756y="-2102.3" font-family="Times,serif" font-size="14.00">pnj:marinavonschenker</text>
 </g> </g>
-<!-- pnj:arima&#45;&gt;lore:gangs:dorf_et_obere --> +<!-- lore:organisations:famille_von_schencker&#45;&gt;pnj:marinavonschenker --> 
-<g id="edge323" class="edge"><title>pnj:arima&#45;&gt;lore:gangs:dorf_et_obere</title> +<g id="edge565" class="edge"><title>lore:organisations:famille_von_schencker&#45;&gt;pnj:marinavonschenker</title> 
-<path fill="none" stroke="black" d="M2421.12,-2016.05C2420.3,-2008.35 2420.06,-1999.03 2420.39,-1990.36"/> +<path fill="none" stroke="black" d="M4755.09,-2052.1C4756.89,-2059.79 4758.32,-2069.05 4759.09,-2077.67"/> 
-<polygon fill="black" stroke="black" points="2423.89,-1990.49 2421.09,-1980.28 2416.91,-1990.01 2423.89,-1990.49"/>+<polygon fill="black" stroke="black" points="4755.6,-2077.92 4759.69,-2087.7 4762.59,-2077.51 4755.6,-2077.92"/>
 </g> </g>
-<!-- pnj:arima&#45;&gt;pnj:gutwayn --> +<!-- lore:gangs:machinedreammck&#45;&gt;lore:lieux:munich --> 
-<g id="edge325" class="edge"><title>pnj:arima&#45;&gt;pnj:gutwayn</title> +<g id="edge243" class="edge"><title>lore:gangs:machinedreammck&#45;&gt;lore:lieux:munich</title> 
-<path fill="none" stroke="black" d="M2428.56,-2052.27C2426.82,-2076.71 2419.18,-2121.63 2412.1,-2150.37"/> +<path fill="none" stroke="black" d="M4242.61,-2839.39C4228.15,-2841.15 4213.17,-2842.78 4199,-2844 3760.45,-2881.76 3232.15,-2893.01 3032.57,-2896.01"/> 
-<polygon fill="black" stroke="black" points="2408.68,-2149.59 2409.52,-2160.15 2415.45,-2151.37 2408.68,-2149.59"/>+<polygon fill="black" stroke="black" points="3032.4,-2892.51 3022.46,-2896.16 3032.51,-2899.51 3032.4,-2892.51"/>
 </g> </g>
-<!-- pnj:arima&#45;&gt;pnj:edrich --> +<!-- lore:gangs:machinedreammck&#45;&gt;lore:organisations:mmar --> 
-<g id="edge324" class="edge"><title>pnj:arima&#45;&gt;pnj:edrich</title> +<g id="edge244" class="edge"><title>lore:gangs:machinedreammck&#45;&gt;lore:organisations:mmar</title> 
-<path fill="none" stroke="black" d="M2445.42,-2050.36C2453.6,-2058.97 2462.95,-2069.94 2470.61,-2079.78"/> +<path fill="none" stroke="black" d="M4322.38,-2807.96C4324.42,-2781.32 4328,-2728.17 4328,-2683 4328,-2683 4328,-2683 4328,-2105 4328,-2064.95 4330.81,-2018.62 4332.87,-1990.06"/> 
-<polygon fill="black" stroke="black" points="2468.03,-2082.17 2476.84,-2088.05 2473.62,-2077.96 2468.03,-2082.17"/>+<polygon fill="black" stroke="black" points="4336.37,-1990.27 4333.62,-1980.04 4329.39,-1989.75 4336.37,-1990.27"/>
 </g> </g>
 <!-- pnj:edrich&#45;&gt;lore:lieux:munich --> <!-- pnj:edrich&#45;&gt;lore:lieux:munich -->
-<g id="edge414" class="edge"><title>pnj:edrich&#45;&gt;lore:lieux:munich</title> +<g id="edge388" class="edge"><title>pnj:edrich&#45;&gt;lore:lieux:munich</title> 
-<path fill="none" stroke="black" d="M2512.2,-2120.66C2541.98,-2138.21 2590.36,-2169.56 2632,-2196 2695.71,-2236.45 2883.41,-2309.99 2920,-2376 2927.76,-2389.99 2923.04,-2396.29 2920,-2412 2913.44,-2445.87 2918.24,-2462.83 2891,-2484 2842.56,-2521.65 2671.67,-2532.57 2568.24,-2535.73"/> +<path fill="none" stroke="black" d="M742.102,-608.078C757.418,-617.573 774.972,-631.599 786,-648 809.138,-682.411 814,-695.533 814,-737 814,-883 814,-883 814,-883 814,-963.94 700.455,-1144.36 686,-1224 683.143,-1239.74 683.87,-1244.14 686,-1260 774.489,-1918.71 784.274,-2196.76 1290,-2628 1331.13,-2663.07 1341.2,-2672.97 1388,-2700 1439.7,-2729.85 1581.63,-2779.33 1634,-2808 1659.3,-2821.85 1660.57,-2835.07 1688,-2844 1799.99,-2880.47 2607.32,-2892.95 2869.24,-2896.11"/> 
-<polygon fill="black" stroke="black" points="2568.03,-2532.23 2558.14,-2536.02 2568.24,-2539.23 2568.03,-2532.23"/>+<polygon fill="black" stroke="black" points="2869.41,-2899.61 2879.45,-2896.23 2869.49,-2892.61 2869.41,-2899.61"/>
 </g> </g>
 <!-- pnj:edrich&#45;&gt;lore:gangs:dorf_et_obere --> <!-- pnj:edrich&#45;&gt;lore:gangs:dorf_et_obere -->
-<g id="edge413" class="edge"><title>pnj:edrich&#45;&gt;lore:gangs:dorf_et_obere</title> +<g id="edge390" class="edge"><title>pnj:edrich&#45;&gt;lore:gangs:dorf_et_obere</title> 
-<path fill="none" stroke="black" d="M2480.91,-2087.75C2480.5,-2069.18 2481.37,-2039.17 2471,-2016 2466.12,-2005.09 2457.91,-1995.18 2449.82,-1986.96"/> +<path fill="none" stroke="black" d="M724.46,-576.411C732.783,-567.497 744.209,-556.355 755.014,-546.558"/> 
-<polygon fill="black" stroke="black" points="2452.13,-1984.34 2442.51,-1979.91 2447.27,-1989.38 2452.13,-1984.34"/>+<polygon fill="black" stroke="black" points="757.567,-548.971 762.718,-539.713 752.918,-543.738 757.567,-548.971"/>
 </g> </g>
 <!-- pnj:edrich&#45;&gt;pnj:gutwayn --> <!-- pnj:edrich&#45;&gt;pnj:gutwayn -->
-<g id="edge412" class="edge"><title>pnj:edrich&#45;&gt;pnj:gutwayn</title> +<g id="edge387" class="edge"><title>pnj:edrich&#45;&gt;pnj:gutwayn</title> 
-<path fill="none" stroke="black" d="M2471.39,-2123.38C2461.06,-2133 2446.66,-2145.27 2433.6,-2155.64"/> +<path fill="none" stroke="black" d="M706.115,-612.114C698.819,-622.235 688.319,-635.485 680,-648 666.28,-668.639 652.859,-693.433 642.055,-711.604"/> 
-<polygon fill="black" stroke="black" points="2431.42,-2152.9 2425.69,-2161.81 2435.73,-2158.42 2431.42,-2152.9"/>+<polygon fill="black" stroke="black" points="638.88,-710.086 636.655,-720.445 644.854,-713.735 638.88,-710.086"/>
 </g> </g>
 <!-- pnj:edrich&#45;&gt;pnj:arima --> <!-- pnj:edrich&#45;&gt;pnj:arima -->
-<g id="edge411" class="edge"><title>pnj:edrich&#45;&gt;pnj:arima</title> +<g id="edge389" class="edge"><title>pnj:edrich&#45;&gt;pnj:arima</title> 
-<path fill="none" stroke="black" d="M2466.41,-2089.46C2458.26,-2080.87 2448.97,-2069.97 2441.36,-2060.19"/> +<path fill="none" stroke="black" d="M721.583,-612.104C723.596,-619.791 725.288,-629.054 726.309,-637.665"/> 
-<polygon fill="black" stroke="black" points="2443.98,-2057.85 2435.17,-2051.96 2438.39,-2062.06 2443.98,-2057.85"/>+<polygon fill="black" stroke="black" points="722.828,-638.044 727.197,-647.697 729.801,-637.427 722.828,-638.044"/>
 </g> </g>
-<!-- pnj:az_ebo&#45;&gt;lore:lieux:munich --> +<!-- pnj:fenihilung&#45;&gt;lore:lieux:munich --> 
-<g id="edge493" class="edge"><title>pnj:az_ebo&#45;&gt;lore:lieux:munich</title> +<g id="edge552" class="edge"><title>pnj:fenihilung&#45;&gt;lore:lieux:munich</title> 
-<path fill="none" stroke="black" d="M1384.24,-1907.84C1395.69,-1934.21 1410,-1987.02 1410,-2033 1410,-2251 1410,-2251 1410,-2251 1410,-2292.47 1412.32,-2311.71 1382,-2340 1331.87,-2386.77 1293.58,-2345.86 1232,-2376 1183.68,-2399.65 1085.52,-2425.27 1142,-2484 1186.04,-2529.8 2120.38,-2536.04 2405.29,-2536.88"/> +<path fill="none" stroke="black" d="M3174.62,-2195.61C3120.63,-2254.61 2918.66,-2461.43 2797,-2664 2761.48,-2723.15 2748.76,-2739.7 2739,-2808 2736.74,-2823.84 2729.09,-2831.44 2739,-2844 2756.51,-2866.2 2823.69,-2880.16 2877.85,-2888.14"/> 
-<polygon fill="black" stroke="black" points="2405.55,-2540.38 2415.56,-2536.91 2405.57,-2533.38 2405.55,-2540.38"/>+<polygon fill="black" stroke="black" points="2877.4,-2891.61 2887.8,-2889.56 2878.39,-2884.68 2877.4,-2891.61"/>
 </g> </g>
-<!-- pnj:az_ebo&#45;&gt;pj:endol --> +<!-- pnj:fenihilung&#45;&gt;lore:organisations:mi&#45;seng_lung --> 
-<g id="edge495" class="edge"><title>pnj:az_ebo&#45;&gt;pj:endol</title> +<g id="edge554" class="edge"><title>pnj:fenihilung&#45;&gt;lore:organisations:mi&#45;seng_lung</title> 
-<path fill="none" stroke="black" d="M1368.06,-1908.08C1353.59,-1937.65 1315.11,-2000.19 1281,-2052 1239.32,-2115.31 1188,-2188.4 1158.68,-2225.2"/> +<path fill="none" stroke="black" d="M3192.47,-2196.31C3199.48,-2244.31 3207.75,-2379.44 3207.55,-2437.7"/> 
-<polygon fill="black" stroke="black" points="1155.66,-2223.36 1152.07,-2233.33 1161.09,-2227.78 1155.66,-2223.36"/>+<polygon fill="black" stroke="black" points="3204.04,-2437.92 3207.4,-2447.97 3211.04,-2438.02 3204.04,-2437.92"/>
 </g> </g>
-<!-- pnj:az_ebo&#45;&gt;lore:gangs:dorf_et_obere --> +<!-- pnj:fenihilung&#45;&gt;pnj:niddon --> 
-<g id="edge494" class="edge"><title>pnj:az_ebo&#45;&gt;lore:gangs:dorf_et_obere</title> +<g id="edge553" class="edge"><title>pnj:fenihilung&#45;&gt;pnj:niddon</title> 
-<path fill="none" stroke="black" d="M1421.84,-1894.05C1583.33,-1904.47 2101.92,-1938.88 2324.27,-1953.89"/> +<path fill="none" stroke="black" d="M3242.98,-2184.37C3367.94,-2197.08 3671.91,-2228.97 3798.4,-2242.63"/> 
-<polygon fill="black" stroke="black" points="2324.09,-1957.39 2334.31,-1954.57 2324.57,-1950.41 2324.09,-1957.39"/>+<polygon fill="black" stroke="black" points="3798.32,-2246.14 3808.64,-2243.74 3799.07,-2239.18 3798.32,-2246.14"/>
 </g> </g>
-<!-- pnj:valentinturenge --> +<!-- lore:organisations:fon&#45;&gt;lore:organisations:mi&#45;seng_lung --> 
-<g id="node83" class="node"><title>pnj:valentinturenge</title> +<g id="edge434" class="edge"><title>lore:organisations:fon&#45;&gt;lore:organisations:mi&#45;seng_lung</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfeecx="6181" cy="-3186" rx="77.1866" ry="18"/> +<path fill="none" stroke="blackd="M2935.76,-2406.95C2991.29,-2418.32 3072.83,-2435.52 3131.65,-2448.25"/> 
-<text text-anchor="middlex="6181y="-3182.3" font-family="Times,serif" font-size="14.00">pnj:valentinturenge</text>+<polygon fill="blackstroke="blackpoints="3131.1,-2451.71 3141.62,-2450.41 3132.59,-2444.87 3131.1,-2451.71"/>
 </g> </g>
-<!-- pnj:valentinturenge&#45;&gt;lore:lieux:zurich --> +<!-- pnj:monsieur_j --> 
-<g id="edge131" class="edge"><title>pnj:valentinturenge&#45;&gt;lore:lieux:zurich</title> +<g id="node137" class="node" onclick="click(evt)"><title>pnj:monsieur_j</title> 
-<path fill="none" stroke="blackd="M6221.06,-3170.45C6274.69,-3151.37 6373.03,-3117.77 6459,-3096 6640.74,-3049.97 6832,-3086.48 6832,-2899 6832,-2899 6832,-2899 6832,-2825 6832,-2504.2 6758,-2427.8 6758,-2107 6758,-2107 6758,-2107 6758,-1745 6758,-1627.9 6703.74,-1606.8 6635,-1512 6621.55,-1493.46 6141.29,-880.101 6125,-864 6113.74,-852.871 6100.13,-841.971 6087.99,-832.978"/> +<ellipse fill="#e5b030" fill-opacity="0.733333" stroke="#e5b030stroke-opacity="0.733333" cx="2874" cy="-2322" rx="63.8893" ry="18"/> 
-<polygon fill="blackstroke="blackpoints="6090.01,-830.12 6079.86,-827.077 6085.9,-835.784 6090.01,-830.12"/>+<text text-anchor="middlex="2874y="-2318.3" font-family="Times,serif" font-size="14.00">pnj:monsieur_j</text>
 </g> </g>
-<!-- pnj:valentinturenge&#45;&gt;lore:corpos:saeder&#45;krupp --> +<!-- lore:organisations:fon&#45;&gt;pnj:monsieur_j --> 
-<g id="edge132" class="edge"><title>pnj:valentinturenge&#45;&gt;lore:corpos:saeder&#45;krupp</title> +<g id="edge435" class="edge"><title>lore:organisations:fon&#45;&gt;pnj:monsieur_j</title> 
-<path fill="none" stroke="black" d="M6119.08,-3175.19C6041.6,-3162.92 5908.64,-3141.87 5822.3,-3128.19"/> +<path fill="none" stroke="black" d="M2868.08,-2375.7C2867.29,-2367.98 2867.06,-2358.71 2867.4,-2350.11"/> 
-<polygon fill="black" stroke="black" points="5822.69,-3124.71 5812.27,-3126.6 5821.6,-3131.62 5822.69,-3124.71"/>+<polygon fill="black" stroke="black" points="2870.9,-2350.32 2868.1,-2340.1 2863.92,-2349.84 2870.9,-2350.32"/>
 </g> </g>
-<!-- pnj:damonneone&#45;&gt;lore:lieux:tir_na_nog --> +<!-- pnj:az_ebo&#45;&gt;lore:lieux:munich --> 
-<g id="edge133" class="edge"><title>pnj:damonneone&#45;&gt;lore:lieux:tir_na_nog</title> +<g id="edge193" class="edge"><title>pnj:az_ebo&#45;&gt;lore:lieux:munich</title> 
-<path fill="none" stroke="black" d="M778.532,-579.751C815.588,-568.473 869.047,-552.203 909.233,-539.973"/> +<path fill="none" stroke="black" d="M407.694,-468.015C364.793,-529.343 206,-746.363 206,-953 206,-1027 206,-1027 206,-1027 206,-1128.54 286,-1139.46 286,-1241 286,-1531 286,-1531 286,-1531 286,-1781.77 596.758,-2363.94 758,-2556 854.597,-2671.06 878.598,-2716 1018,-2772 1098.97,-2804.53 1129.9,-2775.81 1211,-2808 1238.5,-2818.92 1238.74,-2835.22 1267,-2844 1420.89,-2891.82 2552.47,-2896.61 2868.99,-2896.99"/> 
-<polygon fill="black" stroke="black" points="910.338,-543.295 918.886,-537.035 908.3,-536.598 910.338,-543.295"/>+<polygon fill="black" stroke="black" points="2869.45,-2900.49 2879.45,-2897.01 2869.46,-2893.49 2869.45,-2900.49"/>
 </g> </g>
-<!-- pnj:damonneone&#45;&gt;lore:organisations:danann_o_dunn --> +<!-- pnj:az_ebo&#45;&gt;lore:gangs:dorf_et_obere --> 
-<g id="edge134" class="edge"><title>pnj:damonneone&#45;&gt;lore:organisations:danann_o_dunn</title> +<g id="edge191" class="edge"><title>pnj:az_ebo&#45;&gt;lore:gangs:dorf_et_obere</title> 
-<path fill="none" stroke="black" d="M708.285,-610.666C688.807,-620.633 662.003,-633.65 638.792,-644.444"/> +<path fill="none" stroke="black" d="M462.166,-458.566C524.271,-469.876 637.941,-491.418 712.777,-505.996"/> 
-<polygon fill="black" stroke="black" points="637.044,-641.396 629.431,-648.765 639.977,-647.751 637.044,-641.396"/>+<polygon fill="black" stroke="black" points="712.128,-509.435 722.613,-507.916 713.469,-502.565 712.128,-509.435"/>
 </g> </g>
-<!-- lore:corpos:evo --> +<!-- pnj:az_ebo&#45;&gt;pj:endol --> 
-<g id="node85" class="node"><title>lore:corpos:evo</title> +<g id="edge192" class="edge"><title>pnj:az_ebo&#45;&gt;pj:endol</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfeecx="7344" cy="-3114" rx="67.6881" ry="18"/> +<path fill="none" stroke="blackd="M423.515,-468.049C426.511,-494.708 426,-547.884 426,-593 426,-667 426,-667 426,-667 426,-707.084 429.616,-753.406 429.972,-781.952"/> 
-<text text-anchor="middlex="7344y="-3110.3" font-family="Times,serif" font-size="14.00">lore:corpos:evo</text>+<polygon fill="blackstroke="blackpoints="426.472,-781.96 429.934,-791.973 433.472,-781.986 426.472,-781.96"/>
 </g> </g>
-<!-- pnj:tonnyslaters --> +<!-- pnj:niddon&#45;&gt;lore:lieux:munich --> 
-<g id="node86" class="node"><title>pnj:tonnyslaters</title> +<g id="edge442" class="edge"><title>pnj:niddon&#45;&gt;lore:lieux:munich</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfeecx="7344" cy="-3186" rx="67.6881" ry="18"/> +<path fill="none" stroke="blackd="M3860.71,-2268.05C3864,-2294.71 3864,-2347.89 3864,-2393 3864,-2467 3864,-2467 3864,-2467 3864,-2703.45 3590.27,-2589.08 3405,-2736 3358.61,-2772.79 3377.65,-2813.34 3327,-2844 3279.05,-2873.03 3126.49,-2887.09 3031.01,-2893.11"/> 
-<text text-anchor="middlex="7344y="-3182.3" font-family="Times,serif" font-size="14.00">pnj:tonnyslaters</text>+<polygon fill="blackstroke="blackpoints="3030.58,-2889.63 3020.81,-2893.74 3031.01,-2896.62 3030.58,-2889.63"/>
 </g> </g>
-<!-- lore:corpos:evo&#45;&gt;pnj:tonnyslaters --> +<!-- pnj:niddon&#45;&gt;lore:organisations:mi&#45;seng_lung --> 
-<g id="edge135" class="edge"><title>lore:corpos:evo&#45;&gt;pnj:tonnyslaters</title> +<g id="edge436" class="edge"><title>pnj:niddon&#45;&gt;lore:organisations:mi&#45;seng_lung</title> 
-<path fill="none" stroke="black" d="M7349.91,-3132.28C7350.71,-3140.03 7350.94,-3149.36 7350.59,-3158.01"/> +<path fill="none" stroke="black" d="M3812.02,-2259.04C3767.54,-2267.38 3696.78,-2282.27 3638,-2304 3572.74,-2328.13 3559.22,-2341.15 3499,-2376 3473.39,-2390.82 3470.26,-2400.49 3443,-2412 3398.96,-2430.59 3347.28,-2443.26 3303.3,-2451.54"/> 
-<polygon fill="black" stroke="black" points="7347.09,-3157.83 7349.88,-3168.05 7354.08,-3158.33 7347.09,-3157.83"/>+<polygon fill="black" stroke="black" points="3302.67,-2448.1 3293.46,-2453.35 3303.93,-2454.99 3302.67,-2448.1"/>
 </g> </g>
-<!-- pnj:tonnyslaters&#45;&gt;lore:corpos:saeder&#45;krupp --> +<!-- pnj:niddon&#45;&gt;pnj:bartek --> 
-<g id="edge433" class="edge"><title>pnj:tonnyslaters&#45;&gt;lore:corpos:saeder&#45;krupp</title> +<g id="edge438" class="edge"><title>pnj:niddon&#45;&gt;pnj:bartek</title> 
-<path fill="none" stroke="black" d="M7283.74,-3177.83C7252.52,-3174.36 7213.76,-3170.43 7179,-3168 6684.48,-3133.46 6092.76,-3120.64 5850.6,-3116.61"/> +<path fill="none" stroke="black" d="M3861.61,-2232.05C3876.01,-2206.37 3906,-2155.44 3906,-2107 3906,-2107 3906,-2107 3906,-1889 3906,-1847.53 3907.01,-1831.48 3934,-1800 3957.55,-1772.54 3975.4,-1781.61 4007,-1764 4263.85,-1620.91 4349.93,-1607.65 4562,-1404 4629.15,-1339.52 4696,-1336.1 4696,-1243 4696,-1243 4696,-1243 4696,-1097 4696,-1056.92 4699.62,-1010.59 4704.56,-982.048"/> 
-<polygon fill="black" stroke="black" points="5850.44,-3113.1 5840.38,-3116.44 5850.32,-3120.1 5850.44,-3113.1"/>+<polygon fill="black" stroke="black" points="4708.03,-982.512 4706.51,-972.027 4701.16,-981.173 4708.03,-982.512"/>
 </g> </g>
-<!-- pnj:tonnyslaters&#45;&gt;lore:corpos:evo --> +<!-- pnj:niddon&#45;&gt;pnj:yu_mi&#45;seng --> 
-<g id="edge434" class="edge"><title>pnj:tonnyslaters&#45;&gt;lore:corpos:evo</title> +<g id="edge443" class="edge"><title>pnj:niddon&#45;&gt;pnj:yu_mi&#45;seng</title> 
-<path fill="none" stroke="black" d="M7338.12,-3168.05C7337.3,-3160.35 7337.06,-3151.03 7337.39,-3142.36"/> +<path fill="none" stroke="black" d="M3903.81,-2246.38C4041.84,-2238.95 4446.78,-2216.87 4783,-2196 5021.74,-2181.18 5661.98,-2262.51 5857,-2124 5899.54,-2093.79 5865.63,-2052.41 5903,-2016 5934.15,-1985.65 5965.04,-2012.45 5994,-1980 6021.28,-1949.44 6018,-1931.97 6018,-1891 6018,-1891 6018,-1891 6018,-1745 6018,-1633.72 5777.24,-880.673 5710,-792 5659.49,-725.386 5623.42,-733.428 5556,-684 5513.56,-652.885 5502.05,-646.143 5462,-612 5444.3,-596.906 5445.35,-585.242 5424,-576 5349.18,-543.613 4801.07,-528.876 4597.68,-524.481"/> 
-<polygon fill="black" stroke="black" points="7340.89,-3142.49 7338.09,-3132.28 7333.91,-3142.01 7340.89,-3142.49"/>+<polygon fill="black" stroke="black" points="4597.46,-520.975 4587.39,-524.261 4597.31,-527.974 4597.46,-520.975"/>
 </g> </g>
-<!-- pj:roland&#45;&gt;lore:lieux:munich --> +<!-- pnj:niddon&#45;&gt;lore:organisations:swamp_rats --> 
-<g id="edge138" class="edge"><title>pj:roland&#45;&gt;lore:lieux:munich</title> +<g id="edge440" class="edge"><title>pnj:niddon&#45;&gt;lore:organisations:swamp_rats</title> 
-<path fill="none" stroke="black" d="M2089.75,-967.436C2048.07,-987.923 1975,-1032.97 1975,-1097 1975,-1171 1975,-1171 1975,-1171 1975,-1311 2107,-1317 2107,-1457 2107,-1531 2107,-1531 2107,-1531 2107,-1659.23 2145,-1688.77 2145,-1817 2145,-2035 2145,-2035 2145,-2035 2145,-2116.76 2171.21,-2143.63 2234,-2196 2272.53,-2228.14 2309.43,-2193 2341,-2232 2411.93,-2319.63 2303.58,-2392.9 2370,-2484 2383.33,-2502.28 2404.47,-2514.4 2425.14,-2522.36"/> +<path fill="none" stroke="black" d="M3883.58,-2235.22C3900.82,-2225.89 3922.4,-2212.31 3938,-2196 4001.87,-2129.24 3977.97,-2082.61 4042,-2016 4083.53,-1972.8 4099.65,-1964.39 4156,-1944 4271.08,-1902.36 4316.96,-1957.24 4429,-1908 4451.82,-1897.97 4449.13,-1881.92 4472,-1872 4526.66,-1848.29 4677.46,-1833.73 4785.96,-1826.01"/> 
-<polygon fill="black" stroke="black" points="2423.98,-2525.66 2434.57,-2525.74 2426.34,-2519.07 2423.98,-2525.66"/>+<polygon fill="black" stroke="black" points="4786.26,-1829.5 4795.99,-1825.31 4785.77,-1822.52 4786.26,-1829.5"/>
 </g> </g>
-<!-- pnj:silvo_campolin&#45;&gt;lore:lieux:munich --> +<!-- pnj:niddon&#45;&gt;pnj:fenihilung --> 
-<g id="edge145" class="edge"><title>pnj:silvo_campolin&#45;&gt;lore:lieux:munich</title> +<g id="edge441" class="edge"><title>pnj:niddon&#45;&gt;pnj:fenihilung</title> 
-<path fill="none" stroke="black" d="M4766.53,-2479.62C4756.14,-2481.38 4745.29,-2482.94 4735,-2484 4302.91,-2528.33 2919.63,-2535.65 2568.58,-2536.8"/> +<path fill="none" stroke="black" d="M3807.94,-2244.43C3690.61,-2232.54 3385.39,-2200.53 3251.93,-2186.16"/> 
-<polygon fill="black" stroke="black" points="2568.48,-2533.3 2558.49,-2536.83 2568.5,-2540.3 2568.48,-2533.3"/>+<polygon fill="black" stroke="black" points="3252.18,-2182.67 3241.86,-2185.07 3251.43,-2189.63 3252.18,-2182.67"/>
 </g> </g>
-<!-- pnj:silvo_campolin&#45;&gt;lore:organisations:camorra --> +<!-- pnj:niddon&#45;&gt;pj:splenters --> 
-<g id="edge144" class="edge"><title>pnj:silvo_campolin&#45;&gt;lore:organisations:camorra</title> +<g id="edge439" class="edge"><title>pnj:niddon&#45;&gt;pj:splenters</title> 
-<path fill="none" stroke="black" d="M4837.11,-2483.75C4859.72,-2508.4 4897.43,-2554.63 4918.68,-2583.51"/> +<path fill="none" stroke="black" d="M3813.11,-2240.31C3654.67,-2206.26 3079.89,-2072.09 2663,-1836 2456.4,-1719 2180,-1120.42 2180,-883 2180,-883 2180,-883 2180,-809 2180,-700.347 2179.82,-655.727 2106,-576 2086.05,-554.45 2056.11,-541.465 2029.89,-533.747"/> 
-<polygon fill="black" stroke="black" points="4916.02,-2585.81 4924.71,-2591.87 4921.7,-2581.71 4916.02,-2585.81"/>+<polygon fill="black" stroke="black" points="2030.62,-530.318 2020.05,-531.04 2028.76,-537.067 2030.62,-530.318"/>
 </g> </g>
-<!-- pnj:valentinpragault --> +<!-- pnj:niddon&#45;&gt;pnj:von_schencker_junior --> 
-<g id="node89" class="node"><title>pnj:valentinpragault</title> +<g id="edge437" class="edge"><title>pnj:niddon&#45;&gt;pnj:von_schencker_junior</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfee" cx="5316cy="-2394" rx="79.8859" ry="18"/> +<path fill="none" stroke="blackd="M3902.58,-2244.91C4031.68,-2233.81 4390.69,-2202.93 4567.69,-2187.71"/> 
-<text text-anchor="middlex="5316y="-2390.3" font-family="Times,serif" font-size="14.00">pnj:valentinpragault</text>+<polygon fill="blackstroke="blackpoints="4568.13,-2191.19 4577.79,-2186.84 4567.53,-2184.21 4568.13,-2191.19"/>
 </g> </g>
-<!-- pnj:silvo_campolin&#45;&gt;pnj:valentinpragault --> +<!-- pnj:gutwayn&#45;&gt;lore:lieux:munich --> 
-<g id="edge146" class="edge"><title>pnj:silvo_campolin&#45;&gt;pnj:valentinpragault</title> +<g id="edge587" class="edge"><title>pnj:gutwayn&#45;&gt;lore:lieux:munich</title> 
-<path fill="none" stroke="black" d="M4884.49,-2455.78C4976.26,-2442.85 5142.77,-2419.4 5239.93,-2405.71"/> +<path fill="none" stroke="black" d="M614.917,-756.154C600.162,-779.664 568.377,-823.594 546,-864 489.631,-965.784 418,-1124.33 418,-1169 418,-1315 418,-1315 418,-1315 418,-1316.32 550,-1671.68 550,-1673 550,-1747 550,-1747 550,-1747 550,-2024.16 599.809,-2102.69 743,-2340 830.118,-2484.38 854.19,-2528.05 990,-2628 1055.1,-2675.91 1080.97,-2672.57 1157,-2700 1317.34,-2757.85 1368.63,-2740.16 1525,-2808 1553.88,-2820.53 1555.8,-2835.12 1586,-2844 1709.03,-2880.16 2593.43,-2892.96 2869.17,-2896.14"/> 
-<polygon fill="black" stroke="black" points="5240.56,-2409.16 5249.97,-2404.3 5239.58,-2402.23 5240.56,-2409.16"/>+<polygon fill="black" stroke="black" points="2869.46,-2899.64 2879.5,-2896.25 2869.54,-2892.64 2869.46,-2899.64"/>
 </g> </g>
-<!-- pnj:silvo_campolin&#45;&gt;pnj:camillia_campolin --> +<!-- pnj:gutwayn&#45;&gt;lore:gangs:dorf_et_obere --> 
-<g id="edge147" class="edge"><title>pnj:silvo_campolin&#45;&gt;pnj:camillia_campolin</title> +<g id="edge591" class="edge"><title>pnj:gutwayn&#45;&gt;lore:gangs:dorf_et_obere</title> 
-<path fill="none" stroke="black" d="M4810.7,-2448.05C4808.78,-2440.35 4807.21,-2431.03 4806.3,-2422.36"/> +<path fill="none" stroke="black" d="M615.786,-719.736C611.055,-687.608 613.611,-618.092 649,-576 663.831,-558.36 685.493,-546.5 707.265,-538.564"/> 
-<polygon fill="black" stroke="black" points="4809.79,-2421.99 4805.56,-2412.28 4802.81,-2422.51 4809.79,-2421.99"/>+<polygon fill="black" stroke="black" points="708.569,-541.818 716.916,-535.293 706.322,-535.188 708.569,-541.818"/>
 </g> </g>
-<!-- pnj:valentinpragault&#45;&gt;lore:lieux:tir_na_nog --> +<!-- pnj:gutwayn&#45;&gt;pnj:edrich --> 
-<g id="edge349" class="edge"><title>pnj:valentinpragault&#45;&gt;lore:lieux:tir_na_nog</title> +<g id="edge588" class="edge"><title>pnj:gutwayn&#45;&gt;pnj:edrich</title> 
-<path fill="none" stroke="black" d="M5279.51,-2377.84C5263.74,-2369.24 5246.89,-2356.78 5238,-2340 5230.51,-2325.86 5231.7,-2318.71 5238,-2304 5408.85,-1905.36 5684.31,-1974.62 5934,-1620 6040.9,-1468.18 6083.51,-1434.85 6146,-1260 6216.04,-1064.05 6320.76,-879.596 6132,-792 5654.55,-570.43 1719.89,-529.091 1059.03,-523.69"/> +<path fill="none" stroke="black" d="M623.723,-719.776C630.57,-701.477 646.083,-671.943 662,-648 668.837,-637.716 677.146,-626.935 685.188,-617.802"/> 
-<polygon fill="black" stroke="black" points="1058.64,-520.187 1048.61,-523.606 1058.58,-527.187 1058.64,-520.187"/>+<polygon fill="black" stroke="black" points="687.94,-619.98 692.142,-610.254 682.792,-615.237 687.94,-619.98"/>
 </g> </g>
-<!-- pnj:valentinpragault&#45;&gt;lore:lieux:zweibruecken --> +<!-- pnj:gutwayn&#45;&gt;pnj:arima --> 
-<g id="edge348" class="edge"><title>pnj:valentinpragault&#45;&gt;lore:lieux:zweibruecken</title> +<g id="edge590" class="edge"><title>pnj:gutwayn&#45;&gt;pnj:arima</title> 
-<path fill="none" stroke="black" d="M5306.61,-2412.21C5296.12,-2430.76 5278.1,-2460.75 5259,-2484 5171.22,-2590.85 5037.29,-2688.42 4975.44,-2730.77"/> +<path fill="none" stroke="black" d="M639.856,-720.765C653.733,-710.447 673.17,-697.04 689.933,-686.195"/> 
-<polygon fill="black" stroke="black" points="4973.16,-2728.09 4966.86,-2736.61 4977.09,-2733.88 4973.16,-2728.09"/>+<polygon fill="black" stroke="black" points="691.862,-689.116 698.411,-680.788 688.098,-683.215 691.862,-689.116"/>
 </g> </g>
-<!-- pnj:valentinpragault&#45;&gt;lore:lieux:sox --> +<!-- pnj:gutwayn&#45;&gt;pj:endol --> 
-<g id="edge346" class="edge"><title>pnj:valentinpragault&#45;&gt;lore:lieux:sox</title> +<g id="edge589" class="edge"><title>pnj:gutwayn&#45;&gt;pj:endol</title> 
-<path fill="none" stroke="black" d="M5329.4,-2412.02C5367.09,-2462.07 5466.65,-2610.79 5394,-2700 5344.14,-2761.24 5269.86,-2674.76 5220,-2736 5209.9,-2748.41 5213.3,-2757.47 5220,-2772 5225.86,-2784.71 5236.43,-2795.5 5247.2,-2803.97"/> +<path fill="none" stroke="black" d="M589.695,-752.486C556.356,-765.016 504.424,-783.556 467.948,-795.946"/> 
-<polygon fill="black" stroke="black" points="5245.27,-2806.89 5255.41,-2809.98 5249.41,-2801.24 5245.27,-2806.89"/>+<polygon fill="black" stroke="black" points="466.455,-792.755 458.098,-799.267 468.692,-799.388 466.455,-792.755"/>
 </g> </g>
-<!-- pnj:valentinpragault&#45;&gt;lore:organisations:rote_kasern --> +<!-- pnj:sokouzy&#45;&gt;lore:lieux:munich --> 
-<g id="edge353" class="edge"><title>pnj:valentinpragault&#45;&gt;lore:organisations:rote_kasern</title> +<g id="edge585" class="edge"><title>pnj:sokouzy&#45;&gt;lore:lieux:munich</title> 
-<path fill="none" stroke="black" d="M5318.2,-2412.19C5322.56,-2453.68 5328,-2560.83 5279,-2628 5269.58,-2640.92 5255.96,-2651.47 5242.48,-2659.66"/> +<path fill="none" stroke="black" d="M2836.56,-2840.3C2859.79,-2850.61 2890.58,-2865.05 2914.43,-2876.78"/> 
-<polygon fill="black" stroke="black" points="5240.61,-2656.69 5233.68,-2664.7 5244.1,-2662.77 5240.61,-2656.69"/>+<polygon fill="black" stroke="black" points="2913.01,-2879.98 2923.53,-2881.29 2916.12,-2873.71 2913.01,-2879.98"/>
 </g> </g>
-<!-- pnj:valentinpragault&#45;&gt;lore:lieux:munich --> +<!-- pnj:sokouzy&#45;&gt;pnj:youzo --> 
-<g id="edge352" class="edge"><title>pnj:valentinpragault&#45;&gt;lore:lieux:munich</title> +<g id="edge586" class="edge"><title>pnj:sokouzy&#45;&gt;pnj:youzo</title> 
-<path fill="none" stroke="black" d="M5243.25,-2401.57C5025.2,-2421.21 4386.31,-2478.52 4292,-2484 3627.53,-2522.6 2823.74,-2533.63 2568.72,-2536.27"/> +<path fill="none" stroke="black" d="M2812.86,-2808.05C2820.39,-2798.9 2830.84,-2787.47 2840.69,-2777.57"/> 
-<polygon fill="black" stroke="black" points="2568.4,-2532.77 2558.44,-2536.37 2568.47,-2539.77 2568.4,-2532.77"/>+<polygon fill="black" stroke="black" points="2843.35,-2779.86 2848.04,-2770.36 2838.45,-2774.86 2843.35,-2779.86"/>
 </g> </g>
-<!-- pnj:valentinpragault&#45;&gt;pj:ankou --> +<!-- pnj:sokouzy&#45;&gt;pnj:jibril --> 
-<g id="edge350" class="edge"><title>pnj:valentinpragault&#45;&gt;pj:ankou</title> +<g id="edge584" class="edge"><title>pnj:sokouzy&#45;&gt;pnj:jibril</title> 
-<path fill="none" stroke="black" d="M5309.89,-2375.75C5304.21,-2356.33 5298.7,-2324.79 5314,-2304 5537.51,-2000.38 5821.02,-2276.38 6124,-2052 6276.09,-1939.37 6322,-1864.26 6322,-1675 6322,-1675 6322,-1675 6322,-1457 6322,-1259.76 6561.48,-723.028 6430,-576 6238.31,-361.646 6073.53,-528.326 5787,-504 3857.81,-340.215 3367.94,-406.661 1438,-252 1399.04,-248.878 1355.05,-244.326 1322.14,-240.718"/> +<path fill="none" stroke="black" d="M2749.29,-2822.38C2665.2,-2815.07 2512,-2787.42 2512,-2683 2512,-2683 2512,-2683 2512,-2465 2512,-2400.25 2730.95,-1993.23 2773,-1944 2806.72,-1904.52 2816.85,-1891.42 2865,-1872 2948.77,-1838.22 3218.42,-1824.81 3330.46,-1820.61"/> 
-<polygon fill="black" stroke="black" points="1322.19,-237.202 1311.87,-239.582 1321.42,-244.16 1322.19,-237.202"/>+<polygon fill="black" stroke="black" points="3330.62,-1824.11 3340.48,-1820.24 3330.36,-1817.11 3330.62,-1824.11"/>
 </g> </g>
-<!-- pnj:valentinpragault&#45;&gt;lore:organisations:ira --> +<!-- lore:planques:box_m2&#45;&gt;lore:lieux:munich --> 
-<g id="edge347" class="edge"><title>pnj:valentinpragault&#45;&gt;lore:organisations:ira</title> +<g id="edge272" class="edge"><title>lore:planques:box_m2&#45;&gt;lore:lieux:munich</title> 
-<path fill="none" stroke="black" d="M5310.41,-2375.81C5305.31,-2356.74 5300.45,-2325.79 5314,-2304 5533.31,-1951.42 6152,-2306.22 6152,-1891 6152,-1891 6152,-1891 6152,-1817 6152,-1647.42 6284,-1628.58 6284,-1459 6284,-1459 6284,-1459 6284,-1385 6284,-1319.56 6416,-876.442 6416,-811 6416,-811 6416,-811 6416,-593 6416,-466.8 2248.76,-452.639 1562.21,-451.163"/> +<path fill="none" stroke="black" d="M4456.78,-1684.99C4345.86,-1701.06 4128.18,-1737.36 3952,-1800 3852.74,-1835.29 3840.86,-1874.43 3741,-1908 3654.15,-1937.2 3605.41,-1881.93 3538,-1944 3502.15,-1977.01 3511.8,-2003.8 3519,-2052 3523.94,-2085.09 3529.24,-2092.67 3541,-2124 3541.34,-2124.9 3653.8,-2375.06 3654,-2376 3657.35,-2391.65 3663.97,-2399.49 3654,-2412 3609.39,-2467.99 3565.56,-2427.39 3497,-2448 3453.36,-2461.12 3444.32,-2469.86 3401,-2484 3344.41,-2502.47 3325.65,-2494.21 3272,-2520 3185.48,-2561.59 3128,-2585 3128,-2681 3128,-2755 3128,-2755 3128,-2755 3128,-2797.19 3124.55,-2813.89 3095,-2844 3074.98,-2864.41 3046.15,-2877.14 3019.49,-2884.99"/> 
-<polygon fill="black" stroke="black" points="1562.13,-447.663 1552.12,-451.142 1562.11,-454.663 1562.13,-447.663"/>+<polygon fill="black" stroke="black" points="3018.5,-2881.63 3009.79,-2887.67 3020.36,-2888.38 3018.5,-2881.63"/>
 </g> </g>
-<!-- pnj:valentinpragault&#45;&gt;lore:organisations:camorra --> +<!-- lore:planques:box_m2&#45;&gt;pnj:rolf --> 
-<g id="edge344" class="edge"><title>pnj:valentinpragault&#45;&gt;lore:organisations:camorra</title> +<g id="edge274" class="edge"><title>lore:planques:box_m2&#45;&gt;pnj:rolf</title> 
-<path fill="none" stroke="black" d="M5302.06,-2412.02C5285.03,-2431.82 5254.47,-2464.29 5222,-2484 5180.19,-2509.39 5163.21,-2501.32 5118,-2520 5067.21,-2540.99 5010.53,-2569.16 4973.67,-2588.13"/> +<path fill="none" stroke="black" d="M4462.3,-1686.31C4416.78,-1695.15 4362.34,-1709.11 4348,-1728 4331.94,-1749.16 4361.86,-1822.39 4376.92,-1862.39"/> 
-<polygon fill="black" stroke="black" points="4972.02,-2585.05 4964.75,-2592.75 4975.24,-2591.27 4972.02,-2585.05"/>+<polygon fill="black" stroke="black" points="4373.73,-1863.86 4380.48,-1872.03 4380.3,-1861.44 4373.73,-1863.86"/>
 </g> </g>
-<!-- pnj:valentinpragault&#45;&gt;pnj:bartek --> +<!-- lore:planques:box_m2&#45;&gt;pnj:ilona --> 
-<g id="edge345" class="edge"><title>pnj:valentinpragault&#45;&gt;pnj:bartek</title> +<g id="edge275" class="edge"><title>lore:planques:box_m2&#45;&gt;pnj:ilona</title> 
-<path fill="none" stroke="black" d="M5259.3,-2381.15C5236.86,-2373.39 5213.29,-2360.68 5200,-2340 5181.18,-2310.71 5215.47,-2071.43 5227.82,-1990.01"/> +<path fill="none" stroke="black" d="M4568.74,-1690.28C4594.26,-1701.14 4626.93,-1715.76 4651.2,-1727.15"/> 
-<polygon fill="black" stroke="black" points="5231.29,-1990.44 5229.34,-1980.03 5224.37,-1989.39 5231.29,-1990.44"/>+<polygon fill="black" stroke="black" points="4649.84,-1730.38 4660.38,-1731.5 4652.84,-1724.06 4649.84,-1730.38"/>
 </g> </g>
-<!-- lore:bars:posthaus --> +<!-- lore:planques:box_m2&#45;&gt;pnj:othmar --> 
-<g id="node135" class="node"><title>lore:bars:posthaus</title> +<g id="edge273" class="edge"><title>lore:planques:box_m2&#45;&gt;pnj:othmar</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfee" cx="5433cy="-2322" rx="76.8869" ry="18"/> +<path fill="none" stroke="blackd="M4538.43,-1692.19C4547.81,-1716.42 4560.63,-1760.89 4566.76,-1789.68"/> 
-<text text-anchor="middlex="5433y="-2318.3" font-family="Times,serif" font-size="14.00">lore:bars:posthaus</text>+<polygon fill="blackstroke="blackpoints="4563.4,-1790.73 4568.76,-1799.87 4570.27,-1789.38 4563.4,-1790.73"/>
 </g> </g>
-<!-- pnj:valentinpragault&#45;&gt;lore:bars:posthaus --> +<!-- pnj:janiscalvin&#45;&gt;lore:lieux:munich --> 
-<g id="edge351" class="edge"><title>pnj:valentinpragault&#45;&gt;lore:bars:posthaus</title> +<g id="edge429" class="edge"><title>pnj:janiscalvin&#45;&gt;lore:lieux:munich</title> 
-<path fill="none" stroke="black" d="M5337.61,-2376.59C5353,-2366.73 5373.99,-2354.09 5392.42,-2343.56"/> +<path fill="none" stroke="black" d="M3898.07,-2835.64C3876.18,-2838.62 3850.46,-2841.77 3827,-2844 3534.96,-2871.7 3186.12,-2887.91 3031.49,-2894.09"/> 
-<polygon fill="black" stroke="black" points="5394.24,-2346.56 5401.22,-2338.59 5390.79,-2340.46 5394.24,-2346.56"/>+<polygon fill="black" stroke="black" points="3031,-2890.61 3021.15,-2894.5 3031.28,-2897.6 3031,-2890.61"/>
 </g> </g>
-<!-- pnj:valentinpragault&#45;&gt;pnj:obrennan --> +<!-- pnj:janiscalvin&#45;&gt;pnj:song_mi --> 
-<g id="edge354" class="edge"><title>pnj:valentinpragault&#45;&gt;pnj:obrennan</title> +<g id="edge426" class="edge"><title>pnj:janiscalvin&#45;&gt;pnj:song_mi</title> 
-<path fill="none" stroke="black" d="M5317.22,-2376C5319.59,-2355.91 5326.54,-2322.85 5347,-2304 5664.14,-2011.78 5960.04,-2336.64 6284,-2052 6310.31,-2028.89 6302.96,-2012.5 6316,-1980 6423.66,-1711.76 6433.25,-1638.16 6536,-1368 6581.8,-1247.58 6644,-1227.83 6644,-1099 6644,-1099 6644,-1099 6644,-305 6644,-291.928 6632.4,-292.121 6620,-288 6377.27,-207.357 2310.33,-168.678 1732.97,-163.583"/> +<path fill="none" stroke="black" d="M3934.6,-2808.41C3926.42,-2799.61 3916.23,-2788.63 3907.21,-2778.92"/> 
-<polygon fill="black" stroke="black" points="1732.76,-160.081 1722.73,-163.493 1732.69,-167.081 1732.76,-160.081"/>+<polygon fill="black" stroke="black" points="3909.66,-2776.42 3900.29,-2771.47 3904.53,-2781.18 3909.66,-2776.42"/>
 </g> </g>
-<!-- pnj:camillia_campolin&#45;&gt;lore:lieux:munich --> +<!-- pnj:janiscalvin&#45;&gt;lore:organisations:munich_people_voice --> 
-<g id="edge431" class="edge"><title>pnj:camillia_campolin&#45;&gt;lore:lieux:munich</title> +<g id="edge428" class="edge"><title>pnj:janiscalvin&#45;&gt;lore:organisations:munich_people_voice</title> 
-<path fill="none" stroke="black" d="M4743.04,-2406.23C4619.65,-2425.73 4345.74,-2465.54 4113,-2484 3522.58,-2530.84 2807.72,-2536.48 2568.98,-2537.01"/> +<path fill="none" stroke="black" d="M3950.48,-2807.87C3951.16,-2783.67 3952.42,-2739.21 3953.23,-2710.39"/> 
-<polygon fill="black" stroke="black" points="2568.64,-2533.51 2558.65,-2537.03 2568.66,-2540.51 2568.64,-2533.51"/>+<polygon fill="black" stroke="black" points="3956.73,-2710.28 3953.52,-2700.19 3949.74,-2710.09 3956.73,-2710.28"/>
 </g> </g>
-<!-- pnj:camillia_campolin&#45;&gt;lore:organisations:camorra --> +<!-- pnj:janiscalvin&#45;&gt;pnj:kromashi --> 
-<g id="edge432" class="edge"><title>pnj:camillia_campolin&#45;&gt;lore:organisations:camorra</title> +<g id="edge427" class="edge"><title>pnj:janiscalvin&#45;&gt;pnj:kromashi</title> 
-<path fill="none" stroke="black" d="M4861.06,-2408.73C4881.42,-2417.04 4902.9,-2429.67 4916,-2448 4944.48,-2487.84 4946.81,-2547.25 4942.55,-2581.66"/> +<path fill="none" stroke="black" d="M3968.09,-2808.76C3981.52,-2798.88 4000.09,-2786.17 4016.5,-2775.58"/> 
-<polygon fill="black" stroke="black" points="4939.04,-2581.48 4940.97,-2591.9 4945.96,-2582.55 4939.04,-2581.48"/>+<polygon fill="black" stroke="black" points="4018.79,-2778.27 4025.35,-2769.95 4015.03,-2772.37 4018.79,-2778.27"/>
 </g> </g>
-<!-- pnj:camillia_campolin&#45;&gt;pnj:silvo_campolin --> +<!-- pnj:joachim_finkerbachen&#45;&gt;lore:lieux:munich --> 
-<g id="edge430" class="edge"><title>pnj:camillia_campolin&#45;&gt;pnj:silvo_campolin</title> +<g id="edge421" class="edge"><title>pnj:joachim_finkerbachen&#45;&gt;lore:lieux:munich</title> 
-<path fill="none" stroke="black" d="M4817.34,-2412.1C4819.24,-2419.79 4820.8,-2429.05 4821.7,-2437.67"/> +<path fill="none" stroke="black" d="M1410.73,-2964.63C1709.17,-2951.7 2597.77,-2913.75 2870.52,-2902.31"/> 
-<polygon fill="black" stroke="black" points="4818.21,-2437.98 4822.44,-2447.7 4825.19,-2437.46 4818.21,-2437.98"/>+<polygon fill="black" stroke="black" points="2870.89,-2905.79 2880.73,-2901.88 2870.59,-2898.8 2870.89,-2905.79"/>
 </g> </g>
-<!-- pnj:mariedesallies&#45;&gt;lore:lieux:zurich --> +<!-- pnj:joachim_finkerbachen&#45;&gt;pj:oggodt --> 
-<g id="edge149" class="edge"><title>pnj:mariedesallies&#45;&gt;lore:lieux:zurich</title> +<g id="edge422" class="edge"><title>pnj:joachim_finkerbachen&#45;&gt;pj:oggodt</title> 
-<path fill="none" stroke="black" d="M5824.74,-3029.54C5762.52,-3012.67 5668,-2974.59 5668,-2899 5668,-2899 5668,-2899 5668,-2825 5668,-2784.55 5656.35,-2762.4 5687,-2736 5736.17,-2693.64 6206.93,-2715.32 6270,-2700 6424.32,-2662.52 6492.53,-2675.6 6597,-2556 6667.89,-2474.85 6664,-2430.75 6664,-2323 6664,-2323 6664,-2323 6664,-1745 6664,-1698.03 6633.78,-1694.59 6607,-1656 6515.79,-1524.54 6493.05,-1491.23 6391,-1368 6294.29,-1251.21 6245.43,-1241.96 6161,-1116 6141.3,-1086.6 6139.75,-1077.01 6127,-1044 6112.15,-1005.54 6078.73,-890.48 6063.64,-837.832"/> +<path fill="none" stroke="black" d="M1339.5,-2987.45C1363.82,-3006.4 1392.05,-3037.79 1372,-3060 1341.19,-3094.13 1031.17,-3107.54 902.442,-3111.56"/> 
-<polygon fill="black" stroke="black" points="6067,-836.828 6060.88,-828.175 6060.27,-838.752 6067,-836.828"/>+<polygon fill="black" stroke="black" points="902.281,-3108.06 892.392,-3111.87 902.494,-3115.06 902.281,-3108.06"/>
 </g> </g>
-<!-- pnj:mariedesallies&#45;&gt;lore:corpos:saeder&#45;krupp --> +<!-- pnj:joachim_finkerbachen&#45;&gt;pnj:martha_finkerbachen --> 
-<g id="edge148" class="edge"><title>pnj:mariedesallies&#45;&gt;lore:corpos:saeder&#45;krupp</title> +<g id="edge420" class="edge"><title>pnj:joachim_finkerbachen&#45;&gt;pnj:martha_finkerbachen</title> 
-<path fill="none" stroke="black" d="M5851.88,-3059.06C5833.18,-3069.05 5807.64,-3081.99 5785.54,-3092.68"/> +<path fill="none" stroke="black" d="M1244.4,-2983.7C1174.75,-2996.15 1066.26,-3015.05 991.818,-3027.7"/> 
-<polygon fill="black" stroke="black" points="5783.8,-3089.63 5776.3,-3097.12 5786.83,-3095.94 5783.8,-3089.63"/>+<polygon fill="black" stroke="black" points="990.822,-3024.32 981.548,-3029.44 991.993,-3031.22 990.822,-3024.32"/>
 </g> </g>
-<!-- lore:lieux:pompei --> +<!-- pnj:gin&#45;&gt;lore:lieux:munich --> 
-<g id="node92" class="node"><title>lore:lieux:pompei</title> +<g id="edge476" class="edge"><title>pnj:gin&#45;&gt;lore:lieux:munich</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfeecx="5560" cy="-1530" rx="72.2875" ry="18"/> +<path fill="none" stroke="blackd="M3621.4,-2478.22C3615.38,-2480.18 3609.01,-2482.17 3603,-2484 3547.69,-2500.83 3519.04,-2479.28 3478,-2520 3442.47,-2555.26 3474.38,-2586.76 3446,-2628 3431.09,-2649.68 3418.73,-2646.59 3399,-2664 3365.3,-2693.74 3359.37,-2703.81 3328,-2736 3281.49,-2783.72 3282.44,-2811.98 3224,-2844 3164.83,-2876.42 3088.46,-2889.13 3031.48,-2894.05"/> 
-<text text-anchor="middlex="5560y="-1526.3" font-family="Times,serif" font-size="14.00">lore:lieux:pompei</text>+<polygon fill="blackstroke="blackpoints="3031.12,-2890.57 3021.44,-2894.85 3031.68,-2897.54 3031.12,-2890.57"/>
 </g> </g>
-<!-- lore:lieux:pompei&#45;&gt;lore:lieux:nancy --> +<!-- pnj:gin&#45;&gt;lore:organisations:chrysantheme_renaissante --> 
-<g id="edge156" class="edge"><title>lore:lieux:pompei&#45;&gt;lore:lieux:nancy</title> +<g id="edge475" class="edge"><title>pnj:gin&#45;&gt;lore:organisations:chrysantheme_renaissante</title> 
-<path fill="none" stroke="black" d="M5574.42,-1547.86C5603.12,-1581.59 5669.2,-1659.96 5722,-1728 5794.91,-1821.97 5810.78,-1847.27 5880,-1944 5936.83,-2023.41 5942.58,-2049.74 6006,-2124 6087.85,-2219.85 6210,-2194.96 6210,-2321 6210,-2395 6210,-2395 6210,-2395 6210,-2556.26 6304.92,-2577.38 6334,-2736 6339.14,-2764.04 6338.35,-2834.01 6335,-2844 6331.54,-2854.33 6325.18,-2864.26 6318.54,-2872.67"/> +<path fill="none" stroke="black" d="M3653.14,-2484.1C3654.05,-2491.79 3654.42,-2501.05 3654.21,-2509.67"/> 
-<polygon fill="black" stroke="black" points="6315.68,-2870.63 6311.9,-2880.53 6321.02,-2875.15 6315.68,-2870.63"/>+<polygon fill="black" stroke="black" points="3650.72,-2509.52 3653.67,-2519.7 3657.71,-2509.9 3650.72,-2509.52"/>
 </g> </g>
-<!-- lore:lieux:pompei&#45;&gt;lore:planques:entrepot_np1 --> +<!-- pnj:youzo&#45;&gt;lore:lieux:munich --> 
-<g id="edge155" class="edge"><title>lore:lieux:pompei&#45;&gt;lore:planques:entrepot_np1</title> +<g id="edge319" class="edge"><title>pnj:youzo&#45;&gt;lore:lieux:munich</title> 
-<path fill="none" stroke="black" d="M5572.28,-1512.05C5580.83,-1503.2 5592.41,-1492.22 5603.35,-1482.55"/> +<path fill="none" stroke="black" d="M2882.03,-2771.31C2898.91,-2795.62 2926.09,-2841.61 2941.01,-2870.71"/> 
-<polygon fill="black" stroke="black" points="5605.89,-1484.98 5611.15,-1475.79 5601.3,-1479.69 5605.89,-1484.98"/>+<polygon fill="black" stroke="black" points="2937.98,-2872.48 2945.57,-2879.87 2944.25,-2869.36 2937.98,-2872.48"/>
 </g> </g>
-<!-- lore:lieux:pompei&#45;&gt;lore:lieux:confederation_italienne --> +<!-- pnj:youzo&#45;&gt;pnj:sokouzy --> 
-<g id="edge157" class="edge"><title>lore:lieux:pompei&#45;&gt;lore:lieux:confederation_italienne</title> +<g id="edge318" class="edge"><title>pnj:youzo&#45;&gt;pnj:sokouzy</title> 
-<path fill="none" stroke="black" d="M5495.33,-1538.06C5378.89,-1550.28 5132.88,-1575.48 4988.39,-1590.02"/> +<path fill="none" stroke="black" d="M2858.26,-2771.8C2850.85,-2780.83 2840.56,-2792.09 2830.81,-2801.93"/> 
-<polygon fill="black" stroke="black" points="4987.76,-1586.56 4978.16,-1591.05 4988.46,-1593.53 4987.76,-1586.56"/>+<polygon fill="black" stroke="black" points="2828.18,-2799.61 2823.51,-2809.12 2833.09,-2804.6 2828.18,-2799.61"/>
 </g> </g>
-<!-- lore:planques:entrepot_np1&#45;&gt;lore:lieux:sox --> +<!-- pnj:youzo&#45;&gt;pnj:milla --> 
-<g id="edge231" class="edge"><title>lore:planques:entrepot_np1&#45;&gt;lore:lieux:sox</title> +<g id="edge317" class="edge"><title>pnj:youzo&#45;&gt;pnj:milla</title> 
-<path fill="none" stroke="black" d="M5641.32,-1476.29C5659.5,-1526.2 5713.15,-1674.95 5753,-1800 5845.4,-2089.99 5884.63,-2196.07 5786,-2484 5761.15,-2556.54 5746.66,-2575.27 5691,-2628 5651.24,-2665.66 5639.65,-2674.85 5591,-2700 5547.18,-2722.66 5531.98,-2718.12 5486,-2736 5428.32,-2758.43 5362.97,-2787.63 5322.11,-2806.35"/> +<path fill="none" stroke="black" d="M2869.75,-2735.7C2872.56,-2727.4 2876.84,-2717.31 2881.34,-2708.19"/> 
-<polygon fill="black" stroke="black" points="5320.4,-2803.28 5312.78,-2810.64 5323.33,-2809.64 5320.4,-2803.28"/>+<polygon fill="black" stroke="black" points="2884.53,-2709.63 2886.06,-2699.14 2878.33,-2706.39 2884.53,-2709.63"/>
 </g> </g>
-<!-- lore:planques:entrepot_np1&#45;&gt;lore:lieux:france --> +<!-- pnj:youzo&#45;&gt;pnj:jibril --> 
-<g id="edge229" class="edge"><title>lore:planques:entrepot_np1&#45;&gt;lore:lieux:france</title> +<g id="edge316" class="edge"><title>pnj:youzo&#45;&gt;pnj:jibril</title> 
-<path fill="none" stroke="black" d="M5648.23,-1476.05C5745.61,-1601.88 6351.13,-2389.23 6470,-2664 6515.11,-2768.28 6563.93,-2814.43 6513,-2916 6506.34,-2929.28 6494.61,-2940.08 6482.57,-2948.38"/> +<path fill="none" stroke="black" d="M2852.82,-2736.76C2817.08,-2697.29 2728.3,-2591.6 2697,-2484 2692.53,-2468.64 2696.08,-2463.97 2697,-2448 2703.9,-2327.85 2728,-2299.35 2728,-2179 2728,-2179 2728,-2179 2728,-2105 2728,-1842.2 3177.73,-1818.65 3330.17,-1818.21"/> 
-<polygon fill="black" stroke="black" points="6480.35,-2945.65 6473.82,-2953.99 6484.13,-2951.54 6480.35,-2945.65"/>+<polygon fill="black" stroke="black" points="3330.19,-1821.71 3340.2,-1818.22 3330.2,-1814.71 3330.19,-1821.71"/>
 </g> </g>
-<!-- lore:planques:entrepot_np1&#45;&gt;lore:lieux:nancy --> +<!-- pnj:song_mi&#45;&gt;lore:lieux:munich --> 
-<g id="edge228" class="edge"><title>lore:planques:entrepot_np1&#45;&gt;lore:lieux:nancy</title> +<g id="edge220" class="edge"><title>pnj:song_mi&#45;&gt;lore:lieux:munich</title> 
-<path fill="none" stroke="black" d="M5670.97,-1475.12C5782.49,-1529.17 6114,-1706.73 6114,-1817 6114,-1891 6114,-1891 6114,-1891 6114,-1999.26 6129.11,-2031.28 6185,-2124 6272.61,-2269.35 6456,-2223.29 6456,-2393 6456,-2755 6456,-2755 6456,-2755 6456,-2815.26 6391.41,-2857.3 6343.95,-2879.26"/> +<path fill="none" stroke="black" d="M3874.68,-2771.76C3855.46,-2792.93 3814.15,-2828.45 3771,-2844 3637.45,-2892.12 3212.79,-2897.34 3032.8,-2897.37"/> 
-<polygon fill="black" stroke="black" points="6342.41,-2876.12 6334.71,-2883.39 6345.27,-2882.51 6342.41,-2876.12"/>+<polygon fill="black" stroke="black" points="3032.6,-2893.87 3022.6,-2897.36 3032.6,-2900.87 3032.6,-2893.87"/>
 </g> </g>
-<!-- lore:planques:entrepot_np1&#45;&gt;lore:lieux:pompei --> +<!-- pnj:song_mi&#45;&gt;lore:organisations:munich_people_voice --> 
-<g id="edge230" class="edge"><title>lore:planques:entrepot_np1&#45;&gt;lore:lieux:pompei</title> +<g id="edge219" class="edge"><title>pnj:song_mi&#45;&gt;lore:organisations:munich_people_voice</title> 
-<path fill="none" stroke="black" d="M5622.55,-1476.12C5613.86,-1485.11 5602.09,-1496.25 5591.05,-1505.98"/> +<path fill="none" stroke="black" d="M3895.82,-2736.05C3903.48,-2727.35 3913.9,-2716.59 3923.85,-2707.04"/> 
-<polygon fill="black" stroke="black" points="5588.48,-1503.58 5583.2,-1512.76 5593.05,-1508.88 5588.48,-1503.58"/>+<polygon fill="black" stroke="black" points="3926.43,-2709.43 3931.32,-2700.03 3921.64,-2704.32 3926.43,-2709.43"/>
 </g> </g>
-<!-- lore:planques:entrepot_np1&#45;&gt;lore:lieux:confederation_italienne --> +<!-- pnj:arima&#45;&gt;lore:lieux:munich --> 
-<g id="edge227" class="edge"><title>lore:planques:entrepot_np1&#45;&gt;lore:lieux:confederation_italienne</title> +<g id="edge456" class="edge"><title>pnj:arima&#45;&gt;lore:lieux:munich</title> 
-<path fill="none" stroke="black" d="M5534.22,-1464.79C5438.06,-1471.6 5289.52,-1485.53 5163,-1512 5079.25,-1529.52 4985.01,-1561.12 4928.1,-1581.57"/> +<path fill="none" stroke="black" d="M724.926,-684.196C720.733,-702.731 708.926,-732.705 694,-756 659.354,-810.075 631.025,-808.92 598,-864 541.237,-958.671 512,-986.616 512,-1097 512,-1243 512,-1243 512,-1243 512,-1429.42 657.461,-1882.01 734,-2052 796.758,-2191.38 837.826,-2212.41 922,-2340 1035.29,-2511.73 1025.4,-2615.53 1213,-2700 1280.65,-2730.46 1304.68,-2715.56 1376,-2736 1468.02,-2762.37 1491.99,-2768.09 1579,-2808 1608.31,-2821.44 1611,-2835.1 1642,-2844 1759.76,-2877.82 2601.63,-2892.13 2869.46,-2895.92"/> 
-<polygon fill="black" stroke="black" points="4926.82,-1578.31 4918.61,-1585 4929.2,-1584.9 4926.82,-1578.31"/>+<polygon fill="black" stroke="black" points="2869.45,-2899.42 2879.5,-2896.06 2869.55,-2892.42 2869.45,-2899.42"/>
 </g> </g>
-<!-- lore:planques:entrepot_np1&#45;&gt;pnj:ekhart --> +<!-- pnj:arima&#45;&gt;lore:gangs:dorf_et_obere --> 
-<g id="edge232" class="edge"><title>lore:planques:entrepot_np1&#45;&gt;pnj:ekhart</title> +<g id="edge457" class="edge"><title>pnj:arima&#45;&gt;lore:gangs:dorf_et_obere</title> 
-<path fill="none" stroke="black" d="M5597.56,-1440.94C5576.25,-1430.72 5549.9,-1417.41 5529.46,-1406.58"/> +<path fill="none" stroke="black" d="M733.558,-648.395C741.737,-638.645 752.497,-625.593 759,-612 768.327,-592.504 772.826,-568.366 776.376,-550.148"/> 
-<polygon fill="black" stroke="black" points="5531,-1403.43 5520.53,-1401.79 5527.69,-1409.6 5531,-1403.43"/>+<polygon fill="black" stroke="black" points="779.839,-550.68 778.386,-540.185 772.977,-549.296 779.839,-550.68"/>
 </g> </g>
-<!-- lore:lieux:confederation_italienne&#45;&gt;lore:lieux:milan --> +<!-- pnj:arima&#45;&gt;pnj:edrich --> 
-<g id="edge174" class="edge"><title>lore:lieux:confederation_italienne&#45;&gt;lore:lieux:milan</title> +<g id="edge454" class="edge"><title>pnj:arima&#45;&gt;pnj:edrich</title> 
-<path fill="none" stroke="black" d="M4786.43,-1589.13C4680.97,-1575.14 4508.29,-1552.25 4414.2,-1539.78"/> +<path fill="none" stroke="black" d="M715.459,-648.055C713.429,-640.346 711.723,-631.027 710.695,-622.364"/> 
-<polygon fill="black" stroke="black" points="4414.61,-1536.3 4404.23,-1538.46 4413.69,-1543.24 4414.61,-1536.3"/>+<polygon fill="black" stroke="black" points="714.17,-621.928 709.802,-612.275 707.197,-622.545 714.17,-621.928"/>
 </g> </g>
-<!-- lore:lieux:confederation_italienne&#45;&gt;lore:lieux:gemito --> +<!-- pnj:arima&#45;&gt;pnj:gutwayn --> 
-<g id="edge172" class="edge"><title>lore:lieux:confederation_italienne&#45;&gt;lore:lieux:gemito</title> +<g id="edge455" class="edge"><title>pnj:arima&#45;&gt;pnj:gutwayn</title> 
-<path fill="none" stroke="black" d="M4837.04,-1619.23C4807.61,-1630.36 4767.04,-1645.08 4734.88,-1656.31"/> +<path fill="none" stroke="black" d="M706.96,-682.627C693.424,-692.733 674.263,-705.984 657.501,-716.875"/> 
-<polygon fill="black" stroke="black" points="4733.49,-1653.08 4725.19,-1659.67 4735.79,-1659.7 4733.49,-1653.08"/>+<polygon fill="black" stroke="black" points="655.527,-713.983 648.997,-722.326 659.305,-719.876 655.527,-713.983"/>
 </g> </g>
-<!-- lore:lieux:confederation_italienne&#45;&gt;lore:lieux:europe --> +<!-- lore:organisations:chrysantheme_renaissante&#45;&gt;lore:organisations:mi&#45;seng_lung --> 
-<g id="edge175" class="edge"><title>lore:lieux:confederation_italienne&#45;&gt;lore:lieux:europe</title> +<g id="edge303" class="edge"><title>lore:organisations:chrysantheme_renaissante&#45;&gt;lore:organisations:mi&#45;seng_lung</title> 
-<path fill="none" stroke="black" d="M4847.38,-1584.29C4817.92,-1562.72 4774.5,-1522.38 4757,-1476 4740.05,-1431.09 4726.5,-1405.06 4757,-1368 4839.05,-1268.29 5242.12,-1248.1 5415.53,-1244.02"/> +<path fill="none" stroke="black" d="M3557.55,-2522.71C3481.14,-2510.63 3372.24,-2493.43 3295.75,-2481.34"/> 
-<polygon fill="black" stroke="black" points="5415.7,-1247.52 5425.62,-1243.8 5415.54,-1240.52 5415.7,-1247.52"/>+<polygon fill="black" stroke="black" points="3296.07,-2477.85 3285.65,-2479.74 3294.98,-2484.76 3296.07,-2477.85"/>
 </g> </g>
-<!-- lore:lieux:confederation_italienne&#45;&gt;lore:lieux:pompei --> +<!-- lore:organisations:chrysantheme_renaissante&#45;&gt;pnj:gin --> 
-<g id="edge173" class="edge"><title>lore:lieux:confederation_italienne&#45;&gt;lore:lieux:pompei</title> +<g id="edge302" class="edge"><title>lore:organisations:chrysantheme_renaissante&#45;&gt;pnj:gin</title> 
-<path fill="none" stroke="black" d="M4974.51,-1590.41C5112.19,-1576.06 5359.13,-1550.81 5483.73,-1538.36"/> +<path fill="none" stroke="black" d="M3641.84,-2519.7C3640.93,-2511.98 3640.57,-2502.71 3640.79,-2494.11"/> 
-<polygon fill="black" stroke="black" points="5484.34,-1541.82 5493.95,-1537.34 5483.65,-1534.85 5484.34,-1541.82"/>+<polygon fill="black" stroke="black" points="3644.29,-2494.28 3641.35,-2484.1 3637.3,-2493.89 3644.29,-2494.28"/>
 </g> </g>
-<!-- lore:lieux:confederation_italienne&#45;&gt;lore:lieux:genes --> +<!-- lore:gangs:1thundershock&#45;&gt;lore:lieux:munich --> 
-<g id="edge171" class="edge"><title>lore:lieux:confederation_italienne&#45;&gt;lore:lieux:genes</title> +<g id="edge308" class="edge"><title>lore:gangs:1thundershock&#45;&gt;lore:lieux:munich</title> 
-<path fill="none" stroke="black" d="M4892.77,-1583.87C4917.42,-1558.68 4963.56,-1511.55 4991.56,-1482.94"/> +<path fill="none" stroke="black" d="M1985.29,-2771.77C1964.24,-2790.75 1934.02,-2821.88 1955,-2844 1986.44,-2877.14 2637.26,-2891.5 2869.56,-2895.65"/> 
-<polygon fill="black" stroke="black" points="4994.11,-1485.34 4998.61,-1475.75 4989.11,-1480.45 4994.11,-1485.34"/>+<polygon fill="black" stroke="black" points="2869.58,-2899.15 2879.64,-2895.83 2869.71,-2892.16 2869.58,-2899.15"/>
 </g> </g>
-<!-- lore:organisations:lotus_jaune&#45;&gt;lore:lieux:munich --> +<!-- lore:gangs:1thundershock&#45;&gt;lore:gangs:jerenton --> 
-<g id="edge178" class="edge"><title>lore:organisations:lotus_jaune&#45;&gt;lore:lieux:munich</title> +<g id="edge307" class="edge"><title>lore:gangs:1thundershock&#45;&gt;lore:gangs:jerenton</title> 
-<path fill="none" stroke="black" d="M1442.26,-684.018C1413.57,-707.928 1363,-754.672 1363,-809 1363,-1315 1363,-1315 1363,-1315 1363,-1411.6 1401,-1432.4 1401,-1529 1401,-1747 1401,-1747 1401,-1747 1401,-1821.3 1473.76,-1808.3 1512,-1872 1533.71,-1908.17 1545,-1918.81 1545,-1961 1545,-2251 1545,-2251 1545,-2251 1545,-2341.55 1504.65,-2358.2 1493,-2448 1490.94,-2463.87 1481.99,-2472.39 1493,-2484 1524.37,-2517.07 2173.91,-2531.48 2405.73,-2535.65"/> +<path fill="none" stroke="black" d="M2015.47,-2772.1C2019.77,-2779.96 2024.21,-2789.46 2027.73,-2798.23"/> 
-<polygon fill="black" stroke="black" points="2405.73,-2539.15 2415.79,-2535.83 2405.86,-2532.15 2405.73,-2539.15"/>+<polygon fill="black" stroke="black" points="2024.48,-2799.55 2031.25,-2807.7 2031.04,-2797.1 2024.48,-2799.55"/>
 </g> </g>
-<!-- lore:organisations:lotus_jaune&#45;&gt;lore:organisations:chrysantheme_renaissante --> +<!-- lore:gangs:1thundershock&#45;&gt;pj:johnmcgill --> 
-<g id="edge179" class="edge"><title>lore:organisations:lotus_jaune&#45;&gt;lore:organisations:chrysantheme_renaissante</title> +<g id="edge309" class="edge"><title>lore:gangs:1thundershock&#45;&gt;pj:johnmcgill</title> 
-<path fill="none" stroke="black" d="M1568.18,-658.711C1780.02,-646.282 2253,-618.529 2498.87,-604.102"/> +<path fill="none" stroke="black" d="M1971.62,-2736.76C1952.61,-2726.61 1928,-2713.46 1907.88,-2702.7"/> 
-<polygon fill="black" stroke="black" points="2499.19,-607.59 2508.96,-603.51 2498.78,-600.602 2499.19,-607.59"/>+<polygon fill="black" stroke="black" points="1909.45,-2699.58 1898.98,-2697.95 1906.15,-2705.75 1909.45,-2699.58"/>
 </g> </g>
-<!-- lore:organisations:lotus_jaune&#45;&gt;lore:organisations:camorra --> +<!-- lore:organisations:munich_people_voice&#45;&gt;lore:lieux:munich --> 
-<g id="edge177" class="edge"><title>lore:organisations:lotus_jaune&#45;&gt;lore:organisations:camorra</title> +<g id="edge376" class="edge"><title>lore:organisations:munich_people_voice&#45;&gt;lore:lieux:munich</title> 
-<path fill="none" stroke="black" d="M1576.48,-668.892C2285.65,-680.658 6024.41,-744.84 6132,-792 6208.56,-825.56 6219.72,-859.315 6253,-936 6276.53,-990.213 6360,-1397.9 6360,-1457 6360,-1675 6360,-1675 6360,-1675 6360,-1761.67 6309.77,-1981.04 6260,-2052 6131.07,-2235.8 6044.12,-2236.29 5845,-2340 5599.19,-2468.03 5528.02,-2485.44 5260,-2556 5184.07,-2575.99 5096.11,-2589.76 5030.7,-2598.24"/> +<path fill="none" stroke="black" d="M3911.26,-2699.44C3886.73,-2708.61 3855.89,-2721.18 3830,-2736 3762.1,-2774.86 3764.04,-2815.97 3691,-2844 3630.99,-2867.03 3210.24,-2886.73 3031.22,-2894"/> 
-<polygon fill="black" stroke="black" points="5029.88,-2594.82 5020.4,-2599.56 5030.76,-2601.76 5029.88,-2594.82"/>+<polygon fill="black" stroke="black" points="3030.92,-2890.51 3021.07,-2894.41 3031.21,-2897.51 3030.92,-2890.51"/>
 </g> </g>
-<!-- lore:organisations:lotus_jaune&#45;&gt;pj:johnmcgill --> +<!-- lore:organisations:munich_people_voice&#45;&gt;pnj:song_mi --> 
-<g id="edge176" class="edge"><title>lore:organisations:lotus_jaune&#45;&gt;pj:johnmcgill</title> +<g id="edge377" class="edge"><title>lore:organisations:munich_people_voice&#45;&gt;pnj:song_mi</title> 
-<path fill="none" stroke="black" d="M1455.08,-647.697C1454.29,-639.983 1454.06,-630.712 1454.4,-622.112"/> +<path fill="none" stroke="black" d="M3942.87,-2700.29C3934.95,-2709.27 3924.18,-2720.36 3914.01,-2730.04"/> 
-<polygon fill="black" stroke="black" points="1457.9,-622.324 1455.1,-612.104 1450.92,-621.836 1457.9,-622.324"/>+<polygon fill="black" stroke="black" points="3911.35,-2727.74 3906.42,-2737.12 3916.12,-2732.86 3911.35,-2727.74"/>
 </g> </g>
 <!-- pnj:milla&#45;&gt;lore:lieux:munich --> <!-- pnj:milla&#45;&gt;lore:lieux:munich -->
-<g id="edge164" class="edge"><title>pnj:milla&#45;&gt;lore:lieux:munich</title> +<g id="edge235" class="edge"><title>pnj:milla&#45;&gt;lore:lieux:munich</title> 
-<path fill="none" stroke="black" d="M949.104,-2476.3C958.747,-2479.32 969.216,-2482.32 979,-2484 1257.23,-2531.75 2132.26,-2536.7 2405.02,-2537.04"/> +<path fill="none" stroke="black" d="M2915.15,-2698.82C2921.63,-2709.15 2928.02,-2723.06 2932,-2736 2946.1,-2781.8 2953.78,-2837.25 2954.79,-2869.68"/> 
-<polygon fill="black" stroke="black" points="2405.24,-2540.54 2415.24,-2537.05 2405.25,-2533.54 2405.24,-2540.54"/>+<polygon fill="black" stroke="black" points="2951.29,-2869.78 2954.88,-2879.75 2958.29,-2869.72 2951.29,-2869.78"/>
 </g> </g>
 <!-- pnj:milla&#45;&gt;pnj:youzo --> <!-- pnj:milla&#45;&gt;pnj:youzo -->
-<g id="edge165" class="edge"><title>pnj:milla&#45;&gt;pnj:youzo</title> +<g id="edge236" class="edge"><title>pnj:milla&#45;&gt;pnj:youzo</title> 
-<path fill="none" stroke="black" d="M928.058,-2448.76C937.549,-2439.16 950.904,-2426.87 963.105,-2416.47"/> +<path fill="none" stroke="black" d="M2897.2,-2700.45C2894.42,-2708.61 2890.24,-2718.5 2885.82,-2727.48"/> 
-<polygon fill="black" stroke="black" points="965.473,-2419.05 970.903,-2409.95 960.985,-2413.68 965.473,-2419.05"/>+<polygon fill="black" stroke="black" points="2882.69,-2725.92 2881.19,-2736.41 2888.9,-2729.15 2882.69,-2725.92"/>
 </g> </g>
-<!-- pnj:youzo&#45;&gt;lore:lieux:munich --> +<!-- pnj:stocks&#45;&gt;lore:lieux:munich --> 
-<g id="edge234" class="edge"><title>pnj:youzo&#45;&gt;lore:lieux:munich</title> +<g id="edge349" class="edge"><title>pnj:stocks&#45;&gt;lore:lieux:munich</title> 
-<path fill="none" stroke="black" d="M1000.18,-2412.09C1005.03,-2432.93 1012.03,-2467.39 1035,-2484 1090.93,-2524.44 2106.85,-2534.42 2405.27,-2536.51"/> +<path fill="none" stroke="black" d="M5437.97,-745.329C5489.51,-754.165 5570.28,-771.447 5592,-792 5696.03,-890.437 5696,-953.781 5696,-1097 5696,-1243 5696,-1243 5696,-1243 5696,-1463.18 5942,-1452.82 5942,-1673 5942,-1747 5942,-1747 5942,-1747 5942,-1821.8 5940.59,-1850.3 5893,-1908 5849.48,-1960.76 5818.51,-1950.09 5757,-1980 5721.57,-1997.23 5707.38,-1992.19 5676,-2016 5328.71,-2279.52 5374.7,-2479.98 5051,-2772 5008.17,-2810.64 4997.99,-2826.55 4943,-2844 4850.9,-2873.24 3395.74,-2891.95 3032.59,-2896.12"/> 
-<polygon fill="black" stroke="black" points="2405.56,-2540.01 2415.58,-2536.58 2405.6,-2533.01 2405.56,-2540.01"/>+<polygon fill="black" stroke="black" points="3032.38,-2892.62 3022.42,-2896.23 3032.46,-2899.62 3032.38,-2892.62"/>
 </g> </g>
-<!-- pnj:youzo&#45;&gt;pnj:jibril --> +<!-- pnj:stocks&#45;&gt;pnj:leik --> 
-<g id="edge233" class="edge"><title>pnj:youzo&#45;&gt;pnj:jibril</title> +<g id="edge350" class="edge"><title>pnj:stocks&#45;&gt;pnj:leik</title> 
-<path fill="none" stroke="black" d="M1032.94,-2384.79C1089.86,-2372.8 1188.93,-2350.77 1202,-2340 1365.24,-2205.55 1140.17,-2023.23 1288,-1872 1322.94,-1836.26 1460.95,-1845.59 1510,-1836 1580.26,-1822.26 1595.97,-1808.9 1667,-1800 1887.12,-1772.41 3514.88,-1751.36 3822.81,-1747.6"/> +<path fill="none" stroke="black" d="M5346.28,-735.406C5064.73,-726.003 3623.17,-677.86 3344.63,-668.557"/> 
-<polygon fill="black" stroke="black" points="3823.25,-1751.09 3833.2,-1747.47 3823.16,-1744.09 3823.25,-1751.09"/>+<polygon fill="black" stroke="black" points="3344.57,-665.054 3334.46,-668.218 3344.34,-672.05 3344.57,-665.054"/>
 </g> </g>
-<!-- pnj:youzo&#45;&gt;pnj:milla --> +<!-- pnj:stocks&#45;&gt;lore:planques:box_m1 --> 
-<g id="edge235" class="edge"><title>pnj:youzo&#45;&gt;pnj:milla</title> +<g id="edge353" class="edge"><title>pnj:stocks&#45;&gt;lore:planques:box_m1</title> 
-<path fill="none" stroke="black" d="M980.732,-2411.45C971.116,-2421.16 957.619,-2433.56 945.366,-2443.98"/> +<path fill="none" stroke="black" d="M5360.63,-750.986C5354.15,-752.74 5347.4,-754.468 5341,-756 5277.36,-771.218 5204.28,-785.923 5150.46,-795.967"/> 
-<polygon fill="black" stroke="black" points="942.99,-2441.41 937.547,-2450.5 947.471,-2446.78 942.99,-2441.41"/>+<polygon fill="black" stroke="black" points="5149.49,-792.586 5140.3,-797.85 5150.77,-799.469 5149.49,-792.586"/>
 </g> </g>
-<!-- pnj:youzo&#45;&gt;pnj:sokouzy --> +<!-- pnj:stocks&#45;&gt;lore:objets:nanoforge --> 
-<g id="edge236" class="edge"><title>pnj:youzo&#45;&gt;pnj:sokouzy</title> +<g id="edge354" class="edge"><title>pnj:stocks&#45;&gt;lore:objets:nanoforge</title> 
-<path fill="none" stroke="black" d="M1024.98,-2380.91C1031.25,-2379.17 1037.79,-2377.48 1044,-2376 1126.35,-2356.45 1148.33,-2358.13 1231,-2340 1238.46,-2338.36 1246.34,-2336.53 1254.13,-2334.68"/> +<path fill="none" stroke="black" d="M5346.67,-741.568C5268.12,-746.582 5106.26,-760.11 4973,-792 4900.01,-809.467 4818.72,-841.099 4769.74,-861.567"/> 
-<polygon fill="black" stroke="black" points="1255,-2338.07 1263.92,-2332.35 1253.38,-2331.26 1255,-2338.07"/>+<polygon fill="black" stroke="black" points="4768.25,-858.398 4760.39,-865.504 4770.96,-864.85 4768.25,-858.398"/>
 </g> </g>
-<!-- lore:corpos:telestrian --> +<!-- pnj:stocks&#45;&gt;lore:organisations:mi&#45;seng_lung --> 
-<g id="node98" class="node"><title>lore:corpos:telestrian</title> +<g id="edge355" class="edge"><title>pnj:stocks&#45;&gt;lore:organisations:mi&#45;seng_lung</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfeecx="7084" cy="-3186" rx="85.5853" ry="18"/> +<path fill="none" stroke="blackd="M5386.54,-755.878C5382.28,-766.142 5377.18,-779.615 5374,-792 5315.92,-1018.55 5300,-1079.12 5300,-1313 5300,-1387 5300,-1387 5300,-1387 5300,-1513.07 5246.26,-1535.26 5210,-1656 5186.19,-1735.3 5204.26,-1764.8 5162,-1836 5156.17,-1845.82 4785.5,-2194.72 4783,-2196 4725.71,-2225.31 3708.59,-2402.15 3645,-2412 3532.62,-2429.41 3403.34,-2444.39 3314.13,-2453.93"/> 
-<text text-anchor="middlex="7084y="-3182.3" font-family="Times,serif" font-size="14.00">lore:corpos:telestrian</text>+<polygon fill="blackstroke="blackpoints="3313.57,-2450.47 3304,-2455.01 3314.31,-2457.43 3313.57,-2450.47"/>
 </g> </g>
-<!-- lore:corpos:telestrian&#45;&gt;lore:lieux:zurich --> +<!-- pnj:stocks&#45;&gt;lore:organisations:chrysantheme_renaissante --> 
-<g id="edge169" class="edge"><title>lore:corpos:telestrian&#45;&gt;lore:lieux:zurich</title> +<g id="edge351" class="edge"><title>pnj:stocks&#45;&gt;lore:organisations:chrysantheme_renaissante</title> 
-<path fill="none" stroke="black" d="M7062.21,-3168.56C7035.03,-3146.81 6989.19,-3105.84 6965,-3060 6946.12,-3024.23 6946,-3011.45 6946,-2971 6946,-2971 6946,-2971 6946,-2825 6946,-2560.05 6912.26,-2495.54 6885,-2232 6879.25,-2176.44 6872,-2162.86 6872,-2107 6872,-2107 6872,-2107 6872,-1673 6872,-1599.87 6865.87,-1579.61 6838,-1512 6758.13,-1318.24 6684.55,-1298.77 6582,-1116 6555.93,-1069.54 6564.87,-1048.28 6530,-1008 6454.96,-921.332 6421.74,-908.294 6316,-864 6255.43,-838.625 6181.69,-825.076 6128.23,-818.05"/> +<path fill="none" stroke="black" d="M5394,-756.198C5394,-792.537 5394,-879.809 5394,-953 5394,-1027 5394,-1027 5394,-1027 5394,-1398.36 5371.67,-1514.97 5185,-1836 5127.49,-1934.9 4912.92,-2133.66 4817,-2196 4481.86,-2413.8 4004.13,-2495.89 3777.23,-2523.92"/> 
-<polygon fill="black" stroke="black" points="6128.52,-814.558 6118.16,-816.772 6127.64,-821.503 6128.52,-814.558"/>+<polygon fill="black" stroke="black" points="3776.78,-2520.45 3767.28,-2525.14 3777.63,-2527.4 3776.78,-2520.45"/>
 </g> </g>
-<!-- lore:corpos:telestrian&#45;&gt;lore:corpos:saeder&#45;krupp --> +<!-- pnj:stocks&#45;&gt;lore:corpos:gomorrah --> 
-<g id="edge167" class="edge"><title>lore:corpos:telestrian&#45;&gt;lore:corpos:saeder&#45;krupp</title> +<g id="edge352" class="edge"><title>pnj:stocks&#45;&gt;lore:corpos:gomorrah</title> 
-<path fill="none" stroke="black" d="M7001.89,-3180.73C6769.3,-3168.62 6106.05,-3134.1 5845.73,-3120.55"/> +<path fill="none" stroke="black" d="M5431.81,-726.821C5474.06,-715.446 5543.08,-696.863 5593,-683.424"/> 
-<polygon fill="black" stroke="black" points="5845.68,-3117.05 5835.51,-3120.02 5845.32,-3124.04 5845.68,-3117.05"/>+<polygon fill="black" stroke="black" points="5593.96,-686.788 5602.71,-680.809 5592.14,-680.029 5593.96,-686.788"/>
 </g> </g>
-<!-- pnj:jamestelestrian --> +<!-- pnj:kromashi&#45;&gt;lore:lieux:munich --> 
-<g id="node99" class="node"><title>pnj:jamestelestrian</title> +<g id="edge335" class="edge"><title>pnj:kromashi&#45;&gt;lore:lieux:munich</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfee" cx="7126cy="-3114" rx="76.0865" ry="18"/> +<path fill="none" stroke="blackd="M4058.33,-2772.05C4058.9,-2792.83 4051.86,-2827.24 4029,-2844 3989.13,-2873.23 3276.77,-2890.49 3032.41,-2895.48"/> 
-<text text-anchor="middlex="7126y="-3110.3" font-family="Times,serif" font-size="14.00">pnj:jamestelestrian</text>+<polygon fill="blackstroke="blackpoints="3032.1,-2891.99 3022.18,-2895.69 3032.25,-2898.98 3032.1,-2891.99"/>
 </g> </g>
-<!-- lore:corpos:telestrian&#45;&gt;pnj:jamestelestrian --> +<!-- pnj:kromashi&#45;&gt;pnj:janiscalvin --> 
-<g id="edge166" class="edge"><title>lore:corpos:telestrian&#45;&gt;pnj:jamestelestrian</title> +<g id="edge336" class="edge"><title>pnj:kromashi&#45;&gt;pnj:janiscalvin</title> 
-<path fill="none" stroke="black" d="M7088.47,-3167.7C7092.61,-3159.35 7098.52,-3149.18 7104.49,-3140.02"/> +<path fill="none" stroke="black" d="M4035.05,-2771.13C4021.71,-2780.96 4003.24,-2793.61 3986.86,-2804.18"/> 
-<polygon fill="black" stroke="black" points="7107.47,-3141.86 7110.18,-3131.62 7101.67,-3137.93 7107.47,-3141.86"/>+<polygon fill="black" stroke="black" points="3984.58,-2801.49 3978.03,-2809.81 3988.34,-2807.39 3984.58,-2801.49"/>
 </g> </g>
-<!-- pnj:thomastelestrian --> +<!-- lore:gangs:jerenton&#45;&gt;lore:lieux:munich --> 
-<g id="node100" class="node"><title>pnj:thomastelestrian</title> +<g id="edge512" class="edge"><title>lore:gangs:jerenton&#45;&gt;lore:lieux:munich</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfee" cx="7183cy="-2970" rx="81.7856" ry="18"/> +<path fill="none" stroke="blackd="M2093.11,-2837.61C2106.59,-2840.03 2120.78,-2842.36 2134,-2844 2402.43,-2877.29 2722.68,-2890.28 2869.85,-2894.82"/> 
-<text text-anchor="middlex="7183y="-2966.3" font-family="Times,serif" font-size="14.00">pnj:thomastelestrian</text>+<polygon fill="blackstroke="blackpoints="2870.04,-2898.33 2880.15,-2895.14 2870.26,-2891.33 2870.04,-2898.33"/>
 </g> </g>
-<!-- lore:corpos:telestrian&#45;&gt;pnj:thomastelestrian --> +<!-- lore:gangs:jerenton&#45;&gt;lore:gangs:1thundershock --> 
-<g id="edge168" class="edge"><title>lore:corpos:telestrian&#45;&gt;pnj:thomastelestrian</title> +<g id="edge513" class="edge"><title>lore:gangs:jerenton&#45;&gt;lore:gangs:1thundershock</title> 
-<path fill="none" stroke="black" d="M7142.83,-3172.78C7165.13,-3165.06 7188.36,-3152.48 7202,-3132 7229.35,-3090.96 7206.64,-3031.41 7192.07,-2997.42"/> +<path fill="none" stroke="black" d="M2019.62,-2808.05C2015.29,-2800.18 2010.82,-2790.62 2007.28,-2781.79"/> 
-<polygon fill="black" stroke="black" points="7195.24,-2995.93 7188.05,-2988.15 7188.81,-2998.71 7195.24,-2995.93"/>+<polygon fill="black" stroke="black" points="2010.51,-2780.42 2003.74,-2772.28 2003.95,-2782.87 2010.51,-2780.42"/>
 </g> </g>
-<!-- lore:lieux:tir_tairngire --> +<!-- lore:corpos:sset&#45;&gt;lore:lieux:tir_na_nog --> 
-<g id="node101" class="node"><title>lore:lieux:tir_tairngire</title> +<g id="edge144" class="edge"><title>lore:corpos:sset&#45;&gt;lore:lieux:tir_na_nog</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfeecx="7060" cy="-3042" rx="85.5853" ry="18"/> +<path fill="none" stroke="blackd="M589.047,-540.079C569.619,-579.582 527.76,-679.71 559,-756 576.957,-799.851 618.542,-836.584 648.388,-858.647"/> 
-<text text-anchor="middlex="7060y="-3038.3" font-family="Times,serif" font-size="14.00">lore:lieux:tir_tairngire</text>+<polygon fill="blackstroke="blackpoints="646.69,-861.737 656.85,-864.744 650.783,-856.058 646.69,-861.737"/>
 </g> </g>
-<!-- lore:corpos:telestrian&#45;&gt;lore:lieux:tir_tairngire --> +<!-- lore:corpos:sset&#45;&gt;pnj:brendanodunn --> 
-<g id="edge170" class="edge"><title>lore:corpos:telestrian&#45;&gt;lore:lieux:tir_tairngire</title> +<g id="edge145" class="edge"><title>lore:corpos:sset&#45;&gt;pnj:brendanodunn</title> 
-<path fill="none" stroke="black" d="M7057.93,-3168.76C7047.48,-3159.13 7036.99,-3146.07 7032,-3132 7024.69,-3111.39 7030.84,-3087.06 7039.45,-3069.05"/> +<path fill="none" stroke="black" d="M592.288,-503.951C589,-477.292 589,-424.115 589,-379 589,-379 589,-379 589,-305 589,-263.139 570.363,-217.691 558.808,-189.773"/> 
-<polygon fill="black" stroke="black" points="7042.78,-3070.23 7044.41,-3059.76 7036.61,-3066.93 7042.78,-3070.23"/>+<polygon fill="black" stroke="black" points="561.961,-188.236 554.919,-180.32 555.487,-190.899 561.961,-188.236"/>
 </g> </g>
-<!-- pnj:jamestelestrian&#45;&gt;lore:corpos:telestrian --> +<!-- lore:corpos:sset&#45;&gt;pnj:lilalee --> 
-<g id="edge243" class="edge"><title>pnj:jamestelestrian&#45;&gt;lore:corpos:telestrian</title> +<g id="edge143" class="edge"><title>lore:corpos:sset&#45;&gt;pnj:lilalee</title> 
-<path fill="none" stroke="black" d="M7121.55,-3132.28C7117.44,-3140.54 7111.61,-3150.6 7105.69,-3159.71"/> +<path fill="none" stroke="black" d="M543.623,-511.045C475.891,-497.914 361.474,-474.906 297.238,-461.505"/> 
-<polygon fill="black" stroke="black" points="7102.75,-3157.81 7100.05,-3168.05 7108.55,-3161.73 7102.75,-3157.81"/>+<polygon fill="black" stroke="black" points="297.879,-458.063 287.374,-459.44 296.444,-464.915 297.879,-458.063"/>
 </g> </g>
-<!-- pnj:jamestelestrian&#45;&gt;pnj:thomastelestrian --> +<!-- pnj:lilalee&#45;&gt;pj:eidolon --> 
-<g id="edge245" class="edge"><title>pnj:jamestelestrian&#45;&gt;pnj:thomastelestrian</title> +<g id="edge238" class="edge"><title>pnj:lilalee&#45;&gt;pj:eidolon</title> 
-<path fill="none" stroke="black" d="M7128.68,-3095.76C7133.49,-3085.6 7140.74,-3072.35 7146,-3060 7154.69,-3039.6 7162.09,-3015.57 7168.48,-2997.62"/> +<path fill="none" stroke="black" d="M230.831,-466.352C219.238,-476.274 204.683,-489.926 194,-504 125.867,-593.761 94,-624.31 94,-737 94,-2827 94,-2827 94,-2827 94,-2947.4 69.1236,-2975.81 62,-3096 61.0533,-3111.97 51.3716,-3120.04 62,-3132 87.6354,-3160.85 339.354,-3176.69 453.833,-3182.46"/> 
-<polygon fill="black" stroke="black" points="7171.82,-2998.68 7172.02,-2988.09 7165.26,-2996.24 7171.82,-2998.68"/>+<polygon fill="black" stroke="black" points="453.981,-3185.97 464.142,-3182.97 454.327,-3178.98 453.981,-3185.97"/>
 </g> </g>
-<!-- pnj:jamestelestrian&#45;&gt;lore:lieux:tir_tairngire --> +<!-- pnj:lilalee&#45;&gt;lore:lieux:tir_na_nog --> 
-<g id="edge244" class="edge"><title>pnj:jamestelestrian&#45;&gt;lore:lieux:tir_tairngire</title> +<g id="edge240" class="edge"><title>pnj:lilalee&#45;&gt;lore:lieux:tir_na_nog</title> 
-<path fill="none" stroke="black" d="M7104.52,-3096.41C7095.48,-3087.82 7085.22,-3077.16 7076.74,-3067.63"/> +<path fill="none" stroke="black" d="M259.922,-467.79C265.701,-478.022 272.841,-491.494 278,-504 292.356,-538.798 348.778,-803.09 377,-828 408.236,-855.57 513.504,-869.186 591.678,-875.636"/> 
-<polygon fill="black" stroke="black" points="7079.3,-3065.23 7070.11,-3059.96 7074,-3069.81 7079.3,-3065.23"/>+<polygon fill="black" stroke="black" points="591.787,-879.156 602.034,-876.463 592.344,-872.178 591.787,-879.156"/>
 </g> </g>
-<!-- pnj:thomastelestrian&#45;&gt;lore:corpos:telestrian --> +<!-- pnj:lilalee&#45;&gt;lore:organisations:danann_o_dunn --> 
-<g id="edge389" class="edge"><title>pnj:thomastelestrian&#45;&gt;lore:corpos:telestrian</title> +<g id="edge242" class="edge"><title>pnj:lilalee&#45;&gt;lore:organisations:danann_o_dunn</title> 
-<path fill="none" stroke="black" d="M7198.57,-2988.15C7219.67,-3019.48 7250.05,-3086.9 7220,-3132 7206.84,-3151.75 7184.78,-3164.15 7162.18,-3171.93"/> +<path fill="none" stroke="black" d="M244.288,-431.951C241,-405.292 241,-352.115 241,-307 241,-307 241,-307 241,-233 241,-176.888 297.124,-135.057 340.814,-111.822"/> 
-<polygon fill="black" stroke="black" points="7160.97,-3168.64 7152.48,-3174.99 7163.07,-3175.32 7160.97,-3168.64"/>+<polygon fill="black" stroke="black" points="342.624,-114.827 349.924,-107.147 339.429,-108.599 342.624,-114.827"/>
 </g> </g>
-<!-- pnj:thomastelestrian&#45;&gt;pnj:jamestelestrian --> +<!-- pnj:lilalee&#45;&gt;pnj:brendanodunn --> 
-<g id="edge390" class="edge"><title>pnj:thomastelestrian&#45;&gt;pnj:jamestelestrian</title> +<g id="edge239" class="edge"><title>pnj:lilalee&#45;&gt;pnj:brendanodunn</title> 
-<path fill="none" stroke="black" d="M7185.37,-2988.09C7182.87,-3006.27 7174.35,-3035.71 7164,-3060 7160.03,-3069.31 7154.94,-3079.13 7149.65,-3087.76"/> +<path fill="none" stroke="black" d="M265.567,-432.666C293.8,-403.196 355.571,-339.414 410,-288 448.693,-251.451 495.158,-210.868 523.886,-186.142"/> 
-<polygon fill="black" stroke="black" points="7146.64,-3085.95 7144.1,-3096.24 7152.5,-3089.78 7146.64,-3085.95"/>+<polygon fill="black" stroke="black" points="526.191,-188.776 531.497,-179.605 521.63,-183.466 526.191,-188.776"/>
 </g> </g>
-<!-- pnj:thomastelestrian&#45;&gt;lore:lieux:tir_tairngire --> +<!-- pnj:lilalee&#45;&gt;pnj:eidanodunn --> 
-<g id="edge388" class="edge"><title>pnj:thomastelestrian&#45;&gt;lore:lieux:tir_tairngire</title> +<g id="edge241" class="edge"><title>pnj:lilalee&#45;&gt;pnj:eidanodunn</title> 
-<path fill="none" stroke="black" d="M7160.02,-2987.39C7143.77,-2997.26 7121.65,-3009.92 7102.3,-3020.46"/> +<path fill="none" stroke="black" d="M279.067,-436.324C308.358,-424.907 353.939,-408.053 389.179,-395.573"/> 
-<polygon fill="black" stroke="black" points="7100.48,-3017.46 7093.34,-3025.29 7103.81,-3023.62 7100.48,-3017.46"/>+<polygon fill="black" stroke="black" points="390.553,-398.8 398.823,-392.176 388.228,-392.197 390.553,-398.8"/>
 </g> </g>
-<!-- lore:lieux:tir_tairngire&#45;&gt;lore:corpos:telestrian --> +<!-- pnj:lilalee&#45;&gt;lore:corpos:sset --> 
-<g id="edge484" class="edge"><title>lore:lieux:tir_tairngire&#45;&gt;lore:corpos:telestrian</title> +<g id="edge237" class="edge"><title>pnj:lilalee&#45;&gt;lore:corpos:sset</title> 
-<path fill="none" stroke="black" d="M7057.57,-3060.09C7051.45,-3078.28 7041.39,-3107.73 7050,-3132 7053.59,-3142.11 7060.01,-3151.7 7066.43,-3159.87"/> +<path fill="none" stroke="black" d="M289.208,-458.03C349.715,-469.624 466.011,-492.938 537.383,-507.715"/> 
-<polygon fill="black" stroke="black" points="7063.93,-3162.34 7072.99,-3167.84 7069.33,-3157.89 7063.93,-3162.34"/>+<polygon fill="black" stroke="black" points="537.073,-511.225 547.575,-509.831 538.496,-504.371 537.073,-511.225"/>
 </g> </g>
-<!-- lore:lieux:tir_tairngire&#45;&gt;pnj:jamestelestrian --> +<!-- pnj:tutoko&#45;&gt;lore:lieux:munich --> 
-<g id="edge486" class="edge"><title>lore:lieux:tir_tairngire&#45;&gt;pnj:jamestelestrian</title> +<g id="edge146" class="edge"><title>pnj:tutoko&#45;&gt;lore:lieux:munich</title> 
-<path fill="none" stroke="black" d="M7081.44,-3059.55C7090.49,-3068.15 7100.77,-3078.82 7109.26,-3088.37"/> +<path fill="none" stroke="black" d="M3062.12,-2410.46C2997.76,-2459.64 2802.95,-2620.3 2739,-2808 2733.84,-2823.15 2729.15,-2831.39 2739,-2844 2756.12,-2865.92 2823.17,-2880.12 2877.34,-2888.25"/> 
-<polygon fill="black" stroke="black" points="7106.71,-3090.78 7115.9,-3096.05 7112.01,-3086.2 7106.71,-3090.78"/>+<polygon fill="black" stroke="black" points="2876.9,-2891.72 2887.3,-2889.7 2877.9,-2884.79 2876.9,-2891.72"/>
 </g> </g>
-<!-- lore:lieux:tir_tairngire&#45;&gt;pnj:thomastelestrian --> +<!-- pnj:tutoko&#45;&gt;lore:organisations:mi&#45;seng_lung --> 
-<g id="edge485" class="edge"><title>lore:lieux:tir_tairngire&#45;&gt;pnj:thomastelestrian</title> +<g id="edge147" class="edge"><title>pnj:tutoko&#45;&gt;lore:organisations:mi&#45;seng_lung</title> 
-<path fill="none" stroke="black" d="M7083.02,-3024.59C7099.33,-3014.68 7121.53,-3001.97 7140.92,-2991.42"/> +<path fill="none" stroke="black" d="M3111.71,-2408.36C3130.15,-2418.14 3153.98,-2431.65 3173,-2443.02"/> 
-<polygon fill="black" stroke="black" points="7142.74,-2994.41 7149.88,-2986.59 7139.42,-2988.25 7142.74,-2994.41"/>+<polygon fill="black" stroke="black" points="3171.27,-2446.06 3181.64,-2448.23 3174.89,-2440.07 3171.27,-2446.06"/>
 </g> </g>
-<!-- lore:lieux:genes&#45;&gt;lore:lieux:gemito --> +<!-- pnj:miguelvapparossi --> 
-<g id="edge211" class="edge"><title>lore:lieux:genes&#45;&gt;lore:lieux:gemito</title> +<g id="node104" class="node" onclick="click(evt)"><title>pnj:miguelvapparossi</title> 
-<path fill="none" stroke="blackd="M5015.37,-1476.15C5016.18,-1516.54 5017.63,-1614.63 5013,-1620 4996.49,-1639.13 4849.61,-1656.77 4757.46,-1666.09"/> +<ellipse fill="#e5b030" fill-opacity="0.733333" stroke="#e5b030stroke-opacity="0.733333" cx="6323" cy="-1962" rx="87.1846" ry="18"/> 
-<polygon fill="blackstroke="blackpoints="4756.94,-1662.62 4747.34,-1667.1 4757.64,-1669.59 4756.94,-1662.62"/>+<text text-anchor="middlex="6323y="-1958.3" font-family="Times,serif" font-size="14.00">pnj:miguelvapparossi</text>
 </g> </g>
-<!-- lore:lieux:genes&#45;&gt;lore:gangs:white_skullz --> +<!-- lore:corpos:esus --> 
-<g id="edge210" class="edge"><title>lore:lieux:genes&#45;&gt;lore:gangs:white_skullz</title> +<g id="node105" class="node" onclick="click(evt)"><title>lore:corpos:esus</title> 
-<path fill="none" stroke="blackd="M5032.62,-1440.41C5044.88,-1431.02 5061.51,-1419.15 5076.59,-1408.98"/> +<ellipse fill="#41c2b5" fill-opacity="0.733333" stroke="#41c2b5stroke-opacity="0.733333" cx="6323" cy="-2034" rx="70.3881" ry="18"/> 
-<polygon fill="blackstroke="blackpoints="5078.86,-1411.68 5085.25,-1403.23 5074.98,-1405.85 5078.86,-1411.68"/>+<text text-anchor="middlex="6323y="-2030.3" font-family="Times,serif" font-size="14.00">lore:corpos:esus</text>
 </g> </g>
-<!-- pj:johnmcgill&#45;&gt;lore:lieux:tir_na_nog --> +<!-- pnj:miguelvapparossi&#45;&gt;lore:corpos:esus --> 
-<g id="edge482" class="edge"><title>pj:johnmcgill&#45;&gt;lore:lieux:tir_na_nog</title> +<g id="edge148" class="edge"><title>pnj:miguelvapparossi&#45;&gt;lore:corpos:esus</title> 
-<path fill="none" stroke="black" d="M1410.25,-585.838C1323.39,-573.58 1145.7,-548.502 1042.99,-534.007"/> +<path fill="none" stroke="black" d="M6328.91,-1980.28C6329.71,-1988.03 6329.94,-1997.36 6329.59,-2006.01"/> 
-<polygon fill="black" stroke="black" points="1043.38,-530.527 1032.99,-532.595 1042.4,-537.459 1043.38,-530.527"/>+<polygon fill="black" stroke="black" points="6326.09,-2005.83 6328.88,-2016.05 6333.08,-2006.33 6326.09,-2005.83"/>
 </g> </g>
-<!-- pj:johnmcgill&#45;&gt;lore:lieux:munich --> +<!-- lore:corpos:esus&#45;&gt;lore:corpos:saeder&#45;krupp --> 
-<g id="edge481" class="edge"><title>pj:johnmcgill&#45;&gt;lore:lieux:munich</title> +<g id="edge408" class="edge"><title>lore:corpos:esus&#45;&gt;lore:corpos:saeder&#45;krupp</title> 
-<path fill="none" stroke="black" d="M1414.57,-604.303C1387.94,-611.88 1355.77,-625.191 1335,-648 1307.08,-678.658 1307,-695.533 1307,-737 1307,-1603 1307,-1603 1307,-1603 1307,-1716.4 1341.66,-1746.27 1411,-1836 1426.66,-1856.27 1441,-1851.24 1456,-1872 1480.7,-1906.2 1489,-1918.81 1489,-1961 1489,-2251 1489,-2251 1489,-2251 1489,-2338.78 1478.11,-2360.28 1475,-2448 1474.43,-2463.99 1463.99,-2472.39 1475,-2484 1506.87,-2517.58 2170.53,-2531.77 2405.46,-2535.75"/> +<path fill="none" stroke="black" d="M6256.17,-2028.34C6206.25,-2024.89 6136.36,-2020.08 6075,-2016 5817.05,-1998.84 5513.5,-1979.49 5357.38,-1969.59"/> 
-<polygon fill="black" stroke="black" points="2405.6,-2539.26 2415.65,-2535.93 2405.71,-2532.26 2405.6,-2539.26"/>+<polygon fill="black" stroke="black" points="5357.52,-1966.1 5347.32,-1968.96 5357.08,-1973.08 5357.52,-1966.1"/>
 </g> </g>
-<!-- pj:johnmcgill&#45;&gt;lore:organisations:ira --> +<!-- lore:corpos:esus&#45;&gt;pnj:miguelvapparossi --> 
-<g id="edge479" class="edge"><title>pj:johnmcgill&#45;&gt;lore:organisations:ira</title> +<g id="edge406" class="edge"><title>lore:corpos:esus&#45;&gt;pnj:miguelvapparossi</title> 
-<path fill="none" stroke="black" d="M1461.72,-575.871C1462.75,-551.67 1464.62,-507.211 1465.84,-478.393"/> +<path fill="none" stroke="black" d="M6317.12,-2016.05C6316.3,-2008.35 6316.06,-1999.03 6316.39,-1990.36"/> 
-<polygon fill="black" stroke="black" points="1469.35,-478.328 1466.27,-468.189 1462.35,-478.033 1469.35,-478.328"/>+<polygon fill="black" stroke="black" points="6319.89,-1990.49 6317.09,-1980.28 6312.91,-1990.01 6319.89,-1990.49"/>
 </g> </g>
-<!-- pj:johnmcgill&#45;&gt;lore:organisations:camorra --> +<!-- lore:corpos:esus&#45;&gt;lore:lieux:france --> 
-<g id="edge480" class="edge"><title>pj:johnmcgill&#45;&gt;lore:organisations:camorra</title> +<g id="edge407" class="edge"><title>lore:corpos:esus&#45;&gt;lore:lieux:france</title> 
-<path fill="none" stroke="black" d="M1517.11,-596.656C1841.88,-606.324 3513.73,-657.214 4878,-720 5855.83,-765.001 6193.05,-669.507 6478,-864 6578.07,-932.306 6595.62,-995.605 6582,-1116 6553.6,-1367.03 6441.27,-2062.16 6227,-2196 5819.74,-2450.38 5241.62,-2561.47 5022.66,-2596.21"/> +<path fill="none" stroke="black" d="M6256.72,-2027.92C6206.79,-2024.22 6136.63,-2019.3 6075,-2016 5660.62,-1993.81 5556.56,-1998.64 5142,-1980 4830.35,-1965.99 4752.72,-1956.27 4441,-1944 4148.89,-1932.5 3414.95,-1952.35 3126,-1908 2812.47,-1859.87 2520,-1848.2 2520,-1531 2520,-1531 2520,-1531 2520,-1457 2520,-1347 2611.86,-1240.49 2657.23,-1194.59"/> 
-<polygon fill="black" stroke="black" points="5021.84,-2592.79 5012.51,-2597.8 5022.93,-2599.71 5021.84,-2592.79"/>+<polygon fill="black" stroke="black" points="2659.74,-1197.04 2664.35,-1187.5 2654.8,-1192.08 2659.74,-1197.04"/>
 </g> </g>
-<!-- pj:johnmcgill&#45;&gt;lore:organisations:lotus_jaune --> +<!-- pnj:andreidelcassero --> 
-<g id="edge483" class="edge"><title>pj:johnmcgill&#45;&gt;lore:organisations:lotus_jaune</title> +<g id="node148" class="node" onclick="click(evt)"><title>pnj:andreidelcassero</title> 
-<path fill="none" stroke="blackd="M1466.9,-612.104C1467.7,-619.791 1467.94,-629.054 1467.6,-637.665"/> +<ellipse fill="#e5b030" fill-opacity="0.733333" stroke="#e5b030stroke-opacity="0.733333" cx="6513" cy="-1962" rx="84.485" ry="18"/> 
-<polygon fill="blackstroke="blackpoints="1464.11,-637.48 1466.92,-647.697 1471.09,-637.96 1464.11,-637.48"/>+<text text-anchor="middlex="6513y="-1958.3" font-family="Times,serif" font-size="14.00">pnj:andreidelcassero</text>
 </g> </g>
-<!-- pnj:bartek&#45;&gt;lore:lieux:sox --> +<!-- lore:corpos:esus&#45;&gt;pnj:andreidelcassero --> 
-<g id="edge469" class="edge"><title>pnj:bartek&#45;&gt;lore:lieux:sox</title> +<g id="edge409" class="edge"><title>lore:corpos:esus&#45;&gt;pnj:andreidelcassero</title> 
-<path fill="none" stroke="black" d="M5273.86,-1969.72C5357.2,-1983.15 5536.38,-2012.35 5542,-2016 5598.44,-2052.66 5669.73,-2214.07 5710,-2268 5722.46,-2284.69 5732.91,-2284.42 5740,-2304 5810.22,-2497.94 5674.18,-2592.74 5498,-2700 5440.91,-2734.75 5408.16,-2699.76 5352,-2736 5327.51,-2751.81 5307.9,-2779.16 5295.74,-2799.39"/> +<path fill="none" stroke="black" d="M6357.66,-2018.15C6385.91,-2007.24 6426.17,-1992.37 6458.68,-1980.82"/> 
-<polygon fill="black" stroke="black" points="5292.67,-2797.7 5290.69,-2808.11 5298.73,-2801.21 5292.67,-2797.7"/>+<polygon fill="black" stroke="black" points="6460.23,-1983.98 6468.49,-1977.35 6457.9,-1977.38 6460.23,-1983.98"/>
 </g> </g>
-<!-- pnj:bartek&#45;&gt;lore:organisations:rote_kasern --> +<!-- pnj:rolf&#45;&gt;lore:lieux:munich --> 
-<g id="edge466" class="edge"><title>pnj:bartek&#45;&gt;lore:organisations:rote_kasern</title> +<g id="edge151" class="edge"><title>pnj:rolf&#45;&gt;lore:lieux:munich</title> 
-<path fill="none" stroke="black" d="M5225.81,-1980.1C5204.41,-2039.61 5134.25,-2237.56 5124,-2304 5121.56,-2319.81 5119.67,-2324.6 5124,-2340 5129.08,-2358.05 5138.64,-2358.75 5146,-2376 5171.98,-2436.88 5173.05,-2454.72 5184,-2520 5191.8,-2566.49 5194.53,-2621.38 5195.49,-2653.57"/> +<path fill="none" stroke="black" d="M4347.86,-1892.35C4270.12,-1897.4 4094,-1921.16 4094,-2033 4094,-2179 4094,-2179 4094,-2179 4094,-2203.48 3881.42,-2536.99 3866,-2556 3836.49,-2592.39 3830.22,-2605.73 3789,-2628 3729.44,-2660.17 3705.93,-2644.86 3641,-2664 3617.64,-2670.89 3453.44,-2721.34 3434,-2736 3387.14,-2771.34 3408.23,-2813.65 3358,-2844 3304.66,-2876.23 3134.19,-2889.16 3031.56,-2894.12"/> 
-<polygon fill="black" stroke="black" points="5192,-2654.05 5195.76,-2663.96 5198.99,-2653.87 5192,-2654.05"/>+<polygon fill="black" stroke="black" points="3031.36,-2890.62 3021.54,-2894.59 3031.69,-2897.62 3031.36,-2890.62"/>
 </g> </g>
-<!-- pnj:bartek&#45;&gt;lore:lieux:munich --> +<!-- pnj:rolf&#45;&gt;lore:corpos:saeder&#45;krupp --> 
-<g id="edge465" class="edge"><title>pnj:bartek&#45;&gt;lore:lieux:munich</title> +<g id="edge150" class="edge"><title>pnj:rolf&#45;&gt;lore:corpos:saeder&#45;krupp</title> 
-<path fill="none" stroke="black" d="M5188.01,-1967.66C4869.87,-2001.7 2928.13,-2215.19 2725,-2376 2684.23,-2408.28 2719.03,-2449.63 2680,-2484 2648.64,-2511.62 2604.16,-2524.98 2565.8,-2531.39"/> +<path fill="none" stroke="black" d="M4418.65,-1895.52C4445.03,-1899.38 4481.81,-1904.8 4514,-1908 4785.57,-1935.01 4855.24,-1918.94 5127,-1944 5140.53,-1945.25 5154.8,-1946.79 5168.69,-1948.44"/> 
-<polygon fill="black" stroke="black" points="2565.03,-2527.97 2555.67,-2532.95 2566.09,-2534.89 2565.03,-2527.97"/>+<polygon fill="black" stroke="black" points="5168.37,-1951.93 5178.72,-1949.65 5169.21,-1944.98 5168.37,-1951.93"/>
 </g> </g>
-<!-- pnj:bartek&#45;&gt;lore:corpos:saeder&#45;krupp --> +<!-- pnj:rolf&#45;&gt;lore:lieux:zurich --> 
-<g id="edge464" class="edge"><title>pnj:bartek&#45;&gt;lore:corpos:saeder&#45;krupp</title> +<g id="edge152" class="edge"><title>pnj:rolf&#45;&gt;lore:lieux:zurich</title> 
-<path fill="none" stroke="black" d="M5277.93,-1964.65C5361.07,-1970.34 5528,-1995.42 5528,-2105 5528,-2179 5528,-2179 5528,-2179 5528,-2235.19 5542.77,-2247.97 5547,-2304 5548.21,-2319.95 5550.61,-2324.41 5547,-2340 5530.57,-2410.91 5397.43,-2671.04 5355,-2700 5300.16,-2737.43 5271.28,-2710.42 5210,-2736 5139.87,-2765.27 5064,-2749.01 5064,-2825 5064,-2971 5064,-2971 5064,-2971 5064,-3084.68 5435.24,-3107.84 5627.09,-3112.23"/> +<path fill="none" stroke="black" d="M4418.08,-1883.55C4442.28,-1879.84 4475.57,-1875.06 4505,-1872 4563.71,-1865.89 4987.36,-1870.84 5035,-1836 5159.01,-1745.31 5224,-1324.63 5224,-1171 5224,-1171 5224,-1171 5224,-1025 5224,-988.86 5319.64,-751.695 5337,-720 5389.74,-623.722 5486,-632.779 5486,-523 5486,-523 5486,-523 5486,-449 5486,-357.177 5790.05,-322.825 5934.49,-311.687"/> 
-<polygon fill="black" stroke="black" points="5627.14,-3115.73 5637.21,-3112.44 5627.29,-3108.73 5627.14,-3115.73"/>+<polygon fill="black" stroke="black" points="5934.9,-315.166 5944.61,-310.925 5934.37,-308.186 5934.9,-315.166"/>
 </g> </g>
-<!-- pnj:bartek&#45;&gt;lore:objets:nanoforge --> +<!-- pnj:rolf&#45;&gt;lore:planques:box_m2 --> 
-<g id="edge472" class="edge"><title>pnj:bartek&#45;&gt;lore:objets:nanoforge</title> +<g id="edge154" class="edge"><title>pnj:rolf&#45;&gt;lore:planques:box_m2</title> 
-<path fill="none" stroke="black" d="M5254.93,-1946.37C5268.4,-1936.81 5284.9,-1923.29 5296,-1908 5376.88,-1796.6 5384.21,-1755.23 5410,-1620 5437.34,-1476.67 5474.07,-1383.1 5357,-1296 5311.57,-1262.2 3375.56,-1262.61 3319,-1260 3272.84,-1257.87 3221.51,-1254.17 3179.26,-1250.75"/> +<path fill="none" stroke="black" d="M4371.41,-1872.85C4349.97,-1836.81 4312.41,-1751.17 4330,-1728 4344.24,-1709.24 4398.01,-1695.35 4446.13,-1686.5"/> 
-<polygon fill="black" stroke="black" points="3179.53,-1247.26 3169.28,-1249.94 3178.97,-1254.24 3179.53,-1247.26"/>+<polygon fill="black" stroke="black" points="4446.75,-1689.94 4455.98,-1684.74 4445.52,-1683.05 4446.75,-1689.94"/>
 </g> </g>
-<!-- pnj:bartek&#45;&gt;pj:splenters --> +<!-- pnj:rolf&#45;&gt;pnj:ilona --> 
-<g id="edge468" class="edge"><title>pnj:bartek&#45;&gt;pj:splenters</title> +<g id="edge149" class="edge"><title>pnj:rolf&#45;&gt;pnj:ilona</title> 
-<path fill="none" stroke="black" d="M5274.94,-1955.29C5327.45,-1947.64 5418.65,-1932.14 5494,-1908 5667.72,-1852.34 5718.64,-1825.45 5843,-1692 5941.53,-1586.27 5967.35,-1546.05 5994,-1404 5996.95,-1388.27 6001.08,-1382.35 5994,-1368 5970.7,-1320.81 5943.24,-1326 5900,-1296 5850.45,-1261.63 5841.66,-1244.63 5785,-1224 5567.83,-1144.94 5499.92,-1175.5 5270,-1152 5024.1,-1126.87 4959.74,-1150.65 4715,-1116 4493.77,-1084.68 4443.28,-1050.93 4224,-1008 4038.57,-971.695 3992.98,-955.089 3805,-936 3310.84,-885.821 3184.34,-918.871 2688,-900 2572.65,-895.614 2438.06,-889.492 2361.55,-885.917"/> +<path fill="none" stroke="black" d="M4408.81,-1876.81C4414.1,-1875.07 4419.68,-1873.39 4425,-1872 4509.41,-1849.9 4545.44,-1884.46 4618,-1836 4641.01,-1820.63 4656.97,-1792.71 4668.05,-1772.23"/> 
-<polygon fill="black" stroke="black" points="2361.3,-882.401 2351.15,-885.43 2360.97,-889.394 2361.3,-882.401"/>+<polygon fill="black" stroke="black" points="4671.14,-1773.87 4672.81,-1763.41 4664.98,-1770.55 4671.14,-1773.87"/>
 </g> </g>
-<!-- pnj:bartek&#45;&gt;pnj:niddon --> +<!-- pnj:rolf&#45;&gt;pnj:othmar --> 
-<g id="edge470" class="edge"><title>pnj:bartek&#45;&gt;pnj:niddon</title> +<g id="edge153" class="edge"><title>pnj:rolf&#45;&gt;pnj:othmar</title> 
-<path fill="none" stroke="black" d="M5268.81,-1950.94C5335.41,-1933.37 5478.73,-1893.38 5590,-1836 5775.03,-1740.58 5868,-1667.18 5868,-1459 5868,-1459 5868,-1459 5868,-1313 5868,-1211.22 5755.96,-1247.78 5657,-1224 5332.38,-1145.99 4267.98,-1109.03 4005.07,-1100.8"/> +<path fill="none" stroke="black" d="M4409.77,-1877.28C4439.27,-1865.4 4487.83,-1846.97 4523.65,-1834.02"/> 
-<polygon fill="black" stroke="black" points="4005.07,-1097.3 3994.97,-1100.49 4004.85,-1104.3 4005.07,-1097.3"/>+<polygon fill="black" stroke="black" points="4525.16,-1837.2 4533.39,-1830.52 4522.8,-1830.61 4525.16,-1837.2"/>
 </g> </g>
-<!-- pnj:bartek&#45;&gt;lore:organisations:swamp_rats --> +<!-- pnj:ilona&#45;&gt;lore:lieux:munich --> 
-<g id="edge467" class="edge"><title>pnj:bartek&#45;&gt;lore:organisations:swamp_rats</title> +<g id="edge471" class="edge"><title>pnj:ilona&#45;&gt;lore:lieux:munich</title> 
-<path fill="none" stroke="black" d="M5187,-1966.24C5035.47,-1976.76 4540.92,-2010.14 4312.08,-2025.33"/> +<path fill="none" stroke="black" d="M4689.45,-1764.13C4696.46,-1794.88 4706.97,-1860.6 4683,-1908 4647.06,-1979.07 4579.86,-1947.05 4540,-2016 4440.12,-2188.77 4536,-2265.44 4536,-2465 4536,-2755 4536,-2755 4536,-2755 4536,-2802.7 4517.72,-2820.87 4476,-2844 4412.53,-2879.18 3340.3,-2892.97 3032.81,-2896.21"/> 
-<polygon fill="black" stroke="black" points="4311.8,-2021.85 4302.05,-2026 4312.26,-2028.83 4311.8,-2021.85"/>+<polygon fill="black" stroke="black" points="3032.6,-2892.71 3022.63,-2896.31 3032.67,-2899.71 3032.6,-2892.71"/>
 </g> </g>
-<!-- pnj:bartek&#45;&gt;lore:objets:caisse_de_ruthenium --> +<!-- pnj:ilona&#45;&gt;lore:corpos:saeder&#45;krupp --> 
-<g id="edge471" class="edge"><title>pnj:bartek&#45;&gt;lore:objets:caisse_de_ruthenium</title> +<g id="edge474" class="edge"><title>pnj:ilona&#45;&gt;lore:corpos:saeder&#45;krupp</title> 
-<path fill="none" stroke="black" d="M5215.89,-1945.12C5207.02,-1936.37 5195.82,-1925.33 5185.86,-1915.51"/> +<path fill="none" stroke="black" d="M4702.66,-1762.52C4721.38,-1782.67 4751.82,-1817.45 4786,-1836 4848.92,-1870.14 4873.61,-1854.38 4943,-1872 5032.87,-1894.83 5136.11,-1924.21 5197.96,-1942.84"/> 
-<polygon fill="black" stroke="black" points="5188.12,-1912.82 5178.54,-1908.29 5183.2,-1917.81 5188.12,-1912.82"/>+<polygon fill="black" stroke="black" points="5197.31,-1946.3 5207.89,-1945.84 5199.33,-1939.6 5197.31,-1946.3"/>
 </g> </g>
-<!-- pnj:michaelcarpenter&#45;&gt;lore:corpos:ares --> +<!-- pnj:ilona&#45;&gt;lore:lieux:zurich --> 
-<g id="edge189" class="edge"><title>pnj:michaelcarpenter&#45;&gt;lore:corpos:ares</title> +<g id="edge470" class="edge"><title>pnj:ilona&#45;&gt;lore:lieux:zurich</title> 
-<path fill="none" stroke="black" d="M2223.33,-1115.55C2233.46,-1124.23 2245.09,-1135.04 2254.73,-1144.66"/> +<path fill="none" stroke="black" d="M4700.65,-1729.35C4722.98,-1706.55 4764.54,-1662.29 4794,-1620 4919.08,-1440.5 4975.87,-1399.98 5030,-1188 5049.79,-1110.49 5057.23,-1083.22 5030,-1008 5008.73,-949.25 4961.27,-958.75 4940,-900 4922.91,-852.807 4942.89,-832.153 4973,-792 5149.01,-557.327 5202.5,-475.843 5472,-360 5552.87,-325.24 5804.35,-312.954 5932.41,-308.877"/> 
-<polygon fill="black" stroke="black" points="2252.47,-1147.35 2261.96,-1152.05 2257.48,-1142.46 2252.47,-1147.35"/>+<polygon fill="black" stroke="black" points="5932.64,-312.371 5942.53,-308.563 5932.43,-305.374 5932.64,-312.371"/>
 </g> </g>
-<!-- pnj:michaelcarpenter&#45;&gt;pnj:milenasimons --> +<!-- pnj:ilona&#45;&gt;lore:planques:box_m2 --> 
-<g id="edge188" class="edge"><title>pnj:michaelcarpenter&#45;&gt;pnj:milenasimons</title> +<g id="edge472" class="edge"><title>pnj:ilona&#45;&gt;lore:planques:box_m2</title> 
-<path fill="none" stroke="black" d="M2227.99,-1080.94C2245.16,-1071.09 2267.32,-1058.37 2285.82,-1047.76"/> +<path fill="none" stroke="black" d="M4654.82,-1733.75C4630.06,-1723.42 4595,-1707.85 4568.12,-1695.33"/> 
-<polygon fill="black" stroke="black" points="2287.63,-1050.76 2294.56,-1042.74 2284.15,-1044.68 2287.63,-1050.76"/>+<polygon fill="black" stroke="black" points="4569.52,-1692.12 4558.98,-1691.05 4566.55,-1698.46 4569.52,-1692.12"/>
 </g> </g>
-<!-- pnj:milenasimons&#45;&gt;lore:corpos:ares --> +<!-- pnj:ilona&#45;&gt;pnj:rolf --> 
-<g id="edge500" class="edge"><title>pnj:milenasimons&#45;&gt;lore:corpos:ares</title> +<g id="edge473" class="edge"><title>pnj:ilona&#45;&gt;pnj:rolf</title> 
-<path fill="none" stroke="black" d="M2323.63,-1044.16C2320.51,-1062.15 2311.57,-1091.2 2303,-1116 2299.92,-1124.91 2296.34,-1134.59 2292.59,-1143.2"/> +<path fill="none" stroke="black" d="M4685.06,-1764.13C4679.29,-1784.66 4662.23,-1818.48 4636,-1836 4563.44,-1884.46 4527.41,-1849.9 4443,-1872 4437.06,-1873.55 4430.81,-1875.46 4424.66,-1877.42"/> 
-<polygon fill="black" stroke="black" points="2289.37,-1141.84 2288.31,-1152.38 2295.71,-1144.8 2289.37,-1141.84"/>+<polygon fill="black" stroke="black" points="4423.55,-1874.1 4415.12,-1880.52 4425.71,-1880.76 4423.55,-1874.1"/>
 </g> </g>
-<!-- lore:corpos:horizon --> +<!-- pnj:ilona&#45;&gt;pnj:othmar --> 
-<g id="node107" class="node"><title>lore:corpos:horizon</title> +<g id="edge469" class="edge"><title>pnj:ilona&#45;&gt;pnj:othmar</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfeecx="5739" cy="-3186" rx="81.4863" ry="18"/> +<path fill="none" stroke="blackd="M4665.78,-1762.01C4649.55,-1772.6 4626.07,-1786.85 4606.24,-1798.19"/> 
-<text text-anchor="middlex="5739y="-3182.3" font-family="Times,serif" font-size="14.00">lore:corpos:horizon</text>+<polygon fill="blackstroke="blackpoints="4604.41,-1795.2 4597.42,-1803.17 4607.85,-1801.3 4604.41,-1795.2"/>
 </g> </g>
-<!-- lore:corpos:horizon&#45;&gt;lore:corpos:saeder&#45;krupp --> +<!-- pnj:othmar&#45;&gt;lore:lieux:munich --> 
-<g id="edge190" class="edge"><title>lore:corpos:horizon&#45;&gt;lore:corpos:saeder&#45;krupp</title> +<g id="edge559" class="edge"><title>pnj:othmar&#45;&gt;lore:lieux:munich</title> 
-<path fill="none" stroke="black" d="M5739,-3167.7C5739,-3159.98 5739,-3150.71 5739,-3142.11"/> +<path fill="none" stroke="black" d="M4522.4,-1823.98C4332.52,-1844.37 3625.18,-1921.56 3583,-1944 3533.74,-1970.21 3499.88,-1999.58 3519,-2052 3569.15,-2189.5 3680.85,-2166.5 3731,-2304 3748.29,-2351.4 3735.33,-2380.39 3696,-2412 3642.56,-2454.95 3609.27,-2421.58 3546,-2448 3518,-2459.69 3515.41,-2471 3488,-2484 3455.71,-2499.32 3208.46,-2565.04 3185,-2592 3158.45,-2622.51 3166,-2640.55 3166,-2681 3166,-2755 3166,-2755 3166,-2755 3166,-2795.97 3170.86,-2814.93 3142,-2844 3113.07,-2873.14 3069.6,-2886.63 3031.44,-2892.73"/> 
-<polygon fill="black" stroke="black" points="5742.5,-3142.1 5739,-3132.1 5735.5,-3142.1 5742.5,-3142.1"/>+<polygon fill="black" stroke="black" points="3030.75,-2889.29 3021.36,-2894.19 3031.76,-2896.22 3030.75,-2889.29"/>
 </g> </g>
-<!-- pnj:fgf&#45;&gt;lore:lieux:munich --> +<!-- pnj:othmar&#45;&gt;lore:corpos:saeder&#45;krupp --> 
-<g id="edge271" class="edge"><title>pnj:fgf&#45;&gt;lore:lieux:munich</title> +<g id="edge558" class="edge"><title>pnj:othmar&#45;&gt;lore:corpos:saeder&#45;krupp</title> 
-<path fill="none" stroke="black" d="M1877.08,-972.26C1877.6,-1034.21 1861,-1245.27 1861,-1313 1861,-1459 1861,-1459 1861,-1459 1861,-2867.26 1854.99,-2410.19 1956,-2484 1991.85,-2510.19 2267.77,-2526.55 2407.12,-2533.35"/> +<path fill="none" stroke="black" d="M4611.57,-1827.14C4725.99,-1850.04 5040.62,-1915.28 5182.3,-1945.41"/> 
-<polygon fill="black" stroke="black" points="2407.17,-2536.86 2417.32,-2533.85 2407.5,-2529.87 2407.17,-2536.86"/>+<polygon fill="black" stroke="black" points="5181.69,-1948.85 5192.2,-1947.51 5183.14,-1942.01 5181.69,-1948.85"/>
 </g> </g>
-<!-- pnj:fgf&#45;&gt;pj:eidolon --> +<!-- pnj:othmar&#45;&gt;lore:lieux:zurich --> 
-<g id="edge272" class="edge"><title>pnj:fgf&#45;&gt;pj:eidolon</title> +<g id="edge560" class="edge"><title>pnj:othmar&#45;&gt;lore:lieux:zurich</title> 
-<path fill="none" stroke="black" d="M1871.78,-972.07C1857.03,-1049.75 1795.44,-1367.65 1769,-1404 1651,-1566.24 1137.23,-1728.53 997,-1872 906.679,-1964.41 946.492,-2035.86 852,-2124 833.652,-2141.11 808.749,-2153.78 787.378,-2162.44"/> +<path fill="none" stroke="black" d="M4580.46,-1800.23C4638.57,-1714.82 4899.39,-1326.75 4937,-1188 4941.19,-1172.56 4939.21,-1167.85 4937,-1152 4915.24,-995.942 4840,-968.568 4840,-811 4840,-811 4840,-811 4840,-449 4840,-338.606 5672.15,-313.411 5932.26,-308.232"/> 
-<polygon fill="black" stroke="black" points="785.904,-2159.25 777.844,-2166.13 788.433,-2165.78 785.904,-2159.25"/>+<polygon fill="black" stroke="black" points="5932.45,-311.729 5942.38,-308.035 5932.31,-304.73 5932.45,-311.729"/>
 </g> </g>
-<!-- pnj:fgf&#45;&gt;pnj:jinks --> +<!-- pnj:othmar&#45;&gt;lore:planques:box_m2 --> 
-<g id="edge270" class="edge"><title>pnj:fgf&#45;&gt;pnj:jinks</title> +<g id="edge561" class="edge"><title>pnj:othmar&#45;&gt;lore:planques:box_m2</title> 
-<path fill="none" stroke="black" d="M1869.12,-936.055C1868.3,-928.346 1868.06,-919.027 1868.39,-910.364"/> +<path fill="none" stroke="black" d="M4559.7,-1800.15C4550.29,-1775.94 4537.35,-1731.05 4531.2,-1702.13"/> 
-<polygon fill="black" stroke="black" points="1871.89,-910.491 1869.09,-900.275 1864.91,-910.012 1871.89,-910.491"/>+<polygon fill="black" stroke="black" points="4534.63,-1701.41 4529.27,-1692.27 4527.76,-1702.75 4534.63,-1701.41"/>
 </g> </g>
-<!-- pnj:janusibherin&#45;&gt;lore:lieux:camargue --> +<!-- pnj:othmar&#45;&gt;pnj:rolf --> 
-<g id="edge252" class="edge"><title>pnj:janusibherin&#45;&gt;lore:lieux:camargue</title> +<g id="edge555" class="edge"><title>pnj:othmar&#45;&gt;pnj:rolf</title> 
-<path fill="none" stroke="black" d="M5557.04,-1749.34C5435.83,-1755.84 5171.76,-1780.28 4972,-1872 4831.71,-1936.41 4805.28,-1975.1 4700,-2088 4658.74,-2132.25 4392,-2476.5 4392,-2537 4392,-3043 4392,-3043 4392,-3043 4392,-3084.37 4407.23,-3130.28 4418.41,-3158.39"/> +<path fill="none" stroke="black" d="M4539.15,-1832.35C4507.68,-1844.93 4458.21,-1863.64 4423.54,-1876.07"/> 
-<polygon fill="black" stroke="black" points="4415.28,-3159.98 4422.31,-3167.91 4421.76,-3157.33 4415.28,-3159.98"/>+<polygon fill="black" stroke="black" points="4421.99,-1872.91 4413.74,-1879.56 4424.33,-1879.51 4421.99,-1872.91"/>
 </g> </g>
-<!-- pnj:janusibherin&#45;&gt;lore:lieux:gemito --> +<!-- pnj:othmar&#45;&gt;pnj:ilona --> 
-<g id="edge250" class="edge"><title>pnj:janusibherin&#45;&gt;lore:lieux:gemito</title> +<g id="edge556" class="edge"><title>pnj:othmar&#45;&gt;pnj:ilona</title> 
-<path fill="none" stroke="black" d="M5559.5,-1740.27C5392.2,-1727.81 4939.86,-1694.13 4759.12,-1680.67"/> +<path fill="none" stroke="black" d="M4589.02,-1801.46C4605.68,-1790.64 4629.58,-1776.16 4649.43,-1764.86"/> 
-<polygon fill="black" stroke="black" points="4759.14,-1677.16 4748.9,-1679.91 4758.62,-1684.14 4759.14,-1677.16"/>+<polygon fill="black" stroke="black" points="4651.23,-1767.87 4658.23,-1759.91 4647.79,-1761.77 4651.23,-1767.87"/>
 </g> </g>
-<!-- pnj:janusibherin&#45;&gt;lore:lieux:zurich --> +<!-- lore:corpos:docwagon --> 
-<g id="edge251" class="edge"><title>pnj:janusibherin&#45;&gt;lore:lieux:zurich</title> +<g id="node154" class="node" onclick="click(evt)"><title>lore:corpos:docwagon</title> 
-<path fill="none" stroke="blackd="M5641.25,-1728.67C5677.98,-1695.58 5763.04,-1617.82 5830,-1548 5888.86,-1486.62 5915.37,-1478.71 5956,-1404 6022.09,-1282.48 6018,-1237.33 6018,-1099 6018,-1099 6018,-1099 6018,-953 6018,-911.633 6033.23,-865.722 6044.41,-837.605"/> +<ellipse fill="#41c2b5" fill-opacity="0.733333" stroke="#41c2b5stroke-opacity="0.733333" cx="4440" cy="-1746" rx="92.0841" ry="18"/> 
-<polygon fill="blackstroke="blackpoints="6047.76,-838.673 6048.31,-828.093 6041.28,-836.019 6047.76,-838.673"/>+<text text-anchor="middlex="4440y="-1742.3" font-family="Times,serif" font-size="14.00">lore:corpos:docwagon</text>
 </g> </g>
-<!-- pnj:janusibherin&#45;&gt;lore:corpos:saeder&#45;krupp --> +<!-- pnj:othmar&#45;&gt;lore:corpos:docwagon --> 
-<g id="edge249" class="edge"><title>pnj:janusibherin&#45;&gt;lore:corpos:saeder&#45;krupp</title> +<g id="edge557" class="edge"><title>pnj:othmar&#45;&gt;lore:corpos:docwagon</title> 
-<path fill="none" stroke="black" d="M5651.87,-1762.35C5700.25,-1792.3 5797.1,-1862.75 5854,-1944 5985.52,-2131.8 5944.08,-2219.59 5964,-2448 5974.23,-2565.34 5985.88,-2644.5 5882,-2700 5765.5,-2762.24 5685.12,-2647.58 5587,-2736 5476.35,-2835.72 5504.73,-3039.49 5521,-3060 5537.19,-3080.4 5594.47,-3093.69 5646.3,-3101.85"/> +<path fill="none" stroke="black" d="M4542.58,-1802.67C4524.22,-1792.7 4499.44,-1779.25 4478.83,-1768.07"/> 
-<polygon fill="black" stroke="black" points="5645.83,-3105.32 5656.24,-3103.37 5646.88,-3098.4 5645.83,-3105.32"/>+<polygon fill="black" stroke="black" points="4480.45,-1764.97 4469.99,-1763.28 4477.11,-1771.12 4480.45,-1764.97"/>
 </g> </g>
-<!-- pnj:ekhart&#45;&gt;lore:lieux:europe --> +<!-- lore:lieux:france&#45;&gt;lore:lieux:nancy --> 
-<g id="edge213" class="edge"><title>pnj:ekhart&#45;&gt;lore:lieux:europe</title> +<g id="edge395" class="edge"><title>lore:lieux:france&#45;&gt;lore:lieux:nancy</title> 
-<path fill="none" stroke="black" d="M5533.76,-1374.97C5555.1,-1367.06 5580.23,-1353.64 5593,-1332 5601.13,-1318.22 5601.19,-1309.74 5593,-1296 5583.22,-1279.6 5566.41,-1267.96 5549.45,-1259.86"/> +<path fill="none" stroke="black" d="M2702.66,-1187.39C2729.87,-1212.23 2776.8,-1259.57 2803.11,-1288.51"/> 
-<polygon fill="black" stroke="black" points="5550.61,-1256.55 5540.05,-1255.71 5547.79,-1262.95 5550.61,-1256.55"/>+<polygon fill="black" stroke="black" points="2800.67,-1291.04 2809.94,-1296.15 2805.88,-1286.37 2800.67,-1291.04"/>
 </g> </g>
-<!-- pnj:ekhart&#45;&gt;lore:corpos:saeder&#45;krupp --> +<!-- lore:lieux:france&#45;&gt;lore:lieux:europe --> 
-<g id="edge214" class="edge"><title>pnj:ekhart&#45;&gt;lore:corpos:saeder&#45;krupp</title> +<g id="edge394" class="edge"><title>lore:lieux:france&#45;&gt;lore:lieux:europe</title> 
-<path fill="none" stroke="black" d="M5499.04,-1404.13C5496.79,-1445.48 5474.75,-1552.36 5419,-1620 5282.71,-1785.34 5148.13,-1709.91 5008,-1872 4828.11,-2080.08 5038.05,-2237.51 4916,-2484 4859.21,-2598.68 4706,-2553.03 4706,-2681 4706,-2971 4706,-2971 4706,-2971 4706,-3047.37 4780.08,-3037.3 4853,-3060 4994.68,-3104.1 5421.74,-3111.91 5626.81,-3113.02"/> +<path fill="none" stroke="black" d="M2690.98,-1187.93C2701.73,-1218.36 2719.16,-1283.6 2748,-1332 2770.07,-1369.04 2779.86,-1376.42 2813,-1404 2836.47,-1423.53 2902.65,-1462.44 2930,-1476 2956.83,-1489.3 2987.86,-1501.55 3012.74,-1510.92"/> 
-<polygon fill="black" stroke="black" points="5626.98,-3116.52 5637,-3113.07 5627.02,-3109.52 5626.98,-3116.52"/>+<polygon fill="black" stroke="black" points="3011.7,-1514.27 3022.29,-1514.49 3014.15,-1507.71 3011.7,-1514.27"/>
 </g> </g>
-<!-- pnj:ekhart&#45;&gt;pnj:le_boss_d_ekhart --> +<!-- lore:lieux:paris --> 
-<g id="edge215" class="edge"><title>pnj:ekhart&#45;&gt;pnj:le_boss_d_ekhart</title> +<g id="node119" class="node" onclick="click(evt)"><title>lore:lieux:paris</title> 
-<path fill="none" stroke="blackd="M5490.64,-1368.05C5489.6,-1360.35 5489.09,-1351.03 5489.18,-1342.36"/> +<ellipse fill="#021dcd" fill-opacity="0.733333" stroke="#021dcdstroke-opacity="0.733333" cx="2496" cy="-1098" rx="62.2891" ry="18"/> 
-<polygon fill="blackstroke="blackpoints="5492.68,-1342.41 5489.58,-1332.28 5485.68,-1342.13 5492.68,-1342.41"/>+<text text-anchor="middlex="2496y="-1094.3" font-family="Times,serif" font-size="14.00">lore:lieux:paris</text>
 </g> </g>
-<!-- pnj:ekhart&#45;&gt;lore:lieux:pompei --> +<!-- lore:lieux:france&#45;&gt;lore:lieux:paris --> 
-<g id="edge216" class="edge"><title>pnj:ekhart&#45;&gt;lore:lieux:pompei</title> +<g id="edge393" class="edge"><title>lore:lieux:france&#45;&gt;lore:lieux:paris</title> 
-<path fill="none" stroke="black" d="M5498.5,-1404.17C5500.65,-1422.68 5505.67,-1452.63 5517,-1476 5521.93,-1486.18 5529.17,-1496.14 5536.3,-1504.63"/> +<path fill="none" stroke="black" d="M2640.68,-1155.5C2610.21,-1144.61 2569,-1129.17 2538.3,-1117.18"/> 
-<polygon fill="black" stroke="black" points="5533.8,-1507.08 5543.03,-1512.27 5539.05,-1502.45 5533.8,-1507.08"/>+<polygon fill="black" stroke="black" points="2539.32,-1113.82 2528.73,-1113.42 2536.76,-1120.33 2539.32,-1113.82"/>
 </g> </g>
-<!-- pnj:ekhart&#45;&gt;lore:planques:entrepot_np1 --> +<!-- lore:objets:caisse_de_ruthenium&#45;&gt;lore:corpos:saeder&#45;krupp --> 
-<g id="edge217" class="edge"><title>pnj:ekhart&#45;&gt;lore:planques:entrepot_np1</title> +<g id="edge216" class="edge"><title>lore:objets:caisse_de_ruthenium&#45;&gt;lore:corpos:saeder&#45;krupp</title> 
-<path fill="none" stroke="black" d="M5527.49,-1399.75C5548.74,-1409.78 5577.02,-1423.97 5599.3,-1435.71"/> +<path fill="none" stroke="black" d="M5138.43,-899.949C5156.01,-925.632 5186,-976.559 5186,-1025 5186,-1243 5186,-1243 5186,-1243 5186,-1440.71 5300,-1475.29 5300,-1673 5300,-1747 5300,-1747 5300,-1747 5300,-1783.41 5273.71,-1885.05 5260.46,-1933.99"/> 
-<polygon fill="black" stroke="black" points="5597.66,-1438.81 5608.14,-1440.41 5600.95,-1432.63 5597.66,-1438.81"/>+<polygon fill="black" stroke="black" points="5257.02,-1933.3 5257.77,-1943.87 5263.77,-1935.14 5257.02,-1933.3"/>
 </g> </g>
-<!-- pnj:ilona&#45;&gt;lore:lieux:munich --> +<!-- lore:objets:caisse_de_ruthenium&#45;&gt;lore:lieux:sox --> 
-<g id="edge286" class="edge"><title>pnj:ilona&#45;&gt;lore:lieux:munich</title> +<g id="edge215" class="edge"><title>lore:objets:caisse_de_ruthenium&#45;&gt;lore:lieux:sox</title> 
-<path fill="none" stroke="black" d="M4125.36,-2267.98C4130.4,-2311.91 4136.88,-2429.69 4071,-2484 4012.63,-2532.12 2885.38,-2536.68 2568.96,-2537.01"/> +<path fill="none" stroke="black" d="M5116.38,-900.347C5077.77,-968.199 4926.51,-1217.5 4728,-1332 4393.44,-1524.97 3152.37,-1698.04 2858.62,-1736.89"/> 
-<polygon fill="black" stroke="black" points="2568.49,-2533.51 2558.5,-2537.02 2568.5,-2540.51 2568.49,-2533.51"/>+<polygon fill="black" stroke="black" points="2858.03,-1733.43 2848.58,-1738.21 2858.95,-1740.37 2858.03,-1733.43"/>
 </g> </g>
-<!-- pnj:ilona&#45;&gt;lore:lieux:zurich --> +<!-- lore:objets:caisse_de_ruthenium&#45;&gt;pnj:karl_paolo --> 
-<g id="edge282" class="edge"><title>pnj:ilona&#45;&gt;lore:lieux:zurich</title> +<g id="edge218" class="edge"><title>lore:objets:caisse_de_ruthenium&#45;&gt;pnj:karl_paolo</title> 
-<path fill="none" stroke="black" d="M4106.35,-2233.44C4040.92,-2170.51 3805,-1926.2 3805,-1675 3805,-1675 3805,-1675 3805,-1457 3805,-1346.62 3811.47,-1300.55 3891,-1224 3946.75,-1170.34 4151.01,-1146.77 4222,-1116 4343.92,-1063.16 4367.8,-1036.44 4484,-972 4569.96,-924.327 4582.38,-890.625 4677,-864 4802.16,-828.78 5706.66,-815.181 5978.76,-811.86"/> +<path fill="none" stroke="black" d="M5165.5,-899.216C5181.19,-908.261 5197.95,-920.783 5209,-936 5364.55,-1150.25 5337.98,-1248.24 5361,-1512 5367.23,-1583.32 5356,-1601.41 5356,-1673 5356,-1747 5356,-1747 5356,-1747 5356,-1787.01 5357.21,-1833.35 5355.8,-1861.92"/> 
-<polygon fill="black" stroke="black" points="5978.99,-815.358 5988.94,-811.737 5978.9,-808.358 5978.99,-815.358"/>+<polygon fill="black" stroke="black" points="5352.3,-1861.74 5355.12,-1871.95 5359.28,-1862.21 5352.3,-1861.74"/>
 </g> </g>
-<!-- pnj:ilona&#45;&gt;lore:corpos:saeder&#45;krupp --> +<!-- lore:objets:caisse_de_ruthenium&#45;&gt;lore:lieux:camargue --> 
-<g id="edge285" class="edge"><title>pnj:ilona&#45;&gt;lore:corpos:saeder&#45;krupp</title> +<g id="edge217" class="edge"><title>lore:objets:caisse_de_ruthenium&#45;&gt;lore:lieux:camargue</title> 
-<path fill="none" stroke="black" d="M4164.04,-2250.69C4366.42,-2249.39 5258.27,-2246.78 5528,-2304 6163.4,-2438.79 6289.84,-2500.27 6544,-2736 6628.64,-2814.51 6674.62,-2894.43 6607,-2988 6555.81,-3058.84 6509.17,-3040.37 6424,-3060 6317.96,-3084.44 6012.51,-3101.22 5847.59,-3108.66"/> +<path fill="none" stroke="black" d="M5198.46,-867.254C5264.51,-854.725 5361.38,-836.348 5426.24,-824.044"/> 
-<polygon fill="black" stroke="black" points="5847.25,-3105.17 5837.42,-3109.12 5847.57,-3112.16 5847.25,-3105.17"/>+<polygon fill="black" stroke="black" points="5427.19,-827.426 5436.36,-822.124 5425.89,-820.549 5427.19,-827.426"/>
 </g> </g>
-<!-- pnj:ilona&#45;&gt;pnj:othmar --> +<!-- pnj:karl_paolo&#45;&gt;lore:corpos:saeder&#45;krupp --> 
-<g id="edge284" class="edge"><title>pnj:ilona&#45;&gt;pnj:othmar</title> +<g id="edge168" class="edge"><title>pnj:karl_paolo&#45;&gt;lore:corpos:saeder&#45;krupp</title> 
-<path fill="none" stroke="black" d="M4104.6,-2266.19C4089.26,-2276.66 4067.19,-2290.67 4048.38,-2301.9"/> +<path fill="none" stroke="black" d="M5332.9,-1907.55C5320.97,-1916.9 5304.77,-1928.71 5290.03,-1938.84"/> 
-<polygon fill="black" stroke="black" points="4046.56,-2298.91 4039.72,-2307 4050.11,-2304.94 4046.56,-2298.91"/>+<polygon fill="black" stroke="black" points="5287.87,-1936.08 5281.56,-1944.59 5291.8,-1941.87 5287.87,-1936.08"/>
 </g> </g>
-<!-- pnj:ilona&#45;&gt;pnj:rolf --> +<!-- pnj:karl_paolo&#45;&gt;lore:lieux:zurich --> 
-<g id="edge283" class="edge"><title>pnj:ilona&#45;&gt;pnj:rolf</title> +<g id="edge166" class="edge"><title>pnj:karl_paolo&#45;&gt;lore:lieux:zurich</title> 
-<path fill="none" stroke="black" d="M4087.41,-2259C4045.45,-2268.29 3979.72,-2284.82 3963,-2304 3948.32,-2320.84 3945.34,-2346.54 3944.02,-2365.99"/> +<path fill="none" stroke="black" d="M5401.16,-1879.53C5435.9,-1871.55 5481.89,-1857.86 5518,-1836 5745.08,-1698.54 5810,-1580.44 5810,-1315 5810,-1315 5810,-1315 5810,-1241 5810,-1144.4 5848,-1123.6 5848,-1027 5848,-1027 5848,-1027 5848,-953 5848,-790.343 5924,-757.657 5924,-595 5924,-595 5924,-595 5924,-449 5924,-401.929 5958.81,-356.95 5983.88,-330.662"/> 
-<polygon fill="black" stroke="black" points="3940.53,-2365.87 3943.4,-2376.07 3947.51,-2366.3 3940.53,-2365.87"/>+<polygon fill="black" stroke="black" points="5986.46,-333.026 5990.97,-323.44 5981.47,-328.121 5986.46,-333.026"/>
 </g> </g>
-<!-- pnj:ilona&#45;&gt;lore:planques:box_m2 --> +<!-- pnj:karl_paolo&#45;&gt;lore:organisations:swamp_rats --> 
-<g id="edge281" class="edge"><title>pnj:ilona&#45;&gt;lore:planques:box_m2</title> +<g id="edge167" class="edge"><title>pnj:karl_paolo&#45;&gt;lore:organisations:swamp_rats</title> 
-<path fill="none" stroke="black" d="M4120.28,-2268.09C4112.42,-2286.28 4095.42,-2315.72 4079,-2340 4056.44,-2373.35 4049.09,-2380.5 4024,-2412 4016.39,-2421.55 4007.86,-2431.91 3999.77,-2440.92"/> +<path fill="none" stroke="black" d="M5296.44,-1880.56C5221.86,-1868.8 5085.73,-1847.34 4995.56,-1833.12"/> 
-<polygon fill="black" stroke="black" points="3997.04,-2438.72 3992.81,-2448.43 4002.18,-2443.47 3997.04,-2438.72"/>+<polygon fill="black" stroke="black" points="4996.04,-1829.65 4985.62,-1831.55 4994.95,-1836.57 4996.04,-1829.65"/>
 </g> </g>
-<!-- pnj:othmar&#45;&gt;lore:lieux:munich --> +<!-- pnj:karl_paolo&#45;&gt;lore:objets:caisse_de_ruthenium --> 
-<g id="edge408" class="edge"><title>pnj:othmar&#45;&gt;lore:lieux:munich</title> +<g id="edge169" class="edge"><title>pnj:karl_paolo&#45;&gt;lore:objets:caisse_de_ruthenium</title> 
-<path fill="none" stroke="black" d="M3976.85,-2334.74C3952.36,-2343.85 3919.62,-2357.97 3894,-2376 3880.38,-2385.59 3805.19,-2477.17 3790,-2484 3679.08,-2533.86 2836.47,-2537.36 2568.53,-2537.2"/> +<path fill="none" stroke="black" d="M5343.69,-1871.95C5339.53,-1845.3 5338,-1792.12 5338,-1747 5338,-1747 5338,-1747 5338,-1673 5338,-1601.41 5349.23,-1583.32 5343,-1512 5319.98,-1248.24 5346.55,-1150.25 5191,-936 5182.26,-923.961 5169.94,-913.608 5158.3,-905.33"/> 
-<polygon fill="black" stroke="black" points="2568.49,-2533.7 2558.49,-2537.19 2568.48,-2540.7 2568.49,-2533.7"/>+<polygon fill="black" stroke="black" points="5160.24,-902.418 5150.01,-899.675 5156.3,-908.201 5160.24,-902.418"/>
 </g> </g>
-<!-- pnj:othmar&#45;&gt;lore:lieux:zurich --> +<!-- pnj:karl_paolo&#45;&gt;lore:corpos:gomorrah --> 
-<g id="edge410" class="edge"><title>pnj:othmar&#45;&gt;lore:lieux:zurich</title> +<g id="edge163" class="edge"><title>pnj:karl_paolo&#45;&gt;lore:corpos:gomorrah</title> 
-<path fill="none" stroke="black" d="M4021.95,-2304.14C4031.26,-2286.14 4042.69,-2256.85 4035,-2232 4003.48,-2130.13 3795.52,-1937.87 3764,-1836 3759.27,-1820.71 3763.93,-1816 3764,-1800 3764.67,-1648.44 3767,-1610.56 3767,-1459 3767,-1459 3767,-1459 3767,-1385 3767,-1303.67 3799.8,-1284.65 3854,-1224 3917.95,-1152.44 3952.92,-1154.12 4041,-1116 4112.94,-1084.86 4130.68,-1076.53 4202,-1044 4374.59,-965.277 4404.55,-908.304 4589,-864 4724.32,-831.497 5696.69,-815.875 5979.21,-811.99"/> +<path fill="none" stroke="black" d="M5376.33,-1873.68C5411.66,-1850.92 5470,-1804.61 5470,-1747 5470,-1747 5470,-1747 5470,-1673 5470,-1569.12 5564,-1562.88 5564,-1459 5564,-1459 5564,-1459 5564,-1241 5564,-1046.31 5677.08,-1019.88 5710,-828 5718.52,-778.357 5690.96,-723.559 5671.53,-692.404"/> 
-<polygon fill="black" stroke="black" points="5979.42,-815.487 5989.37,-811.851 5979.32,-808.488 5979.42,-815.487"/>+<polygon fill="black" stroke="black" points="5674.41,-690.412 5666.05,-683.896 5668.52,-694.2 5674.41,-690.412"/>
 </g> </g>
-<!-- pnj:othmar&#45;&gt;lore:corpos:saeder&#45;krupp --> +<!-- pnj:karl_paolo&#45;&gt;pnj:janusibherin --> 
-<g id="edge407" class="edge"><title>pnj:othmar&#45;&gt;lore:corpos:saeder&#45;krupp</title> +<g id="edge164" class="edge"><title>pnj:karl_paolo&#45;&gt;pnj:janusibherin</title> 
-<path fill="none" stroke="black" d="M4061.52,-2322.8C4198.53,-2322.82 4593.17,-2327.3 4916,-2376 6207.99,-2570.92 6588,-2657.67 6588,-2897 6588,-2971 6588,-2971 6588,-2971 6588,-3045.29 6070.62,-3090.43 5843.6,-3106.42"/> +<path fill="none" stroke="black" d="M5396.01,-1877.65C5423.46,-1869.29 5457.94,-1855.88 5484,-1836 5560.96,-1777.3 5620.63,-1676.2 5645.87,-1628.86"/> 
-<polygon fill="black" stroke="black" points="5843.07,-3102.95 5833.34,-3107.14 5843.56,-3109.93 5843.07,-3102.95"/>+<polygon fill="black" stroke="black" points="5649.04,-1630.36 5650.59,-1619.88 5642.84,-1627.1 5649.04,-1630.36"/>
 </g> </g>
-<!-- pnj:othmar&#45;&gt;pnj:ilona --> +<!-- pnj:karl_paolo&#45;&gt;pnj:jibril --> 
-<g id="edge406" class="edge"><title>pnj:othmar&#45;&gt;pnj:ilona</title> +<g id="edge165" class="edge"><title>pnj:karl_paolo&#45;&gt;pnj:jibril</title> 
-<path fill="none" stroke="black" d="M4031.17,-2305.29C4046.91,-2294.57 4069.39,-2280.35 4088.23,-2269.14"/> +<path fill="none" stroke="black" d="M5288.34,-1886.81C4990.08,-1876.21 3700.4,-1830.38 3429.89,-1820.77"/> 
-<polygon fill="black" stroke="black" points="4090.01,-2272.15 4096.87,-2264.08 4086.47,-2266.12 4090.01,-2272.15"/>+<polygon fill="black" stroke="black" points="3429.71,-1817.26 3419.6,-1820.41 3429.47,-1824.26 3429.71,-1817.26"/>
 </g> </g>
-<!-- pnj:othmar&#45;&gt;pnj:rolf --> +<!-- pnj:karl_paolo&#45;&gt;pnj:klausvongreschman --> 
-<g id="edge404" class="edge"><title>pnj:othmar&#45;&gt;pnj:rolf</title> +<g id="edge170" class="edge"><title>pnj:karl_paolo&#45;&gt;pnj:klausvongreschman</title> 
-<path fill="none" stroke="black" d="M4000.52,-2339.61C3991.46,-2349.31 3978.72,-2361.65 3967.12,-2372.02"/> +<path fill="none" stroke="black" d="M5289.33,-1885.74C5082.58,-1874.63 4404.15,-1838.19 4147.01,-1824.37"/> 
-<polygon fill="black" stroke="black" points="3964.55,-2369.62 3959.32,-2378.83 3969.16,-2374.89 3964.55,-2369.62"/>+<polygon fill="black" stroke="black" points="4147.1,-1820.87 4136.93,-1823.83 4146.73,-1827.86 4147.1,-1820.87"/>
 </g> </g>
-<!-- lore:corpos:docwagon --> +<!-- pnj:karl_paolo&#45;&gt;lore:lieux:camargue --> 
-<g id="node127" class="node"><title>lore:corpos:docwagon</title> +<g id="edge171" class="edge"><title>pnj:karl_paolo&#45;&gt;lore:lieux:camargue</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfeecx="3934" cy="-2250" rx="92.0841" ry="18"/> +<path fill="none" stroke="blackd="M5367.39,-1872.43C5391.46,-1847.63 5432,-1798.24 5432,-1747 5432,-1747 5432,-1747 5432,-1673 5432,-1576.4 5470,-1555.6 5470,-1459 5470,-1459 5470,-1459 5470,-953 5470,-912.603 5479.94,-866.707 5487.28,-838.299"/> 
-<text text-anchor="middlex="3934y="-2246.3" font-family="Times,serif" font-size="14.00">lore:corpos:docwagon</text>+<polygon fill="blackstroke="blackpoints="5490.75,-838.88 5489.94,-828.316 5483.98,-837.077 5490.75,-838.88"/>
 </g> </g>
-<!-- pnj:othmar&#45;&gt;lore:corpos:docwagon --> +<!-- lore:corpos:gomorrah&#45;&gt;lore:lieux:munich --> 
-<g id="edge405" class="edge"><title>pnj:othmar&#45;&gt;lore:corpos:docwagon</title> +<g id="edge396" class="edge"><title>lore:corpos:gomorrah&#45;&gt;lore:lieux:munich</title> 
-<path fill="none" stroke="black" d="M3994.3,-2305.12C3984.22,-2296.07 3971.4,-2284.57 3960.18,-2274.49"/> +<path fill="none" stroke="black" d="M5673.34,-683.729C5684.37,-693.721 5698.12,-706.971 5709,-720 5753.58,-773.388 6056,-1171.45 6056,-1241 6056,-1387 6056,-1387 6056,-1387 6056,-1483.6 6094,-1504.4 6094,-1601 6094,-1963 6094,-1963 6094,-1963 6094,-2003.45 6096.99,-2018.05 6075,-2052 5912.89,-2302.23 5274.19,-2747.75 4992,-2844 4897.9,-2876.1 3400.56,-2892.65 3032.32,-2896.24"/> 
-<polygon fill="black" stroke="black" points="3962.5,-2271.87 3952.72,-2267.8 3957.82,-2277.08 3962.5,-2271.87"/>+<polygon fill="black" stroke="black" points="3032.24,-2892.74 3022.28,-2896.34 3032.31,-2899.74 3032.24,-2892.74"/>
 </g> </g>
-<!-- pnj:othmar&#45;&gt;lore:planques:box_m2 --> +<!-- pj:roland --> 
-<g id="edge409" class="edge"><title>pnj:othmar&#45;&gt;lore:planques:box_m2</title> +<g id="node149" class="node" onclick="click(evt)"><title>pj:roland</title> 
-<path fill="none" stroke="blackd="M4011.63,-2340.19C4007.15,-2364.64 3994.41,-2409.67 3984.07,-2438.44"/> +<ellipse fill="#c983d0" fill-opacity="0.733333" stroke="#c983d0stroke-opacity="0.733333" cx="5816" cy="-594" rx="42.4939" ry="18"/> 
-<polygon fill="blackstroke="blackpoints="3980.77,-2437.28 3980.53,-2447.87 3987.32,-2439.74 3980.77,-2437.28"/>+<text text-anchor="middlex="5816y="-590.3" font-family="Times,serif" font-size="14.00">pj:roland</text>
 </g> </g>
-<!-- pnj:rolf&#45;&gt;lore:lieux:munich --> +<!-- lore:corpos:gomorrah&#45;&gt;pj:roland --> 
-<g id="edge385" class="edge"><title>pnj:rolf&#45;&gt;lore:lieux:munich</title> +<g id="edge397" class="edge"><title>lore:corpos:gomorrah&#45;&gt;pj:roland</title> 
-<path fill="none" stroke="black" d="M3920.1,-2409.45C3906.38,-2420.01 3887.42,-2434.74 3871,-2448 3851.61,-2463.66 3851.25,-2475.03 3828,-2484 3710.97,-2529.16 2841.85,-2535.85 2568.82,-2536.83"/> +<path fill="none" stroke="black" d="M5689.95,-649.465C5716.1,-638.165 5751.44,-622.896 5778.05,-611.4"/> 
-<polygon fill="black" stroke="black" points="2568.58,-2533.33 2558.59,-2536.87 2568.6,-2540.33 2568.58,-2533.33"/>+<polygon fill="black" stroke="black" points="5779.63,-614.529 5787.42,-607.35 5776.85,-608.103 5779.63,-614.529"/>
 </g> </g>
-<!-- pnj:rolf&#45;&gt;lore:lieux:zurich --> +<!-- lore:corpos:aztechnology --> 
-<g id="edge381" class="edge"><title>pnj:rolf&#45;&gt;lore:lieux:zurich</title> +<g id="node150" class="node" onclick="click(evt)"><title>lore:corpos:aztechnology</title> 
-<path fill="none" stroke="blackd="M3920.18,-2378.48C3865.97,-2335.48 3708.92,-2202.3 3640,-2052 3582.94,-1927.56 3597,-1883.9 3597,-1747 3597,-1747 3597,-1747 3597,-1529 3597,-1405.11 3668.6,-1389.39 3750,-1296 3808.24,-1229.17 3812.61,-1198.62 3888,-1152 3933.91,-1123.61 3957.6,-1143.58 4004,-1116 4023.72,-1104.28 4022.3,-1093.29 4041,-1080 4216,-955.68 4264.93,-916.808 4473,-864 4619.44,-826.833 5681.08,-814.42 5978.65,-811.651"/> +<ellipse fill="#41c2b5" fill-opacity="0.733333" stroke="#41c2b5stroke-opacity="0.733333" cx="5654" cy="-594" rx="102.082" ry="18"/> 
-<polygon fill="blackstroke="blackpoints="5978.95,-815.148 5988.91,-811.556 5978.88,-808.149 5978.95,-815.148"/>+<text text-anchor="middlex="5654y="-590.3" font-family="Times,serif" font-size="14.00">lore:corpos:aztechnology</text>
 </g> </g>
-<!-- pnj:rolf&#45;&gt;lore:corpos:saeder&#45;krupp --> +<!-- lore:corpos:gomorrah&#45;&gt;lore:corpos:aztechnology --> 
-<g id="edge383" class="edge"><title>pnj:rolf&#45;&gt;lore:corpos:saeder&#45;krupp</title> +<g id="edge398" class="edge"><title>lore:corpos:gomorrah&#45;&gt;lore:corpos:aztechnology</title> 
-<path fill="none" stroke="black" d="M3969.25,-2404.14C4081.64,-2439.85 4485.03,-2570.87 4828,-2628 4908.66,-2641.44 6240.37,-2676.06 6296,-2736 6306.88,-2747.73 6302.3,-2757.29 6296,-2772 6259.5,-2857.25 6075.96,-3016.61 5994,-3060 5947.31,-3084.72 5889.85,-3097.91 5841.25,-3104.95"/> +<path fill="none" stroke="black" d="M5648.08,-647.697C5647.29,-639.983 5647.06,-630.712 5647.4,-622.112"/> 
-<polygon fill="black" stroke="black" points="5840.77,-3101.48 5831.34,-3106.32 5841.72,-3108.42 5840.77,-3101.48"/>+<polygon fill="black" stroke="black" points="5650.9,-622.324 5648.1,-612.104 5643.92,-621.836 5650.9,-622.324"/>
 </g> </g>
-<!-- pnj:rolf&#45;&gt;pnj:ilona --> +<!-- pnj:janusibherin&#45;&gt;lore:corpos:saeder&#45;krupp --> 
-<g id="edge384" class="edge"><title>pnj:rolf&#45;&gt;pnj:ilona</title> +<g id="edge503" class="edge"><title>pnj:janusibherin&#45;&gt;lore:corpos:saeder&#45;krupp</title> 
-<path fill="none" stroke="black" d="M3930.65,-2376.41C3926.63,-2356.74 3927.5,-2324.08 3945,-2304 3961.8,-2284.73 4028.09,-2268.13 4074.95,-2258.86"/> +<path fill="none" stroke="black" d="M5668.11,-1619.84C5682.48,-1660.12 5702.12,-1764.01 5663,-1836 5656.2,-1848.51 5570.18,-1902.62 5557,-1908 5493.69,-1933.82 5417.65,-1947.1 5357.41,-1953.9"/> 
-<polygon fill="black" stroke="black" points="4075.76,-2262.27 4084.92,-2256.94 4074.44,-2255.4 4075.76,-2262.27"/>+<polygon fill="black" stroke="black" points="5356.69,-1950.46 5347.12,-1955.02 5357.44,-1957.42 5356.69,-1950.46"/>
 </g> </g>
-<!-- pnj:rolf&#45;&gt;pnj:othmar --> +<!-- pnj:janusibherin&#45;&gt;lore:lieux:zurich --> 
-<g id="edge382" class="edge"><title>pnj:rolf&#45;&gt;pnj:othmar</title> +<g id="edge504" class="edge"><title>pnj:janusibherin&#45;&gt;lore:lieux:zurich</title> 
-<path fill="none" stroke="black" d="M3950.13,-2376.76C3958.86,-2367.38 3971.14,-2355.44 3982.52,-2345.2"/> +<path fill="none" stroke="black" d="M5665.27,-1583.76C5683.29,-1532.57 5734,-1376.67 5734,-1243 5734,-1243 5734,-1243 5734,-1097 5734,-833.096 5886,-786.904 5886,-523 5886,-523 5886,-523 5886,-449 5886,-408.031 5884.52,-392.078 5910,-360 5922.38,-344.416 5940.63,-332.832 5958.1,-324.537"/> 
-<polygon fill="black" stroke="black" points="3985.02,-2347.66 3990.2,-2338.43 3980.39,-2342.41 3985.02,-2347.66"/>+<polygon fill="black" stroke="black" points="5959.98,-327.532 5967.69,-320.262 5957.13,-321.14 5959.98,-327.532"/>
 </g> </g>
-<!-- pnj:rolf&#45;&gt;lore:planques:box_m2 --> +<!-- pnj:janusibherin&#45;&gt;lore:lieux:gemito --> 
-<g id="edge380" class="edge"><title>pnj:rolf&#45;&gt;lore:planques:box_m2</title> +<g id="edge502" class="edge"><title>pnj:janusibherin&#45;&gt;lore:lieux:gemito</title> 
-<path fill="none" stroke="black" d="M3952.17,-2411.14C3956.75,-2419.18 3961.55,-2429.1 3965.34,-2438.23"/> +<path fill="none" stroke="black" d="M5597.38,-1594.85C5289.66,-1564.17 3921.03,-1427.69 3586.81,-1394.36"/> 
-<polygon fill="black" stroke="black" points="3962.13,-2439.63 3969.01,-2447.7 3968.66,-2437.11 3962.13,-2439.63"/>+<polygon fill="black" stroke="black" points="3587.05,-1390.87 3576.75,-1393.36 3586.36,-1397.83 3587.05,-1390.87"/>
 </g> </g>
-<!-- pnj:klausvongreschman&#45;&gt;lore:lieux:france --> +<!-- pnj:janusibherin&#45;&gt;lore:lieux:camargue --> 
-<g id="edge342" class="edge"><title>pnj:klausvongreschman&#45;&gt;lore:lieux:france</title> +<g id="edge505" class="edge"><title>pnj:janusibherin&#45;&gt;lore:lieux:camargue</title> 
-<path fill="none" stroke="black" d="M5698.42,-3033C5729.05,-3030.08 5764.11,-3026.81 5796,-3024 6002.95,-3005.74 6247.38,-2986.25 6367.6,-2976.8"/> +<path fill="none" stroke="black" d="M5655.16,-1583.61C5649.6,-1556.94 5640,-1504.27 5640,-1459 5640,-1459 5640,-1459 5640,-1169 5640,-1026.34 5609.69,-988.475 5540,-864 5534.31,-853.84 5526.52,-843.811 5519.02,-835.257"/> 
-<polygon fill="black" stroke="black" points="6368.1,-2980.28 6377.79,-2976 6367.55,-2973.3 6368.1,-2980.28"/>+<polygon fill="black" stroke="black" points="5521.6,-832.893 5512.28,-827.855 5516.42,-837.605 5521.6,-832.893"/>
 </g> </g>
-<!-- pnj:klausvongreschman&#45;&gt;lore:corpos:saeder&#45;krupp --> +<!-- pnj:jibril&#45;&gt;pj:eidolon --> 
-<g id="edge343" class="edge"><title>pnj:klausvongreschman&#45;&gt;lore:corpos:saeder&#45;krupp</title> +<g id="edge206" class="edge"><title>pnj:jibril&#45;&gt;pj:eidolon</title> 
-<path fill="none" stroke="black" d="M5649.87,-3058.99C5667.7,-3068.52 5689.37,-3080.75 5706.92,-3091.16"/> +<path fill="none" stroke="black" d="M3340.41,-1820.14C3138.2,-1827.03 2230,-1870.98 2230,-2105 2230,-2179 2230,-2179 2230,-2179 2230,-2418.22 1502.72,-2594.55 1288,-2700 1179.36,-2753.35 1104.48,-2706.86 1038,-2808 929.839,-2972.55 1336.38,-2796.35 1457,-2952 1506,-3015.24 1511.97,-3073.87 1457,-3132 1426.28,-3164.49 765.763,-3180 566.446,-3183.96"/> 
-<polygon fill="black" stroke="black" points="5705.31,-3094.27 5715.69,-3096.41 5708.91,-3088.27 5705.31,-3094.27"/>+<polygon fill="black" stroke="black" points="566.125,-3180.46 556.196,-3184.16 566.263,-3187.46 566.125,-3180.46"/>
 </g> </g>
-<!-- pnj:miguelvapparossi --> +<!-- pnj:jibril&#45;&gt;lore:corpos:saeder&#45;krupp --> 
-<g id="node115" class="node"><title>pnj:miguelvapparossi</title> +<g id="edge205" class="edge"><title>pnj:jibril&#45;&gt;lore:corpos:saeder&#45;krupp</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfee" cx="6813cy="-3114" rx="87.1846" ry="18"/> +<path fill="none" stroke="blackd="M3417.12,-1824.36C3521.92,-1840.24 3828.17,-1887.25 4084,-1908 4546.31,-1945.5 4664.65,-1906.99 5127,-1944 5140.74,-1945.1 5155.22,-1946.58 5169.3,-1948.21"/> 
-<text text-anchor="middlex="6813y="-3110.3" font-family="Times,serif" font-size="14.00">pnj:miguelvapparossi</text>+<polygon fill="blackstroke="blackpoints="5169.12,-1951.72 5179.46,-1949.42 5169.94,-1944.77 5169.12,-1951.72"/>
 </g> </g>
-<!-- lore:corpos:esus --> +<!-- pnj:jibril&#45;&gt;lore:lieux:tir_na_nog --> 
-<g id="node116" class="node"><title>lore:corpos:esus</title> +<g id="edge203" class="edge"><title>pnj:jibril&#45;&gt;lore:lieux:tir_na_nog</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfeecx="6623" cy="-3186" rx="70.3881" ry="18"/> +<path fill="none" stroke="blackd="M3340.48,-1816.16C3059.27,-1810 1366.39,-1769.84 1153,-1692 910.555,-1603.56 850.27,-1503.58 765,-1260 716.354,-1121.04 730.144,-1079.22 696,-936 693.983,-927.538 691.621,-918.362 689.418,-910.061"/> 
-<text text-anchor="middlex="6623y="-3182.3" font-family="Times,serif" font-size="14.00">lore:corpos:esus</text>+<polygon fill="blackstroke="blackpoints="692.726,-908.882 686.751,-900.133 685.966,-910.698 692.726,-908.882"/>
 </g> </g>
-<!-- pnj:miguelvapparossi&#45;&gt;lore:corpos:esus --> +<!-- pnj:jibril&#45;&gt;lore:lieux:gemito --> 
-<g id="edge209" class="edge"><title>pnj:miguelvapparossi&#45;&gt;lore:corpos:esus</title> +<g id="edge202" class="edge"><title>pnj:jibril&#45;&gt;lore:lieux:gemito</title> 
-<path fill="none" stroke="black" d="M6776.89,-3130.41C6747.99,-3141.54 6707.21,-3156.59 6674.84,-3168.06"/> +<path fill="none" stroke="black" d="M3410.66,-1806.49C3476.6,-1782.95 3626,-1724.19 3626,-1675 3626,-1675 3626,-1675 3626,-1529 3626,-1477.3 3579.57,-1433.54 3546.24,-1408.77"/> 
-<polygon fill="black" stroke="black" points="6673.36,-3164.88 6665.09,-3171.5 6675.69,-3171.48 6673.36,-3164.88"/>+<polygon fill="black" stroke="black" points="3548.24,-1405.9 3538.08,-1402.9 3544.14,-1411.58 3548.24,-1405.9"/>
 </g> </g>
-<!-- lore:corpos:esus&#45;&gt;lore:lieux:france --> +<!-- pnj:jibril&#45;&gt;pnj:tristanodunn --> 
-<g id="edge446" class="edge"><title>lore:corpos:esus&#45;&gt;lore:lieux:france</title> +<g id="edge204" class="edge"><title>pnj:jibril&#45;&gt;pnj:tristanodunn</title> 
-<path fill="none" stroke="black" d="M6587.2,-3170.37C6568.47,-3161.39 6546.15,-3148.44 6530,-3132 6490.99,-3092.29 6464.23,-3031.77 6451.18,-2997.36"/> +<path fill="none" stroke="black" d="M3340.06,-1816.3C3200.92,-1813.54 2743.1,-1801.67 2690,-1764 2547.48,-1662.91 2419.3,-1212.76 2374,-1044 2330.29,-881.173 2332,-835.592 2332,-667 2332,-667 2332,-667 2332,-593 2332,-521.477 2082.81,-421.034 1955,-360 1880.22,-324.288 1863.64,-307.098 1783,-288 1653.06,-257.226 1259.03,-242.265 1090.18,-237.132"/> 
-<polygon fill="black" stroke="black" points="6454.46,-2996.14 6447.71,-2987.98 6447.89,-2998.57 6454.46,-2996.14"/>+<polygon fill="black" stroke="black" points="1090.22,-233.632 1080.12,-236.83 1090.01,-240.629 1090.22,-233.632"/>
 </g> </g>
-<!-- lore:corpos:esus&#45;&gt;lore:corpos:saeder&#45;krupp --> +<!-- pnj:jibril&#45;&gt;lore:lieux:europe --> 
-<g id="edge445" class="edge"><title>lore:corpos:esus&#45;&gt;lore:corpos:saeder&#45;krupp</title> +<g id="edge207" class="edge"><title>pnj:jibril&#45;&gt;lore:lieux:europe</title> 
-<path fill="none" stroke="black" d="M6565,-3175.85C6545.64,-3173.03 6523.92,-3170.11 6504,-3168 6270.08,-3143.22 5994.64,-3127.4 5846.42,-3119.97"/> +<path fill="none" stroke="black" d="M3362.69,-1801.62C3309.45,-1754.34 3147.9,-1610.85 3084.21,-1554.28"/> 
-<polygon fill="black" stroke="black" points="5846.57,-3116.48 5836.41,-3119.48 5846.22,-3123.47 5846.57,-3116.48"/>+<polygon fill="black" stroke="black" points="3086.39,-1551.54 3076.59,-1547.51 3081.75,-1556.77 3086.39,-1551.54"/>
 </g> </g>
-<!-- lore:corpos:esus&#45;&gt;pnj:miguelvapparossi --> +<!-- pnj:jibril&#45;&gt;pnj:le_boss_d_ekhart --> 
-<g id="edge443" class="edge"><title>lore:corpos:esus&#45;&gt;pnj:miguelvapparossi</title> +<g id="edge208" class="edge"><title>pnj:jibril&#45;&gt;pnj:le_boss_d_ekhart</title> 
-<path fill="none" stroke="black" d="M6657.66,-3170.15C6685.81,-3159.28 6725.91,-3144.47 6758.35,-3132.93"/> +<path fill="none" stroke="black" d="M3413.36,-1808.27C3462.49,-1795.27 3549.93,-1771.54 3563,-1764 3603.02,-1740.9 3606.16,-1725.48 3638,-1692 3813.22,-1507.77 3861.83,-1464.42 4013,-1260 4035.44,-1229.66 4047.6,-1224.27 4058,-1188 4063.79,-1167.82 4062.04,-1144.05 4059.12,-1126.15"/> 
-<polygon fill="black" stroke="black" points="6759.89,-3136.1 6768.15,-3129.46 6757.56,-3129.5 6759.89,-3136.1"/>+<polygon fill="black" stroke="black" points="4062.52,-1125.3 4057.25,-1116.1 4055.63,-1126.57 4062.52,-1125.3"/>
 </g> </g>
-<!-- pnj:andreidelcassero --> +<!-- pnj:klausvongreschman&#45;&gt;lore:corpos:saeder&#45;krupp --> 
-<g id="node138" class="node"><title>pnj:andreidelcassero</title> +<g id="edge477" class="edge"><title>pnj:klausvongreschman&#45;&gt;lore:corpos:saeder&#45;krupp</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfeecx="6623" cy="-3114" rx="84.485" ry="18"/> +<path fill="none" stroke="blackd="M4061.14,-1836.15C4074.77,-1857.38 4096.46,-1892.61 4127,-1908 4226.29,-1958.03 5016.18,-1935.05 5127,-1944 5140.74,-1945.11 5155.22,-1946.6 5169.3,-1948.23"/> 
-<text text-anchor="middlex="6623y="-3110.3" font-family="Times,serif" font-size="14.00">pnj:andreidelcassero</text>+<polygon fill="blackstroke="blackpoints="5169.11,-1951.73 5179.46,-1949.44 5169.94,-1944.78 5169.11,-1951.73"/>
 </g> </g>
-<!-- lore:corpos:esus&#45;&gt;pnj:andreidelcassero --> +<!-- pnj:klausvongreschman&#45;&gt;lore:lieux:france --> 
-<g id="edge444" class="edge"><title>lore:corpos:esus&#45;&gt;pnj:andreidelcassero</title> +<g id="edge478" class="edge"><title>pnj:klausvongreschman&#45;&gt;lore:lieux:france</title> 
-<path fill="none" stroke="black" d="M6617.12,-3168.05C6616.3,-3160.35 6616.06,-3151.03 6616.39,-3142.36"/> +<path fill="none" stroke="black" d="M3953.68,-1814.64C3657.04,-1806.97 2753.64,-1782.17 2729,-1764 2667.91,-1718.95 2672,-1678.91 2672,-1603 2672,-1603 2672,-1603 2672,-1457 2672,-1361.88 2677.59,-1249.07 2680.41,-1198.24"/> 
-<polygon fill="black" stroke="black" points="6619.89,-3142.49 6617.09,-3132.28 6612.91,-3142.01 6619.89,-3142.49"/>+<polygon fill="black" stroke="black" points="2683.92,-1198.26 2680.99,-1188.08 2676.93,-1197.87 2683.92,-1198.26"/>
 </g> </g>
-<!-- lore:gangs:white_skullz&#45;&gt;lore:lieux:gemito --> +<!-- lore:lieux:camargue&#45;&gt;lore:corpos:saeder&#45;krupp --> 
-<g id="edge255" class="edge"><title>lore:gangs:white_skullz&#45;&gt;lore:lieux:gemito</title> +<g id="edge514" class="edge"><title>lore:lieux:camargue&#45;&gt;lore:corpos:saeder&#45;krupp</title> 
-<path fill="none" stroke="black" d="M5117.88,-1404.28C5120.33,-1448.43 5107.85,-1565.67 5038,-1620 5016.49,-1636.73 4855.2,-1656.04 4757.52,-1666.1"/> +<path fill="none" stroke="black" d="M5505.06,-827.918C5514.76,-854.401 5526,-907.347 5526,-953 5526,-1603 5526,-1603 5526,-1603 5526,-1745.11 5548.97,-1830.26 5430,-1908 5401.93,-1926.34 5367.09,-1938.69 5335.72,-1946.82"/> 
-<polygon fill="black" stroke="black" points="4756.99,-1662.63 4747.39,-1667.13 4757.7,-1669.6 4756.99,-1662.63"/>+<polygon fill="black" stroke="black" points="5334.53,-1943.51 5325.67,-1949.32 5336.22,-1950.3 5334.53,-1943.51"/>
 </g> </g>
-<!-- lore:gangs:white_skullz&#45;&gt;lore:lieux:genes --> +<!-- pnj:herberdevaucanson --> 
-<g id="edge256" class="edge"><title>lore:gangs:white_skullz&#45;&gt;lore:lieux:genes</title> +<g id="node117" class="node" onclick="click(evt)"><title>pnj:herberdevaucanson</title> 
-<path fill="none" stroke="blackd="M5096.11,-1403.8C5083.54,-1413.42 5066.47,-1425.58 5051.18,-1435.85"/> +<ellipse fill="#e5b030" fill-opacity="0.733333" stroke="#e5b030stroke-opacity="0.733333" cx="2566" cy="-954" rx="94.4839" ry="18"/> 
-<polygon fill="blackstroke="blackpoints="5048.83,-1433.2 5042.43,-1441.64 5052.7,-1439.04 5048.83,-1433.2"/>+<text text-anchor="middlex="2566y="-950.3" font-family="Times,serif" font-size="14.00">pnj:herberdevaucanson</text>
 </g> </g>
-<!-- lore:gangs:white_skullz&#45;&gt;lore:gangs:fils_de_sauron --> +<!-- lore:corpos:esprit --> 
-<g id="edge257" class="edge"><title>lore:gangs:white_skullz&#45;&gt;lore:gangs:fils_de_sauron</title> +<g id="node118" class="node" onclick="click(evt)"><title>lore:corpos:esprit</title> 
-<path fill="none" stroke="blackd="M5144.05,-1368.94C5162.31,-1359.18 5185.83,-1346.62 5205.57,-1336.07"/> +<ellipse fill="#41c2b5" fill-opacity="0.733333" stroke="#41c2b5stroke-opacity="0.733333" cx="2586" cy="-1026" rx="74.187" ry="18"/> 
-<polygon fill="blackstroke="blackpoints="5207.46,-1339.03 5214.63,-1331.23 5204.16,-1332.85 5207.46,-1339.03"/>+<text text-anchor="middlex="2586y="-1022.3" font-family="Times,serif" font-size="14.00">lore:corpos:esprit</text>
 </g> </g>
-<!-- pnj:jeandemontillyfils --> +<!-- pnj:herberdevaucanson&#45;&gt;lore:corpos:esprit --> 
-<g id="node118" class="node"><title>pnj:jeandemontillyfils</title> +<g id="edge172" class="edge"><title>pnj:herberdevaucanson&#45;&gt;lore:corpos:esprit</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfeecx="5782" cy="-2754" rx="86.3847" ry="18"/> +<path fill="none" stroke="blackd="M2576.78,-972.104C2579.78,-979.791 2582.67,-989.054 2584.79,-997.665"/> 
-<text text-anchor="middlex="5782y="-2750.3" font-family="Times,serif" font-size="14.00">pnj:jeandemontillyfils</text>+<polygon fill="blackstroke="blackpoints="2581.43,-998.667 2586.97,-1007.7 2588.27,-997.182 2581.43,-998.667"/>
 </g> </g>
-<!-- pnj:jeandemontillyfils&#45;&gt;lore:corpos:esprit --> +<!-- pnj:herberdevaucanson&#45;&gt;lore:lieux:paris --> 
-<g id="edge212" class="edge"><title>pnj:jeandemontillyfils&#45;&gt;lore:corpos:esprit</title> +<g id="edge173" class="edge"><title>pnj:herberdevaucanson&#45;&gt;lore:lieux:paris</title> 
-<path fill="none" stroke="black" d="M5827.94,-2769.35C5859.71,-2780.13 5901.69,-2795 5933.38,-2806.65"/> +<path fill="none" stroke="black" d="M2537.87,-971.294C2524.94,-980.358 2510.78,-992.874 2503,-1008 2493.22,-1027.01 2491.95,-1051.37 2492.86,-1069.8"/> 
-<polygon fill="black" stroke="black" points="5932.26,-2809.97 5942.86,-2810.15 5934.69,-2803.4 5932.26,-2809.97"/>+<polygon fill="black" stroke="black" points="2489.37,-1070.16 2493.59,-1079.88 2496.35,-1069.65 2489.37,-1070.16"/>
 </g> </g>
 <!-- lore:corpos:esprit&#45;&gt;lore:corpos:saeder&#45;krupp --> <!-- lore:corpos:esprit&#45;&gt;lore:corpos:saeder&#45;krupp -->
-<g id="edge506" class="edge"><title>lore:corpos:esprit&#45;&gt;lore:corpos:saeder&#45;krupp</title> +<g id="edge343" class="edge"><title>lore:corpos:esprit&#45;&gt;lore:corpos:saeder&#45;krupp</title> 
-<path fill="none" stroke="black" d="M5983.63,-2844.15C5993.95,-2886.5 6013.87,-2997.13 5960,-3060 5942.97,-3079.88 5884.21,-3093.39 5831.57,-3101.79"/> +<path fill="none" stroke="black" d="M2585.88,-1044.13C2585.66,-1078.32 2585.17,-1157.48 2585,-1224 2584.96,-1240 2584.67,-1244 2585,-1260 2587.44,-1379.63 2596,-1409.34 2596,-1529 2596,-1603 2596,-1603 2596,-1603 2596,-1685.86 2621.1,-1717.98 2690,-1764 2887.13,-1895.67 3510.79,-1887.95 3747,-1908 4216.25,-1947.84 4335.37,-1927.05 4806,-1944 4921.57,-1948.16 5053.95,-1953.23 5144.46,-1956.75"/> 
-<polygon fill="black" stroke="black" points="5830.82,-3098.37 5821.48,-3103.36 5831.89,-3105.28 5830.82,-3098.37"/> +<polygon fill="black" stroke="black" points="5144.34,-1960.25 5154.46,-1957.14 5144.61,-1953.25 5144.34,-1960.25"/>
-</g> +
-<!-- lore:corpos:esprit&#45;&gt;pnj:jeandemontillyfils --> +
-<g id="edge505" class="edge"><title>lore:corpos:esprit&#45;&gt;pnj:jeandemontillyfils</title> +
-<path fill="none" stroke="black" d="M5935.07,-2811.34C5903.57,-2800.66 5861.29,-2785.71 5829.1,-2773.89"/> +
-<polygon fill="black" stroke="black" points="5830.05,-2770.51 5819.45,-2770.33 5827.62,-2777.08 5830.05,-2770.51"/+
-</g> +
-<!-- pnj:herberdevaucanson --> +
-<g id="node129" class="node"><title>pnj:herberdevaucanson</title> +
-<ellipse fill="#b2dfee" stroke="#b2dfee" cx="6184" cy="-2754" rx="94.4839" ry="18"/> +
-<text text-anchor="middle" x="6184" y="-2750.3" font-family="Times,serif" font-size="14.00">pnj:herberdevaucanson</text>+
 </g> </g>
 <!-- lore:corpos:esprit&#45;&gt;pnj:herberdevaucanson --> <!-- lore:corpos:esprit&#45;&gt;pnj:herberdevaucanson -->
-<g id="edge507" class="edge"><title>lore:corpos:esprit&#45;&gt;pnj:herberdevaucanson</title> +<g id="edge344" class="edge"><title>lore:corpos:esprit&#45;&gt;pnj:herberdevaucanson</title> 
-<path fill="none" stroke="black" d="M6016.36,-2810.33C6047.06,-2799.37 6090.94,-2784.34 6126.15,-2772.72"/> +<path fill="none" stroke="black" d="M2575.28,-1008.05C2572.23,-1000.26 2569.29,-990.822 2567.14,-982.079"/> 
-<polygon fill="black" stroke="black" points="6127.43,-2775.98 6135.84,-2769.53 6125.24,-2769.33 6127.43,-2775.98"/>+<polygon fill="black" stroke="black" points="2570.56,-981.31 2565.02,-972.275 2563.72,-982.789 2570.56,-981.31"/>
 </g> </g>
 <!-- pnj:manueldosplegiane --> <!-- pnj:manueldosplegiane -->
-<g id="node141" class="node"><title>pnj:manueldosplegiane</title> +<g id="node143" class="node" onclick="click(evt)"><title>pnj:manueldosplegiane</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfee" cx="5979" cy="-2754" rx="92.0841" ry="18"/> +<ellipse fill="#e5b030" fill-opacity="0.733333" stroke="#e5b030" stroke-opacity="0.733333" cx="2771" cy="-954" rx="92.0841" ry="18"/> 
-<text text-anchor="middle" x="5979" y="-2750.3" font-family="Times,serif" font-size="14.00">pnj:manueldosplegiane</text>+<text text-anchor="middle" x="2771" y="-950.3" font-family="Times,serif" font-size="14.00">pnj:manueldosplegiane</text>
 </g> </g>
 <!-- lore:corpos:esprit&#45;&gt;pnj:manueldosplegiane --> <!-- lore:corpos:esprit&#45;&gt;pnj:manueldosplegiane -->
-<g id="edge508" class="edge"><title>lore:corpos:esprit&#45;&gt;pnj:manueldosplegiane</title> +<g id="edge341" class="edge"><title>lore:corpos:esprit&#45;&gt;pnj:manueldosplegiane</title> 
-<path fill="none" stroke="black" d="M5973.12,-2808.05C5972.3,-2800.35 5972.06,-2791.03 5972.39,-2782.36"/> +<path fill="none" stroke="black" d="M2620.03,-1009.98C2647.09,-999.243 2685.33,-984.728 2716.6,-973.309"/> 
-<polygon fill="black" stroke="black" points="5975.89,-2782.49 5973.09,-2772.28 5968.91,-2782.01 5975.89,-2782.49"/>+<polygon fill="black" stroke="black" points="2717.85,-976.576 2726.06,-969.872 2715.46,-969.997 2717.85,-976.576"/>
 </g> </g>
-<!-- lore:organisations:famille_von_schencker&#45;&gt;lore:lieux:munich --> +<!-- pnj:jeandemontillyfils --> 
-<g id="edge220" class="edge"><title>lore:organisations:famille_von_schencker&#45;&gt;lore:lieux:munich</title> +<g id="node144" class="node" onclick="click(evt)"><title>pnj:jeandemontillyfils</title> 
-<path fill="none" stroke="blackd="M3143.17,-899.756C3104.33,-919.69 3039.76,-956.825 3003,-1008 2915.75,-1129.45 2900,-1523.46 2900,-1673 2900,-1747 2900,-1747 2900,-1747 2900,-2029.53 2971.5,-2094.21 2992,-2376 2995.48,-2423.91 3021.07,-2449.17 2988,-2484 2959.88,-2513.62 2702.03,-2528.48 2567.6,-2534.16"/> +<ellipse fill="#e5b030" fill-opacity="0.733333" stroke="#e5b030stroke-opacity="0.733333" cx="2968" cy="-954" rx="86.3847" ry="18"/> 
-<polygon fill="blackstroke="blackpoints="2567.2,-2530.68 2557.35,-2534.59 2567.49,-2537.67 2567.2,-2530.68"/>+<text text-anchor="middlex="2968y="-950.3" font-family="Times,serif" font-size="14.00">pnj:jeandemontillyfils</text>
 </g> </g>
-<!-- lore:organisations:famille_von_schencker&#45;&gt;lore:lieux:zurich --> +<!-- lore:corpos:esprit&#45;&gt;pnj:jeandemontillyfils --> 
-<g id="edge222" class="edge"><title>lore:organisations:famille_von_schencker&#45;&gt;lore:lieux:zurich</title> +<g id="edge342" class="edge"><title>lore:corpos:esprit&#45;&gt;pnj:jeandemontillyfils</title> 
-<path fill="none" stroke="black" d="M3284.72,-868.911C3305.7,-866.97 3327.51,-865.205 3348,-864 3880.19,-832.692 5594.08,-815.266 5978.84,-811.692"/> +<path fill="none" stroke="black" d="M2638.15,-1013.1C2647.08,-1011.37 2656.28,-1009.63 2665,-1008 2741.79,-993.662 2829.99,-977.85 2891.42,-967.261"/> 
-<polygon fill="black" stroke="black" points="5979.06,-815.19 5989.03,-811.597 5979,-808.19 5979.06,-815.19"/>+<polygon fill="black" stroke="black" points="2892.17,-970.685 2901.43,-965.542 2890.98,-963.786 2892.17,-970.685"/>
 </g> </g>
-<!-- lore:organisations:famille_von_schencker&#45;&gt;lore:corpos:saeder&#45;krupp --> +<!-- lore:lieux:paris&#45;&gt;lore:corpos:ares --> 
-<g id="edge219" class="edge"><title>lore:organisations:famille_von_schencker&#45;&gt;lore:corpos:saeder&#45;krupp</title> +<g id="edge462" class="edge"><title>lore:lieux:paris&#45;&gt;lore:corpos:ares</title> 
-<path fill="none" stroke="black" d="M3318.2,-889.904C3472.28,-898.034 3724.39,-913.364 3941,-936 4490.41,-993.416 5680.94,-975.955 6055,-1296 6197.72,-1418.11 6246,-1485.17 6246,-1673 6246,-1819 6246,-1819 6246,-1819 6246,-2149.44 6353.69,-2297.39 6148,-2556 6073.63,-2649.51 6033.49,-2659.75 5921,-2700 5797.05,-2744.34 5731.08,-2655.39 5627,-2736 5593.4,-2762.03 5592,-2782.5 5592,-2825 5592,-2899 5592,-2899 5592,-2899 5592,-2941.84 5598.45,-2957.97 5629,-2988 5660.02,-3018.49 5691.91,-2990.8 5720,-3024 5734.47,-3041.1 5738.74,-3066.55 5739.67,-3085.86"/> +<path fill="none" stroke="black" d="M2481.47,-1080.33C2435.16,-1025.4 2294,-843.507 2294,-667 2294,-667 2294,-667 2294,-593 2294,-517.878 2055.71,-476.067 1932.67,-459.485"/> 
-<polygon fill="black" stroke="black" points="5736.17,-3085.94 5739.89,-3095.86 5743.17,-3085.79 5736.17,-3085.94"/>+<polygon fill="black" stroke="black" points="1932.95,-455.992 1922.58,-458.146 1932.03,-462.931 1932.95,-455.992"/>
 </g> </g>
-<!-- lore:organisations:famille_von_schencker&#45;&gt;lore:organisations:mmar --> +<!-- lore:lieux:paris&#45;&gt;lore:lieux:france --> 
-<g id="edge223" class="edge"><title>lore:organisations:famille_von_schencker&#45;&gt;lore:organisations:mmar</title> +<g id="edge460" class="edge"><title>lore:lieux:paris&#45;&gt;lore:lieux:france</title> 
-<path fill="none" stroke="black" d="M3063.87,-869.078C3043.32,-867.158 3022.02,-865.358 3002,-864 2514.85,-830.952 1931.65,-817.255 1696.25,-812.796"/> +<path fill="none" stroke="black" d="M2535.94,-1112C2566.29,-1122.84 2607.85,-1138.39 2638.93,-1150.52"/> 
-<polygon fill="black" stroke="black" points="1696.04,-809.291 1685.98,-812.603 1695.91,-816.29 1696.04,-809.291"/>+<polygon fill="black" stroke="black" points="2638.04,-1153.93 2648.62,-1154.33 2640.59,-1147.41 2638.04,-1153.93"/>
 </g> </g>
-<!-- lore:organisations:famille_von_schencker&#45;&gt;pnj:von_schencker_junior --> +<!-- lore:lieux:paris&#45;&gt;lore:corpos:esprit --> 
-<g id="edge221" class="edge"><title>lore:organisations:famille_von_schencker&#45;&gt;pnj:von_schencker_junior</title> +<g id="edge461" class="edge"><title>lore:lieux:paris&#45;&gt;lore:corpos:esprit</title> 
-<path fill="none" stroke="black" d="M3168.01,-900.191C3161.06,-910.124 3151.51,-923.164 3145,-936 3134.9,-955.895 3127.57,-980.145 3121.54,-998.305"/> +<path fill="none" stroke="black" d="M2516.87,-1080.76C2528.72,-1071.55 2543.72,-1059.88 2556.73,-1049.77"/> 
-<polygon fill="black" stroke="black" points="3118.16,-997.362 3118.23,-1007.96 3124.78,-999.636 3118.16,-997.362"/>+<polygon fill="black" stroke="black" points="2559.18,-1052.29 2564.93,-1043.39 2554.89,-1046.77 2559.18,-1052.29"/>
 </g> </g>
-<!-- lore:organisations:famille_von_schencker&#45;&gt;pnj:marinavonschenker --> +<!-- pj:endol&#45;&gt;pj:eidolon --> 
-<g id="edge218" class="edge"><title>lore:organisations:famille_von_schencker&#45;&gt;pnj:marinavonschenker</title> +<g id="edge182" class="edge"><title>pj:endol&#45;&gt;pj:eidolon</title> 
-<path fill="none" stroke="black" d="M3196.71,-900.275C3205.29,-908.712 3214.9,-919.015 3222.87,-928.267"/> +<path fill="none" stroke="black" d="M396.366,-822.16C348.96,-840.575 262,-882.475 262,-953 262,-1027 262,-1027 262,-1027 262,-1123.17 230,-1144.83 230,-1241 230,-3043 230,-3043 230,-3043 230,-3143.52 372.575,-3172.89 454.322,-3181.46"/> 
-<polygon fill="black" stroke="black" points="3220.29,-930.63 3229.39,-936.055 3225.65,-926.139 3220.29,-930.63"/>+<polygon fill="black" stroke="black" points="454.169,-3184.97 464.462,-3182.45 454.849,-3178 454.169,-3184.97"/>
 </g> </g>
-<!-- pnj:marinavonschenker&#45;&gt;lore:lieux:munich --> +<!-- pj:endol&#45;&gt;pnj:az_ebo --> 
-<g id="edge391" class="edge"><title>pnj:marinavonschenker&#45;&gt;lore:lieux:munich</title> +<g id="edge181" class="edge"><title>pj:endol&#45;&gt;pnj:az_ebo</title> 
-<path fill="none" stroke="black" d="M3239.18,-972.326C3238.62,-991.244 3235.45,-1021.8 3222,-1044 3137.8,-1183.02 2996.08,-1138.24 2957,-1296 2920.34,-1444 3126,-1808.52 3126,-1961 3126,-2035 3126,-2035 3126,-2035 3126,-2075.45 3132.71,-2085.47 3145,-2124 3173.98,-2214.85 3230,-2225.64 3230,-2321 3230,-2395 3230,-2395 3230,-2395 3230,-2437.67 3228.46,-2458.84 3194,-2484 3144.47,-2520.16 2743.63,-2532.14 2568.45,-2535.67"/> +<path fill="none" stroke="black" d="M418.509,-791.973C412.599,-765.343 408,-712.205 408,-667 408,-667 408,-667 408,-593 408,-552.995 408.402,-506.652 410.988,-478.079"/> 
-<polygon fill="black" stroke="black" points="2568.18,-2532.18 2558.25,-2535.87 2568.32,-2539.18 2568.18,-2532.18"/>+<polygon fill="black" stroke="black" points="414.477,-478.371 412.09,-468.049 407.519,-477.607 414.477,-478.371"/>
 </g> </g>
-<!-- pnj:marinavonschenker&#45;&gt;lore:corpos:saeder&#45;krupp --> +<!-- pj:endol&#45;&gt;pnj:gutwayn --> 
-<g id="edge392" class="edge"><title>pnj:marinavonschenker&#45;&gt;lore:corpos:saeder&#45;krupp</title> +<g id="edge180" class="edge"><title>pj:endol&#45;&gt;pnj:gutwayn</title> 
-<path fill="none" stroke="black" d="M3318.61,-963.529C3347.94,-966.486 3381.46,-969.645 3412,-972 3697.38,-994.001 3769.86,-983.144 4055,-1008 4204.68,-1021.05 5409.48,-1151.42 5785,-1224 6046.2,-1274.49 6183.55,-1174.38 6366,-1368 6424.44,-1430.01 6436,-1659.79 6436,-1745 6436,-1963 6436,-1963 6436,-1963 6436,-2316.51 6295.65,-2656.19 6242,-2700 6140.6,-2782.8 5755.44,-2653.25 5654,-2736 5622.25,-2761.9 5630,-2784.03 5630,-2825 5630,-2899 5630,-2899 5630,-2899 5630,-2939.97 5626.29,-2957.82 5654,-2988 5685.66,-3022.49 5726.14,-2985.65 5753,-3024 5765.76,-3042.22 5760.02,-3067.66 5752.4,-3086.68"/> +<path fill="none" stroke="black" d="M454.032,-797.125C485.338,-785.273 536.303,-767.018 573.956,-754.133"/> 
-<polygon fill="black" stroke="black" points="5749.14,-3085.4 5748.33,-3095.97 5755.55,-3088.21 5749.14,-3085.4"/>+<polygon fill="black" stroke="black" points="575.368,-757.35 583.708,-750.816 573.114,-750.723 575.368,-757.35"/>
 </g> </g>
-<!-- pnj:marinavonschenker&#45;&gt;pnj:von_schencker_junior --> +<!-- pj:splenters&#45;&gt;lore:lieux:munich --> 
-<g id="edge393" class="edge"><title>pnj:marinavonschenker&#45;&gt;pnj:von_schencker_junior</title> +<g id="edge231" class="edge"><title>pj:splenters&#45;&gt;lore:lieux:munich</title> 
-<path fill="none" stroke="black" d="M3214,-971.471C3196.73,-981.279 3173.4,-993.815 3152.98,-1004.29"/> +<path fill="none" stroke="black" d="M1967.11,-540.072C1955.71,-566.329 1936,-618.47 1936,-665 1936,-739 1936,-739 1936,-739 1936,-837.314 1992,-854.686 1992,-953 1992,-1603 1992,-1603 1992,-1603 1992,-1804.54 2136,-1831.46 2136,-2033 2136,-2251 2136,-2251 2136,-2251 2136,-2541.3 2307.84,-2828.33 2328,-2844 2369.88,-2876.55 2710.98,-2890.29 2869.98,-2894.97"/> 
-<polygon fill="black" stroke="black" points="3151.16,-1001.29 3143.83,-1008.94 3154.34,-1007.53 3151.16,-1001.29"/>+<polygon fill="black" stroke="black" points="2870.09,-2898.48 2880.18,-2895.27 2870.29,-2891.48 2870.09,-2898.48"/>
 </g> </g>
-<!-- pnj:marinavonschenker&#45;&gt;lore:organisations:famille_von_schencker --> +<!-- pnj:iruka&#45;&gt;lore:lieux:munich --> 
-<g id="edge394" class="edge"><title>pnj:marinavonschenker&#45;&gt;lore:organisations:famille_von_schencker</title> +<g id="edge186" class="edge"><title>pnj:iruka&#45;&gt;lore:lieux:munich</title> 
-<path fill="none" stroke="black" d="M3217.99,-936.411C3209.42,-928.031 3199.73,-917.682 3191.64,-908.332"/> +<path fill="none" stroke="black" d="M3710.65,-2334.33C3787.71,-2364.32 3991.36,-2453.12 4103,-2592 4173.23,-2679.36 4189.75,-2787.4 4093,-2844 4002.27,-2897.07 3279.76,-2898.6 3033.15,-2897.55"/> 
-<polygon fill="black" stroke="black" points="3194.13,-905.852 3185.02,-900.447 3188.77,-910.355 3194.13,-905.852"/>+<polygon fill="black" stroke="black" points="3032.84,-2894.05 3022.82,-2897.5 3032.8,-2901.05 3032.84,-2894.05"/>
 </g> </g>
-<!-- lore:corpos:lone_star --> +<!-- pnj:iruka&#45;&gt;lore:organisations:mi&#45;seng_lung --> 
-<g id="node122" class="node"><title>lore:corpos:lone_star</title> +<g id="edge184" class="edge"><title>pnj:iruka&#45;&gt;lore:organisations:mi&#45;seng_lung</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfeecx="2380" cy="-3186" rx="87.1846" ry="18"/> +<path fill="none" stroke="blackd="M3652.86,-2335.64C3628.13,-2345.65 3591.22,-2360.47 3560,-2376 3531.81,-2390.02 3528.48,-2400.95 3499,-2412 3441.2,-2433.66 3373.38,-2446.73 3317.41,-2454.47"/> 
-<text text-anchor="middlex="2380y="-3182.3" font-family="Times,serif" font-size="14.00">lore:corpos:lone_star</text>+<polygon fill="blackstroke="blackpoints="3316.9,-2451 3307.46,-2455.8 3317.83,-2457.94 3316.9,-2451"/>
 </g> </g>
-<!-- lore:corpos:lone_star&#45;&gt;lore:lieux:munich --> +<!-- pnj:iruka&#45;&gt;pnj:yu_mi&#45;seng --> 
-<g id="edge225" class="edge"><title>lore:corpos:lone_star&#45;&gt;lore:lieux:munich</title> +<g id="edge185" class="edge"><title>pnj:iruka&#45;&gt;pnj:yu_mi&#45;seng</title> 
-<path fill="none" stroke="black" d="M2404.01,-3168.59C2435.56,-3144.87 2487,-3097.79 2487,-3043 2487,-3043 2487,-3043 2487,-2681 2487,-2641 2487,-2594.65 2487,-2566.08"/> +<path fill="none" stroke="black" d="M3721.59,-2320.02C3925.12,-2314.17 4834.53,-2276.09 5535,-2052 5537.55,-2051.18 5886,-1893.68 5886,-1891 5886,-1891 5886,-1891 5886,-1817 5886,-1588.21 5772,-1543.79 5772,-1315 5772,-1315 5772,-1315 5772,-1097 5772,-948.215 5741.81,-894.541 5634,-792 5480.55,-646.048 4811.19,-556.601 4591.86,-530.792"/> 
-<polygon fill="black" stroke="black" points="2490.5,-2566.05 2487,-2556.05 2483.5,-2566.05 2490.5,-2566.05"/>+<polygon fill="black" stroke="black" points="4592.1,-527.296 4581.76,-529.611 4591.29,-534.249 4592.1,-527.296"/>
 </g> </g>
-<!-- lore:corpos:lone_star&#45;&gt;lore:corpos:saeder&#45;krupp --> +<!-- pnj:iruka&#45;&gt;pnj:niddon --> 
-<g id="edge224" class="edge"><title>lore:corpos:lone_star&#45;&gt;lore:corpos:saeder&#45;krupp</title> +<g id="edge183" class="edge"><title>pnj:iruka&#45;&gt;pnj:niddon</title> 
-<path fill="none" stroke="black" d="M2439.97,-3172.87C2451.86,-3170.89 2464.29,-3169.12 2476,-3168 2794.46,-3137.41 5091.07,-3119.54 5627.27,-3115.76"/> +<path fill="none" stroke="black" d="M3709.69,-2309.13C3738.23,-2297.71 3781.63,-2280.35 3813.58,-2267.57"/> 
-<polygon fill="black" stroke="black" points="5627.36,-3119.26 5637.33,-3115.69 5627.31,-3112.26 5627.36,-3119.26"/>+<polygon fill="black" stroke="black" points="3815.11,-2270.73 3823.09,-2263.76 3812.51,-2264.23 3815.11,-2270.73"/>
 </g> </g>
-<!-- pnj:rebecca_muller --> +<!-- pnj:syriareanka --> 
-<g id="node123" class="node"><title>pnj:rebecca_muller</title> +<g id="node123" class="node" onclick="click(evt)"><title>pnj:syriareanka</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfee" cx="2380" cy="-2682" rx="79.0865" ry="18"/> +<ellipse fill="#e5b030" fill-opacity="0.733333" stroke="#e5b030" stroke-opacity="0.733333" cx="3656" cy="-1962" rx="64.189" ry="18"/> 
-<text text-anchor="middle" x="2380" y="-2678.3" font-family="Times,serif" font-size="14.00">pnj:rebecca_muller</text>+<text text-anchor="middle" x="3656" y="-1958.3" font-family="Times,serif" font-size="14.00">pnj:syriareanka</text>
 </g> </g>
-<!-- lore:corpos:lone_star&#45;&gt;pnj:rebecca_muller --> +<!-- lore:organisations:famille_reanka --> 
-<g id="edge226" class="edge"><title>lore:corpos:lone_star&#45;&gt;pnj:rebecca_muller</title> +<g id="node124" class="node" onclick="click(evt)"><title>lore:organisations:famille_reanka</title> 
-<path fill="none" stroke="blackd="M2374.29,-3167.95C2371,-3141.29 2371,-3088.11 2371,-3043 2371,-3043 2371,-3043 2371,-2825 2371,-2785 2371,-2738.65 2373.29,-2710.08"/> +<ellipse fill="#e323e9" fill-opacity="0.733333" stroke="#e323e9stroke-opacity="0.733333" cx="3656" cy="-2034" rx="128.077" ry="18"/> 
-<polygon fill="blackstroke="blackpoints="2376.78,-2710.35 2374.29,-2700.05 2369.82,-2709.65 2376.78,-2710.35"/>+<text text-anchor="middlex="3656y="-2030.3" font-family="Times,serif" font-size="14.00">lore:organisations:famille_reanka</text>
 </g> </g>
-<!-- pnj:rebecca_muller&#45;&gt;lore:lieux:munich --> +<!-- pnj:syriareanka&#45;&gt;lore:organisations:famille_reanka --> 
-<g id="edge574" class="edge"><title>pnj:rebecca_muller&#45;&gt;lore:lieux:munich</title> +<g id="edge190" class="edge"><title>pnj:syriareanka&#45;&gt;lore:organisations:famille_reanka</title> 
-<path fill="none" stroke="black" d="M2392.69,-2664.15C2411.36,-2639.39 2446.33,-2592.97 2468.04,-2564.16"/> +<path fill="none" stroke="black" d="M3661.9,-1980.1C3662.7,-1987.79 3662.94,-1997.05 3662.6,-2005.67"/> 
-<polygon fill="black" stroke="black" points="2471.1,-2565.92 2474.32,-2555.82 2465.51,-2561.71 2471.1,-2565.92"/>+<polygon fill="black" stroke="black" points="3659.11,-2005.48 3661.92,-2015.7 3666.09,-2005.96 3659.11,-2005.48"/>
 </g> </g>
-<!-- pnj:rebecca_muller&#45;&gt;pj:eidolon --> +<!-- lore:organisations:famille_reanka&#45;&gt;lore:corpos:saeder&#45;krupp --> 
-<g id="edge572" class="edge"><title>pnj:rebecca_muller&#45;&gt;pj:eidolon</title> +<g id="edge315" class="edge"><title>lore:organisations:famille_reanka&#45;&gt;lore:corpos:saeder&#45;krupp</title> 
-<path fill="none" stroke="black" d="M2300.82,-2680.24C1919.25,-2675.77 282.462,-2647.14 133,-2484 -39.5156,-2295.7 511.682,-2208.19 689.553,-2185.3"/> +<path fill="none" stroke="black" d="M3776.36,-2027.72C4077.18,-2014.54 4858.16,-1980.31 5145.15,-1967.73"/> 
-<polygon fill="black" stroke="black" points="690.002,-2188.77 699.482,-2184.04 689.12,-2181.83 690.002,-2188.77"/>+<polygon fill="black" stroke="black" points="5145.31,-1971.22 5155.15,-1967.29 5145.01,-1964.23 5145.31,-1971.22"/>
 </g> </g>
-<!-- pnj:rebecca_muller&#45;&gt;lore:corpos:lone_star --> +<!-- lore:organisations:famille_reanka&#45;&gt;pnj:syriareanka --> 
-<g id="edge573" class="edge"><title>pnj:rebecca_muller&#45;&gt;lore:corpos:lone_star</title> +<g id="edge314" class="edge"><title>lore:organisations:famille_reanka&#45;&gt;pnj:syriareanka</title> 
-<path fill="none" stroke="black" d="M2385.71,-2700.05C2389,-2726.71 2389,-2779.89 2389,-2825 2389,-3043 2389,-3043 2389,-3043 2389,-3083 2389,-3129.35 2386.71,-3157.92"/> +<path fill="none" stroke="black" d="M3650.08,-2015.7C3649.29,-2007.98 3649.06,-1998.71 3649.4,-1990.11"/> 
-<polygon fill="black" stroke="black" points="2383.22,-3157.65 2385.71,-3167.95 2390.18,-3158.35 2383.22,-3157.65"/>+<polygon fill="black" stroke="black" points="3652.9,-1990.32 3650.1,-1980.1 3645.92,-1989.84 3652.9,-1990.32"/>
 </g> </g>
-<!-- pnj:sokouzy&#45;&gt;lore:lieux:munich --> +<!-- pnj:therez_reanka --> 
-<g id="edge364" class="edge"><title>pnj:sokouzy&#45;&gt;lore:lieux:munich</title> +<g id="node129" class="node" onclick="click(evt)"><title>pnj:therez_reanka</title> 
-<path fill="none" stroke="blackd="M1268.99,-2334.44C1228.37,-2345.44 1169.01,-2362.36 1149,-2376 1131.78,-2387.74 1050.28,-2441.71 1091,-2484 1136.89,-2531.65 2112.75,-2536.6 2405.04,-2537"/> +<ellipse fill="#e5b030" fill-opacity="0.733333" stroke="#e5b030stroke-opacity="0.733333" cx="1809" cy="-2106" rx="73.387" ry="18"/> 
-<polygon fill="blackstroke="blackpoints="2405.14,-2540.5 2415.14,-2537.02 2405.15,-2533.5 2405.14,-2540.5"/>+<text text-anchor="middlex="1809y="-2102.3" font-family="Times,serif" font-size="14.00">pnj:therez_reanka</text>
 </g> </g>
-<!-- pnj:sokouzy&#45;&gt;pnj:jibril --> +<!-- lore:organisations:famille_reanka&#45;&gt;pnj:therez_reanka --> 
-<g id="edge363" class="edge"><title>pnj:sokouzy&#45;&gt;pnj:jibril</title> +<g id="edge313" class="edge"><title>lore:organisations:famille_reanka&#45;&gt;pnj:therez_reanka</title> 
-<path fill="none" stroke="black" d="M1318.11,-2304.06C1331.26,-2277.98 1354,-2226.07 1354,-2179 1354,-2179 1354,-2179 1354,-2105 1354,-1999.93 1241.54,-1948.09 1314,-1872 1358.98,-1824.77 3471.07,-1759.11 3823.41,-1748.48"/> +<path fill="none" stroke="black" d="M3534.41,-2039.75C3185.13,-2053.15 2185.29,-2091.03 1891.25,-2101.99"/> 
-<polygon fill="black" stroke="black" points="3823.67,-1751.97 3833.56,-1748.18 3823.45,-1744.98 3823.67,-1751.97"/>+<polygon fill="black" stroke="black" points="1890.95,-2098.5 1881.09,-2102.37 1891.21,-2105.5 1890.95,-2098.5"/>
 </g> </g>
-<!-- pnj:sokouzy&#45;&gt;pnj:youzo --> +<!-- pnj:tonnyslaters --> 
-<g id="edge365" class="edge"><title>pnj:sokouzy&#45;&gt;pnj:youzo</title> +<g id="node125" class="node" onclick="click(evt)"><title>pnj:tonnyslaters</title> 
-<path fill="none" stroke="blackd="M1270.83,-2334.94C1263.61,-2336.7 1256.11,-2338.44 1249,-2340 1166.33,-2358.13 1144.35,-2356.45 1062,-2376 1055.42,-2377.56 1048.47,-2379.38 1041.61,-2381.22"/> +<ellipse fill="#e5b030" fill-opacity="0.733333" stroke="#e5b030stroke-opacity="0.733333" cx="7053" cy="-2034" rx="67.6881" ry="18"/> 
-<polygon fill="blackstroke="blackpoints="1040.38,-2377.93 1031.65,-2383.93 1042.22,-2384.68 1040.38,-2377.93"/>+<text text-anchor="middlex="7053y="-2030.3" font-family="Times,serif" font-size="14.00">pnj:tonnyslaters</text>
 </g> </g>
-<!-- lore:gangs:fils_de_sauron&#45;&gt;lore:lieux:gemito --> +<!-- pnj:tonnyslaters&#45;&gt;lore:corpos:saeder&#45;krupp --> 
-<g id="edge237" class="edge"><title>lore:gangs:fils_de_sauron&#45;&gt;lore:lieux:gemito</title> +<g id="edge194" class="edge"><title>pnj:tonnyslaters&#45;&gt;lore:corpos:saeder&#45;krupp</title> 
-<path fill="none" stroke="black" d="M5247.85,-1332.3C5245.74,-1350.67 5237.55,-1380.26 5226,-1404 5200.55,-1456.32 5127.51,-1589.42 5078,-1620 5051.62,-1636.29 4865.05,-1656.43 4757.96,-1666.55"/> +<path fill="none" stroke="black" d="M6992.14,-2025.96C6959.52,-2022.43 6918.62,-2018.41 6882,-2016 6312.56,-1978.47 5629.3,-1967.18 5364.99,-1964.08"/> 
-<polygon fill="black" stroke="black" points="4757.48,-1663.08 4747.85,-1667.5 4758.14,-1670.05 4757.48,-1663.08"/>+<polygon fill="black" stroke="black" points="5364.66,-1960.57 5354.62,-1963.96 5364.58,-1967.57 5364.66,-1960.57"/>
 </g> </g>
-<!-- lore:corpos:aztechnology&#45;&gt;lore:corpos:gomorrah --> +<!-- lore:corpos:evo --> 
-<g id="edge438" class="edge"><title>lore:corpos:aztechnology&#45;&gt;lore:corpos:gomorrah</title> +<g id="node126" class="node" onclick="click(evt)"><title>lore:corpos:evo</title> 
-<path fill="none" stroke="blackd="M2789.9,-972.104C2790.7,-979.791 2790.94,-989.054 2790.6,-997.665"/> +<ellipse fill="#41c2b5" fill-opacity="0.733333" stroke="#41c2b5stroke-opacity="0.733333" cx="7053" cy="-1962" rx="67.6881" ry="18"/> 
-<polygon fill="blackstroke="blackpoints="2787.11,-997.48 2789.92,-1007.7 2794.09,-997.96 2787.11,-997.48"/>+<text text-anchor="middlex="7053y="-1958.3" font-family="Times,serif" font-size="14.00">lore:corpos:evo</text>
 </g> </g>
-<!-- lore:lieux:la_structure --> +<!-- pnj:tonnyslaters&#45;&gt;lore:corpos:evo --> 
-<g id="node144" class="node"><title>lore:lieux:la_structure</title> +<g id="edge195" class="edge"><title>pnj:tonnyslaters&#45;&gt;lore:corpos:evo</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfeecx="2784" cy="-882" rx="87.1846" ry="18"/> +<path fill="none" stroke="blackd="M7047.12,-2016.05C7046.3,-2008.35 7046.06,-1999.03 7046.39,-1990.36"/> 
-<text text-anchor="middlex="2784y="-878.3" font-family="Times,serif" font-size="14.00">lore:lieux:la_structure</text>+<polygon fill="blackstroke="blackpoints="7049.89,-1990.49 7047.09,-1980.28 7042.91,-1990.01 7049.89,-1990.49"/>
 </g> </g>
-<!-- lore:corpos:aztechnology&#45;&gt;lore:lieux:la_structure --> +<!-- lore:corpos:evo&#45;&gt;pnj:tonnyslaters --> 
-<g id="edge437" class="edge"><title>lore:corpos:aztechnology&#45;&gt;lore:lieux:la_structure</title> +<g id="edge254" class="edge"><title>lore:corpos:evo&#45;&gt;pnj:tonnyslaters</title> 
-<path fill="none" stroke="black" d="M2778.08,-935.697C2777.29,-927.983 2777.06,-918.712 2777.4,-910.112"/> +<path fill="none" stroke="black" d="M7058.91,-1980.28C7059.71,-1988.03 7059.94,-1997.36 7059.59,-2006.01"/> 
-<polygon fill="black" stroke="black" points="2780.9,-910.324 2778.1,-900.104 2773.92,-909.836 2780.9,-910.324"/>+<polygon fill="black" stroke="black" points="7056.09,-2005.83 7058.88,-2016.05 7063.08,-2006.33 7056.09,-2005.83"/>
 </g> </g>
-<!-- pnj:jinks&#45;&gt;lore:lieux:munich --> +<!-- pnj:le_boss_d_ekhart&#45;&gt;lore:corpos:saeder&#45;krupp --> 
-<g id="edge360" class="edge"><title>pnj:jinks&#45;&gt;lore:lieux:munich</title> +<g id="edge284" class="edge"><title>pnj:le_boss_d_ekhart&#45;&gt;lore:corpos:saeder&#45;krupp</title> 
-<path fill="none" stroke="black" d="M1842.15,-892.62C1789.09,-909.24 1691,-949.082 1691,-1025 1691,-1171 1691,-1171 1691,-1171 1691,-1333.66 1767,-1366.34 1767,-1529 1767,-1603 1767,-1603 1767,-1603 1767,-1799.96 1722.93,-2346.55 1864,-2484 1902.25,-2521.27 2245.44,-2532.49 2405.54,-2535.74"/> +<path fill="none" stroke="black" d="M4066.97,-1115.85C4094.69,-1157.54 4155.13,-1269.31 4193,-1368 4282.44,-1601.12 4152.09,-1753.19 4348,-1908 4415.98,-1961.72 5040.67,-1936.58 5127,-1944 5140.64,-1945.17 5155.01,-1946.68 5169,-1948.32"/> 
-<polygon fill="black" stroke="black" points="2405.75,-2539.24 2415.81,-2535.94 2405.88,-2532.24 2405.75,-2539.24"/>+<polygon fill="black" stroke="black" points="5168.75,-1951.82 5179.09,-1949.53 5169.58,-1944.87 5168.75,-1951.82"/>
 </g> </g>
-<!-- pnj:jinks&#45;&gt;pnj:fgf --> +<!-- pnj:le_boss_d_ekhart&#45;&gt;lore:lieux:europe --> 
-<g id="edge361" class="edge"><title>pnj:jinks&#45;&gt;pnj:fgf</title> +<g id="edge286" class="edge"><title>pnj:le_boss_d_ekhart&#45;&gt;lore:lieux:europe</title> 
-<path fill="none" stroke="black" d="M1880.91,-900.275C1881.71,-908.03 1881.94,-917.362 1881.59,-926.005"/> +<path fill="none" stroke="black" d="M4053.6,-1116.08C4053.48,-1135.06 4050.87,-1165.94 4037,-1188 3944.71,-1334.84 3874.02,-1342.12 3712,-1404 3511.91,-1480.42 3258.85,-1511.7 3134.32,-1523.15"/> 
-<polygon fill="black" stroke="black" points="1878.09,-925.832 1880.88,-936.055 1885.08,-926.327 1878.09,-925.832"/>+<polygon fill="black" stroke="black" points="3133.78,-1519.68 3124.13,-1524.07 3134.4,-1526.66 3133.78,-1519.68"/>
 </g> </g>
-<!-- pnj:herberdevaucanson&#45;&gt;lore:lieux:paris --> +<!-- pnj:le_boss_d_ekhart&#45;&gt;pnj:ekhart --> 
-<g id="edge273" class="edge"><title>pnj:herberdevaucanson&#45;&gt;lore:lieux:paris</title> +<g id="edge285" class="edge"><title>pnj:le_boss_d_ekhart&#45;&gt;pnj:ekhart</title> 
-<path fill="none" stroke="black" d="M6213.38,-2771.17C6260.79,-2797.26 6354.02,-2848.58 6405.57,-2876.95"/> +<path fill="none" stroke="black" d="M4041.53,-1116.13C4033.09,-1125.4 4021.5,-1136.96 4010.73,-1146.91"/> 
-<polygon fill="black" stroke="black" points="6403.94,-2880.05 6414.39,-2881.8 6407.32,-2873.92 6403.94,-2880.05"/>+<polygon fill="black" stroke="black" points="4008.16,-1144.51 4003.08,-1153.81 4012.85,-1149.71 4008.16,-1144.51"/>
 </g> </g>
-<!-- pnj:herberdevaucanson&#45;&gt;lore:corpos:esprit --> +<!-- pnj:ono&#45;&gt;lore:lieux:munich --> 
-<g id="edge274" class="edge"><title>pnj:herberdevaucanson&#45;&gt;lore:corpos:esprit</title> +<g id="edge221" class="edge"><title>pnj:ono&#45;&gt;lore:lieux:munich</title> 
-<path fill="none" stroke="black" d="M6144.49,-2770.44C6112.86,-2781.7 6068.28,-2796.94 6033.32,-2808.45"/> +<path fill="none" stroke="black" d="M3632.51,-2401.93C3761.82,-2429.78 4205.99,-2543.19 4119,-2772 4103.78,-2812.02 4093.63,-2825.53 4055,-2844 3963.64,-2887.69 3272.3,-2895.36 3032.56,-2896.71"/> 
-<polygon fill="black" stroke="black" points="6032.14,-2805.15 6023.73,-2811.59 6034.32,-2811.8 6032.14,-2805.15"/>+<polygon fill="black" stroke="black" points="3032.5,-2893.21 3022.52,-2896.77 3032.53,-2900.21 3032.5,-2893.21"/>
 </g> </g>
-<!-- lore:planques:box_m2&#45;&gt;lore:lieux:munich --> +<!-- pnj:ono&#45;&gt;lore:organisations:mi&#45;seng_lung --> 
-<g id="edge370" class="edge"><title>lore:planques:box_m2&#45;&gt;lore:lieux:munich</title> +<g id="edge223" class="edge"><title>pnj:ono&#45;&gt;lore:organisations:mi&#45;seng_lung</title> 
-<path fill="none" stroke="black" d="M3910.27,-2479.49C3898.62,-2481.25 3886.48,-2482.85 3875,-2484 3381.25,-2533.27 2783.84,-2537.51 2568.89,-2537.33"/> +<path fill="none" stroke="black" d="M3571.86,-2407.3C3566.34,-2409.03 3560.54,-2410.67 3555,-2412 3475.17,-2431.12 3383.11,-2444.96 3313.41,-2453.69"/> 
-<polygon fill="black" stroke="black" points="2568.64,-2533.83 2558.64,-2537.32 2568.63,-2540.83 2568.64,-2533.83"/>+<polygon fill="black" stroke="black" points="3312.78,-2450.24 3303.29,-2454.94 3313.64,-2457.18 3312.78,-2450.24"/>
 </g> </g>
-<!-- lore:planques:box_m2&#45;&gt;pnj:ilona --> +<!-- pnj:ono&#45;&gt;pnj:iruka --> 
-<g id="edge369" class="edge"><title>lore:planques:box_m2&#45;&gt;pnj:ilona</title> +<g id="edge222" class="edge"><title>pnj:ono&#45;&gt;pnj:iruka</title> 
-<path fill="none" stroke="black" d="M3977.62,-2447.96C3985.12,-2437.64 3996.31,-2424.16 4006,-2412 4031.09,-2380.5 4038.44,-2373.35 4061,-2340 4075.33,-2318.82 4090.09,-2293.7 4101.93,-2275.56"/> +<path fill="none" stroke="black" d="M3615.79,-2377.81C3627,-2368.25 3641.65,-2355.74 3654.13,-2345.08"/> 
-<polygon fill="black" stroke="black" points="4105.17,-2277.02 4107.84,-2266.77 4099.36,-2273.12 4105.17,-2277.02"/>+<polygon fill="black" stroke="black" points="3656.63,-2347.56 3661.96,-2338.4 3652.08,-2342.23 3656.63,-2347.56"/>
 </g> </g>
-<!-- lore:planques:box_m2&#45;&gt;pnj:othmar --> +<!-- pnj:therez_reanka&#45;&gt;lore:lieux:tir_na_nog --> 
-<g id="edge372" class="edge"><title>lore:planques:box_m2&#45;&gt;pnj:othmar</title> +<g id="edge229" class="edge"><title>pnj:therez_reanka&#45;&gt;lore:lieux:tir_na_nog</title> 
-<path fill="none" stroke="black" d="M3971.36,-2447.87C3975.85,-2423.33 3988.7,-2377.94 3999.07,-2349.17"/> +<path fill="none" stroke="black" d="M1783.11,-2088.89C1720.69,-2050.21 1556.65,-1949.56 1416,-1872 1172.24,-1737.59 1058.98,-1761.19 880,-1548 751.746,-1395.23 674.74,-1377.34 612,-1188 606.967,-1172.81 609.969,-1167.87 612,-1152 613.563,-1139.79 657.143,-976.006 674.737,-910.145"/> 
-<polygon fill="black" stroke="black" points="4002.37,-2350.34 4002.62,-2339.75 3995.82,-2347.87 4002.37,-2350.34"/>+<polygon fill="black" stroke="black" points="678.221,-910.664 677.422,-900.099 671.459,-908.857 678.221,-910.664"/>
 </g> </g>
-<!-- lore:planques:box_m2&#45;&gt;pnj:rolf --> +<!-- pnj:therez_reanka&#45;&gt;pnj:tristanodunn --> 
-<g id="edge371" class="edge"><title>lore:planques:box_m2&#45;&gt;pnj:rolf</title> +<g id="edge228" class="edge"><title>pnj:therez_reanka&#45;&gt;pnj:tristanodunn</title> 
-<path fill="none" stroke="black" d="M3957.38,-2448.05C3952.94,-2440.18 3948.33,-2430.62 3944.67,-2421.79"/> +<path fill="none" stroke="black" d="M1811.57,-2088C1815.36,-2061.4 1822,-2008.3 1822,-1963 1822,-1963 1822,-1963 1822,-1097 1822,-955.412 1775.69,-926.013 1730,-792 1677.66,-638.482 1600,-613.195 1600,-451 1600,-451 1600,-451 1600,-377 1600,-336.031 1607.32,-314.41 1576,-288 1539.66,-257.353 1236.46,-242.766 1090.25,-237.462"/> 
-<polygon fill="black" stroke="black" points="3947.86,-2420.34 3940.98,-2412.28 3941.33,-2422.86 3947.86,-2420.34"/>+<polygon fill="black" stroke="black" points="1090.12,-233.955 1080,-237.096 1089.87,-240.951 1090.12,-233.955"/>
 </g> </g>
-<!-- pnj:marinemosangle --> +<!-- pnj:therez_reanka&#45;&gt;lore:organisations:famille_reanka --> 
-<g id="node131" class="node"><title>pnj:marinemosangle</title> +<g id="edge227" class="edge"><title>pnj:therez_reanka&#45;&gt;lore:organisations:famille_reanka</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfee" cx="6405cy="-3258" rx="81.7856" ry="18"/> +<path fill="none" stroke="blackd="M1880.82,-2102.17C2158.09,-2091.48 3160.93,-2053.46 3523.81,-2039.87"/> 
-<text text-anchor="middlex="6405y="-3254.3" font-family="Times,serif" font-size="14.00">pnj:marinemosangle</text>+<polygon fill="blackstroke="blackpoints="3523.98,-2043.37 3533.84,-2039.5 3523.71,-2036.37 3523.98,-2043.37"/>
 </g> </g>
-<!-- pnj:marinemosangle&#45;&gt;lore:lieux:zurich --> +<!-- lore:organisations:ordre --> 
-<g id="edge288" class="edge"><title>pnj:marinemosangle&#45;&gt;lore:lieux:zurich</title> +<g id="node130" class="node" onclick="click(evt)"><title>lore:organisations:ordre</title> 
-<path fill="none" stroke="blackd="M6479.09,-3250.2C6606.79,-3236.71 6859.47,-3201.66 6909,-3132 6918.27,-3118.96 6909.06,-3112 6909,-3096 6908.78,-3040.44 6908,-3026.56 6908,-2971 6908,-2971 6908,-2971 6908,-2825 6908,-2504.2 6834,-2427.8 6834,-2107 6834,-2107 6834,-2107 6834,-1745 6834,-1384 6195.61,-870.15 6187,-864 6164.09,-847.636 6135.39,-835.292 6110.7,-826.653"/> +<ellipse fill="#e323e9" fill-opacity="0.733333" stroke="#e323e9stroke-opacity="0.733333" cx="1660" cy="-954" rx="95.5831" ry="18"/> 
-<polygon fill="blackstroke="blackpoints="6111.7,-823.296 6101.1,-823.408 6109.45,-829.927 6111.7,-823.296"/>+<text text-anchor="middlex="1660y="-950.3" font-family="Times,serif" font-size="14.00">lore:organisations:ordre</text>
 </g> </g>
-<!-- pnj:marinemosangle&#45;&gt;lore:corpos:saeder&#45;krupp --> +<!-- pnj:therez_reanka&#45;&gt;lore:organisations:ordre --> 
-<g id="edge287" class="edge"><title>pnj:marinemosangle&#45;&gt;lore:corpos:saeder&#45;krupp</title> +<g id="edge230" class="edge"><title>pnj:therez_reanka&#45;&gt;lore:organisations:ordre</title> 
-<path fill="none" stroke="black" d="M6339.11,-3247.22C6276.17,-3237.52 6178.76,-3221.6 6095,-3204 5991.24,-3182.19 5871.94,-3151.13 5801.15,-3132.06"/> +<path fill="none" stroke="black" d="M1803.94,-2087.68C1796.64,-2061.11 1784,-2008.56 1784,-1963 1784,-1963 1784,-1963 1784,-1097 1784,-1053.07 1769.99,-1041.01 1741,-1008 1729.99,-995.467 1715.34,-984.686 1701.53,-976.181"/> 
-<polygon fill="black" stroke="black" points="5802.06,-3128.67 5791.49,-3129.45 5800.23,-3135.43 5802.06,-3128.67"/>+<polygon fill="black" stroke="black" points="1703.01,-972.992 1692.62,-970.926 1699.46,-979.021 1703.01,-972.992"/>
 </g> </g>
-<!-- pnj:alphonsemosangle --> +<!-- lore:organisations:ordre&#45;&gt;lore:corpos:ares --> 
-<g id="node132" class="node"><title>pnj:alphonsemosangle</title> +<g id="edge369" class="edge"><title>lore:organisations:ordre&#45;&gt;lore:corpos:ares</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfeecx="6405" cy="-3186" rx="90.1842" ry="18"/> +<path fill="none" stroke="blackd="M1671.6,-935.928C1688.01,-910.09 1716,-858.966 1716,-811 1716,-811 1716,-811 1716,-593 1716,-535.226 1775.49,-493.206 1818.26,-470.461"/> 
-<text text-anchor="middlex="6405y="-3182.3" font-family="Times,serif" font-size="14.00">pnj:alphonsemosangle</text>+<polygon fill="blackstroke="blackpoints="1820.08,-473.457 1827.37,-465.767 1816.88,-467.234 1820.08,-473.457"/>
 </g> </g>
-<!-- pnj:marinemosangle&#45;&gt;pnj:alphonsemosangle --> +<!-- lore:organisations:ordre&#45;&gt;lore:lieux:tir_na_nog --> 
-<g id="edge289" class="edge"><title>pnj:marinemosangle&#45;&gt;pnj:alphonsemosangle</title> +<g id="edge370" class="edge"><title>lore:organisations:ordre&#45;&gt;lore:lieux:tir_na_nog</title> 
-<path fill="none" stroke="black" d="M6399.08,-3239.7C6398.29,-3231.98 6398.06,-3222.71 6398.4,-3214.11"/> +<path fill="none" stroke="black" d="M1572.35,-946.726C1386.82,-933.447 956.219,-902.627 770.202,-889.313"/> 
-<polygon fill="black" stroke="black" points="6401.9,-3214.32 6399.1,-3204.1 6394.92,-3213.84 6401.9,-3214.32"/>+<polygon fill="black" stroke="black" points="770.411,-885.819 760.186,-888.596 769.911,-892.801 770.411,-885.819"/>
 </g> </g>
-<!-- pnj:alphonsemosangle&#45;&gt;lore:lieux:zurich --> +<!-- lore:corpos:mitsuhama --> 
-<g id="edge327" class="edge"><title>pnj:alphonsemosangle&#45;&gt;lore:lieux:zurich</title> +<g id="node131" class="node" onclick="click(evt)"><title>lore:corpos:mitsuhama</title> 
-<path fill="none" stroke="blackd="M6422.88,-3168.24C6445.82,-3147.75 6487.71,-3113.63 6530,-3096 6678.6,-3034.04 6870,-3132 6870,-2971 6870,-2971 6870,-2971 6870,-2825 6870,-2504.2 6796,-2427.8 6796,-2107 6796,-2107 6796,-2107 6796,-1745 6796,-1498.66 6561.43,-1378.6 6269,-1008 6218.26,-943.702 6216.95,-916.401 6154,-864 6137.8,-850.511 6117.62,-838.9 6099.8,-830.014"/> +<ellipse fill="#41c2b5" fill-opacity="0.733333" stroke="#41c2b5stroke-opacity="0.733333" cx="4293" cy="-954" rx="92.8835" ry="18"/> 
-<polygon fill="blackstroke="blackpoints="6101.25,-826.829 6090.73,-825.62 6098.2,-833.129 6101.25,-826.829"/>+<text text-anchor="middlex="4293y="-950.3" font-family="Times,serif" font-size="14.00">lore:corpos:mitsuhama</text>
 </g> </g>
-<!-- pnj:alphonsemosangle&#45;&gt;lore:corpos:saeder&#45;krupp --> +<!-- lore:corpos:mitsuhama&#45;&gt;pnj:leik --> 
-<g id="edge328" class="edge"><title>pnj:alphonsemosangle&#45;&gt;lore:corpos:saeder&#45;krupp</title> +<g id="edge234" class="edge"><title>lore:corpos:mitsuhama&#45;&gt;pnj:leik</title> 
-<path fill="none" stroke="black" d="M6330.91,-3175.56C6310.23,-3173.01 6287.75,-3170.32 6267,-3168 6117.1,-3151.25 5942.98,-3134.24 5836.93,-3124.16"/> +<path fill="none" stroke="black" d="M4243.32,-938.719C4070.41,-889.02 3496.94,-724.183 3338.73,-678.708"/> 
-<polygon fill="black" stroke="black" points="5837.17,-3120.67 5826.88,-3123.21 5836.51,-3127.64 5837.17,-3120.67"/>+<polygon fill="black" stroke="black" points="3339.5,-675.287 3328.92,-675.888 3337.56,-682.014 3339.5,-675.287"/>
 </g> </g>
-<!-- pnj:alphonsemosangle&#45;&gt;pnj:marinemosangle --> +<!-- lore:corpos:mitsuhama&#45;&gt;lore:objets:nanoforge --> 
-<g id="edge326" class="edge"><title>pnj:alphonsemosangle&#45;&gt;pnj:marinemosangle</title> +<g id="edge232" class="edge"><title>lore:corpos:mitsuhama&#45;&gt;lore:objets:nanoforge</title> 
-<path fill="none" stroke="black" d="M6410.9,-3204.1C6411.7,-3211.79 6411.94,-3221.05 6411.6,-3229.67"/> +<path fill="none" stroke="black" d="M4361.93,-941.831C4440.17,-929.153 4567.44,-908.53 4648.64,-895.373"/> 
-<polygon fill="black" stroke="black" points="6408.11,-3229.48 6410.92,-3239.7 6415.09,-3229.96 6408.11,-3229.48"/>+<polygon fill="black" stroke="black" points="4649.49,-898.782 4658.8,-893.727 4648.37,-891.872 4649.49,-898.782"/>
 </g> </g>
-<!-- pnj:rufus&#45;&gt;lore:lieux:gemito --> +<!-- lore:corpos:mitsuhama&#45;&gt;pnj:keito_lung --> 
-<g id="edge290" class="edge"><title>pnj:rufus&#45;&gt;lore:lieux:gemito</title> +<g id="edge233" class="edge"><title>lore:corpos:mitsuhama&#45;&gt;pnj:keito_lung</title> 
-<path fill="none" stroke="black" d="M5223.48,-1615.43C5217.44,-1617.17 5211.08,-1618.78 5205,-1620 5122.3,-1636.67 4883.36,-1657.52 4759.44,-1667.36"/> +<path fill="none" stroke="black" d="M4298.49,-935.98C4313.61,-889.46 4357.52,-756.415 4400,-648 4403.42,-639.274 4407.41,-629.857 4411.09,-621.416"/> 
-<polygon fill="black" stroke="black" points="4758.96,-1663.89 4749.26,-1668.16 4759.51,-1670.86 4758.96,-1663.89"/>+<polygon fill="black" stroke="black" points="4414.39,-622.617 4415.23,-612.056 4407.98,-619.788 4414.39,-622.617"/>
 </g> </g>
-<!-- pnj:rufus&#45;&gt;pnj:meredith --> +<!-- pnj:ibrahimbenalhoud --> 
-<g id="edge292" class="edge"><title>pnj:rufus&#45;&gt;pnj:meredith</title> +<g id="node132" class="node" onclick="click(evt)"><title>pnj:ibrahimbenalhoud</title> 
-<path fill="none" stroke="blackd="M5240.24,-1584.41C5236.6,-1576.62 5232.96,-1567.14 5230.16,-1558.33"/> +<ellipse fill="#e5b030" fill-opacity="0.733333" stroke="#e5b030stroke-opacity="0.733333" cx="5438" cy="-2034" rx="88.2844" ry="18"/> 
-<polygon fill="blackstroke="blackpoints="5233.44,-1557.08 5227.3,-1548.45 5226.71,-1559.03 5233.44,-1557.08"/>+<text text-anchor="middlex="5438y="-2030.3" font-family="Times,serif" font-size="14.00">pnj:ibrahimbenalhoud</text>
 </g> </g>
-<!-- pnj:rufus&#45;&gt;lore:organisations:camorra --> +<!-- pnj:ibrahimbenalhoud&#45;&gt;lore:corpos:saeder&#45;krupp --> 
-<g id="edge291" class="edge"><title>pnj:rufus&#45;&gt;lore:organisations:camorra</title> +<g id="edge255" class="edge"><title>pnj:ibrahimbenalhoud&#45;&gt;lore:corpos:saeder&#45;krupp</title> 
-<path fill="none" stroke="black" d="M5279.79,-1615.83C5320.36,-1636.68 5391,-1682.04 5391,-1745 5391,-1891 5391,-1891 5391,-1891 5391,-2055.71 5044.41,-2478.08 4954.89,-2584.41"/> +<path fill="none" stroke="black" d="M5397.86,-2017.81C5370.15,-2007.33 5333.08,-1993.3 5303.39,-1982.06"/> 
-<polygon fill="black" stroke="black" points="4952.21,-2582.17 4948.43,-2592.07 4957.56,-2586.69 4952.21,-2582.17"/>+<polygon fill="black" stroke="black" points="5304.61,-1978.79 5294.02,-1978.52 5302.14,-1985.33 5304.61,-1978.79"/>
 </g> </g>
-<!-- lore:bars:shatterwein&#45;&gt;lore:lieux:munich --> +<!-- pnj:ibrahimbenalhoud&#45;&gt;lore:lieux:zurich --> 
-<g id="edge293" class="edge"><title>lore:bars:shatterwein&#45;&gt;lore:lieux:munich</title> +<g id="edge256" class="edge"><title>pnj:ibrahimbenalhoud&#45;&gt;lore:lieux:zurich</title> 
-<path fill="none" stroke="black" d="M2840.74,-2411.44C2860.46,-2430.69 2882.52,-2462.63 2864,-2484 2826.97,-2526.75 2668.21,-2535.8 2568.83,-2537.27"/> +<path fill="none" stroke="black" d="M5515.51,-2025.26C5634.03,-2013.14 5848.15,-1990.04 5862,-1980 5976.59,-1896.98 6094,-1528.5 6094,-1387 6094,-1387 6094,-1387 6094,-1313 6094,-1216.4 6132,-1195.6 6132,-1099 6132,-1099 6132,-1099 6132,-449 6132,-408.031 6133.48,-392.078 6108,-360 6095.62,-344.416 6077.37,-332.832 6059.9,-324.537"/> 
-<polygon fill="black" stroke="black" points="2568.77,-2533.77 2558.81,-2537.39 2568.86,-2540.77 2568.77,-2533.77"/>+<polygon fill="black" stroke="black" points="6060.87,-321.14 6050.31,-320.262 6058.02,-327.532 6060.87,-321.14"/>
 </g> </g>
-<!-- lore:bars:posthaus&#45;&gt;lore:lieux:zweibruecken --> +<!-- pnj:michaelcarpenter&#45;&gt;pnj:milenasimons --> 
-<g id="edge298" class="edge"><title>lore:bars:posthaus&#45;&gt;lore:lieux:zweibruecken</title> +<g id="edge543" class="edge"><title>pnj:michaelcarpenter&#45;&gt;pnj:milenasimons</title> 
-<path fill="none" stroke="black" d="M5434.27,-2340.29C5437.72,-2401.57 5440.11,-2609.58 5323,-2700 5274.57,-2737.4 5110.56,-2727.24 5050,-2736 5040.73,-2737.34 5031.02,-2738.8 5021.38,-2740.27"/> +<path fill="none" stroke="black" d="M1825.49,-361.465C1801.65,-351.036 1770.09,-337.226 1744.71,-326.122"/> 
-<polygon fill="black" stroke="black" points="5020.74,-2736.83 5011.39,-2741.82 5021.8,-2743.75 5020.74,-2736.83"/>+<polygon fill="black" stroke="black" points="1745.88,-322.813 1735.31,-322.011 1743.07,-329.226 1745.88,-322.813"/>
 </g> </g>
-<!-- lore:bars:posthaus&#45;&gt;lore:organisations:rote_kasern --> +<!-- pnj:michaelcarpenter&#45;&gt;lore:corpos:ares --> 
-<g id="edge299" class="edge"><title>lore:bars:posthaus&#45;&gt;lore:organisations:rote_kasern</title> +<g id="edge544" class="edge"><title>pnj:michaelcarpenter&#45;&gt;lore:corpos:ares</title> 
-<path fill="none" stroke="black" d="M5430.18,-2340.28C5421.06,-2391.04 5387.87,-2541.52 5303,-2628 5289.03,-2642.24 5270.44,-2653.26 5252.68,-2661.47"/> +<path fill="none" stroke="black" d="M1866.91,-396.275C1867.71,-404.03 1867.94,-413.362 1867.59,-422.005"/> 
-<polygon fill="black" stroke="black" points="5251.24,-2658.28 5243.5,-2665.51 5254.06,-2664.69 5251.24,-2658.28"/>+<polygon fill="black" stroke="black" points="1864.09,-421.832 1866.88,-432.055 1871.08,-422.327 1864.09,-421.832"/>
 </g> </g>
-<!-- lore:bars:posthaus&#45;&gt;pnj:valentinpragault --> +<!-- pnj:sorenjohanson&#45;&gt;lore:corpos:ares --> 
-<g id="edge297" class="edge"><title>lore:bars:posthaus&#45;&gt;pnj:valentinpragault</title> +<g id="edge546" class="edge"><title>pnj:sorenjohanson&#45;&gt;lore:corpos:ares</title> 
-<path fill="none" stroke="black" d="M5411.3,-2339.47C5395.89,-2349.34 5374.89,-2361.98 5356.48,-2372.49"/> +<path fill="none" stroke="black" d="M3422.14,-382.336C3150.08,-394.186 2215.64,-434.167 1938.83,-445.8"/> 
-<polygon fill="black" stroke="black" points="5354.67,-2369.5 5347.69,-2377.46 5358.11,-2375.59 5354.67,-2369.5"/>+<polygon fill="black" stroke="black" points="1938.32,-442.318 1928.48,-446.234 1938.62,-449.312 1938.32,-442.318"/>
 </g> </g>
-<!-- pnj:obrennan&#45;&gt;lore:organisations:rote_kasern --> +<!-- pnj:sorenjohanson&#45;&gt;lore:corpos:saeder&#45;krupp --> 
-<g id="edge313" class="edge"><title>pnj:obrennan&#45;&gt;lore:organisations:rote_kasern</title> +<g id="edge545" class="edge"><title>pnj:sorenjohanson&#45;&gt;lore:corpos:saeder&#45;krupp</title> 
-<path fill="none" stroke="black" d="M1723.06,-163.029C2288.68,-163.491 6796,-171.364 6796,-305 6796,-1315 6796,-1315 6796,-1315 6796,-1556.5 6588,-1575.5 6588,-1817 6588,-1891 6588,-1891 6588,-1891 6588,-2200.25 6511.07,-2369.01 6224,-2484 5909.17,-2610.11 5507.02,-2657.05 5312.19,-2673.22"/> +<path fill="none" stroke="black" d="M3571.62,-382.424C3911.21,-398.544 5301.05,-470.538 5462,-576 5554.04,-636.307 5552.97,-686.142 5583,-792 5637.52,-984.15 5602,-1041.27 5602,-1241 5602,-1459 5602,-1459 5602,-1459 5602,-1492.81 5528.81,-1828.16 5525,-1836 5506.91,-1873.21 5500.96,-1885.88 5466,-1908 5431.19,-1930.02 5387.8,-1942.9 5349.29,-1950.42"/> 
-<polygon fill="black" stroke="black" points="5311.9,-2669.74 5302.22,-2674.04 5312.47,-2676.71 5311.9,-2669.74"/>+<polygon fill="black" stroke="black" points="5348.28,-1947.05 5339.09,-1952.31 5349.56,-1953.93 5348.28,-1947.05"/>
 </g> </g>
-<!-- pnj:obrennan&#45;&gt;lore:lieux:dublin --> +<!-- pnj:sorenjohanson&#45;&gt;lore:lieux:zurich --> 
-<g id="edge311" class="edge"><title>pnj:obrennan&#45;&gt;lore:lieux:dublin</title> +<g id="edge547" class="edge"><title>pnj:sorenjohanson&#45;&gt;lore:lieux:zurich</title> 
-<path fill="none" stroke="black" d="M1638.43,-178.041C1616.89,-188.708 1586.19,-203.09 1560.75,-214.467"/> +<path fill="none" stroke="black" d="M3572.86,-374.886C3943.5,-364.558 5561.06,-319.482 5932.69,-309.126"/> 
-<polygon fill="black" stroke="black" points="1559.01,-211.411 1551.29,-218.666 1561.85,-217.809 1559.01,-211.411"/>+<polygon fill="black" stroke="black" points="5932.9,-312.622 5942.8,-308.845 5932.71,-305.625 5932.9,-312.622"/>
 </g> </g>
-<!-- pnj:obrennan&#45;&gt;lore:organisations:ira --> +<!-- pnj:damonneone&#45;&gt;lore:lieux:tir_na_nog --> 
-<g id="edge312" class="edge"><title>pnj:obrennan&#45;&gt;lore:organisations:ira</title> +<g id="edge262" class="edge"><title>pnj:damonneone&#45;&gt;lore:lieux:tir_na_nog</title> 
-<path fill="none" stroke="black" d="M1669.48,-180.042C1673.21,-222.137 1665.36,-332.232 1608,-396 1590.8,-415.127 1565.74,-427.463 1541.46,-435.369"/> +<path fill="none" stroke="black" d="M461.378,-18.4229C751.558,-16.9548 1840,-20.793 1840,-161 1840,-235 1840,-235 1840,-235 1840,-254.963 1451.35,-818.12 1434,-828 1378.06,-859.863 963.897,-874.055 775.197,-878.918"/> 
-<polygon fill="black" stroke="black" points="1540.4,-432.032 1531.85,-438.288 1542.43,-438.729 1540.4,-432.032"/>+<polygon fill="black" stroke="black" points="774.922,-875.423 765.014,-879.177 775.1,-882.421 774.922,-875.423"/>
 </g> </g>
-<!-- lore:corpos:bilbauer&#45;&gt;lore:lieux:sox --> +<!-- pnj:damonneone&#45;&gt;lore:organisations:danann_o_dunn --> 
-<g id="edge358" class="edge"><title>lore:corpos:bilbauer&#45;&gt;lore:lieux:sox</title> +<g id="edge263" class="edge"><title>pnj:damonneone&#45;&gt;lore:organisations:danann_o_dunn</title> 
-<path fill="none" stroke="black" d="M4489.9,-1317.39C4734.45,-1324.71 5448.81,-1347.6 5552,-1368 5645.09,-1386.4 5674.57,-1386.58 5753,-1440 5952.38,-1575.81 6058,-1647.76 6058,-1889 6058,-1963 6058,-1963 6058,-1963 6058,-2154.86 6096,-2201.14 6096,-2393 6096,-2467 6096,-2467 6096,-2467 6096,-2568.19 6021.84,-2576.04 5935,-2628 5933.31,-2629.01 5484.14,-2764.19 5331.83,-2810.01"/> +<path fill="none" stroke="black" d="M396.895,-36.1043C397.701,-43.7913 397.937,-53.0537 397.604,-61.6651"/> 
-<polygon fill="black" stroke="black" points="5330.8,-2806.66 5322.24,-2812.9 5332.82,-2813.37 5330.8,-2806.66"/>+<polygon fill="black" stroke="black" points="394.109,-61.4805 396.916,-71.6966 401.092,-61.9597 394.109,-61.4805"/>
 </g> </g>
-<!-- lore:corpos:bilbauer&#45;&gt;lore:organisations:swamp_rats --> +<!-- pnj:ekhart&#45;&gt;lore:corpos:saeder&#45;krupp --> 
-<g id="edge359" class="edge"><title>lore:corpos:bilbauer&#45;&gt;lore:organisations:swamp_rats</title> +<g id="edge449" class="edge"><title>pnj:ekhart&#45;&gt;lore:corpos:saeder&#45;krupp</title> 
-<path fill="none" stroke="black" d="M4344.9,-1325.82C4279.92,-1336.95 4186.84,-1354.52 4176,-1368 4050.74,-1523.81 4203,-1617.08 4203,-1817 4203,-1891 4203,-1891 4203,-1891 4203,-1931 4203,-1977.35 4200.71,-2005.92"/> +<path fill="none" stroke="black" d="M3985.41,-1188.1C3997.39,-1280.88 4037.3,-1726.37 4297,-1908 4372.64,-1960.9 5035.02,-1936.23 5127,-1944 5140.64,-1945.15 5155.02,-1946.65 5169,-1948.29"/> 
-<polygon fill="black" stroke="black" points="4197.22,-2005.65 4199.71,-2015.95 4204.18,-2006.35 4197.22,-2005.65"/>+<polygon fill="black" stroke="black" points="5168.75,-1951.78 5179.1,-1949.5 5169.58,-1944.83 5168.75,-1951.78"/>
 </g> </g>
-<!-- pnj:andreidelcassero&#45;&gt;lore:corpos:esus --> +<!-- pnj:ekhart&#45;&gt;lore:lieux:pompei --> 
-<g id="edge333" class="edge"><title>pnj:andreidelcassero&#45;&gt;lore:corpos:esus</title> +<g id="edge451" class="edge"><title>pnj:ekhart&#45;&gt;lore:lieux:pompei</title> 
-<path fill="none" stroke="black" d="M6628.91,-3132.28C6629.71,-3140.03 6629.94,-3149.36 6629.59,-3158.01"/> +<path fill="none" stroke="black" d="M3938.59,-1176.47C3825.21,-1191.19 3511.27,-1234.69 3255,-1296 3168.76,-1316.63 3070.51,-1348.31 3012.8,-1367.79"/> 
-<polygon fill="black" stroke="black" points="6626.09,-3157.83 6628.88,-3168.05 6633.08,-3158.33 6626.09,-3157.83"/>+<polygon fill="black" stroke="black" points="3011.54,-1364.52 3003.2,-1371.04 3013.79,-1371.15 3011.54,-1364.52"/>
 </g> </g>
-<!-- lore:planques:squat_d_en_dol&#45;&gt;lore:lieux:munich --> +<!-- pnj:ekhart&#45;&gt;lore:planques:entrepot_np1 --> 
-<g id="edge337" class="edge"><title>lore:planques:squat_d_en_dol&#45;&gt;lore:lieux:munich</title> +<g id="edge450" class="edge"><title>pnj:ekhart&#45;&gt;lore:planques:entrepot_np1</title> 
-<path fill="none" stroke="black" d="M824.416,-2478.49C841.532,-2480.64 859.34,-2482.63 876,-2484 1460.83,-2531.98 2167.77,-2536.96 2405,-2537.16"/> +<path fill="none" stroke="black" d="M3938.96,-1176.8C3907.19,-1180.43 3863.08,-1184.97 3824,-1188 3525.8,-1211.15 3450.5,-1205.07 3152,-1224 3108.53,-1226.76 3060.51,-1230.21 3018.81,-1233.28"/> 
-<polygon fill="black" stroke="black" points="2405.26,-2540.66 2415.26,-2537.16 2405.27,-2533.66 2405.26,-2540.66"/>+<polygon fill="black" stroke="black" points="3018.35,-1229.8 3008.63,-1234.03 3018.86,-1236.79 3018.35,-1229.8"/>
 </g> </g>
-<!-- lore:planques:squat_d_en_dol&#45;&gt;pj:endol --> +<!-- pnj:ekhart&#45;&gt;lore:lieux:europe --> 
-<g id="edge338" class="edge"><title>lore:planques:squat_d_en_dol&#45;&gt;pj:endol</title> +<g id="edge453" class="edge"><title>pnj:ekhart&#45;&gt;lore:lieux:europe</title> 
-<path fill="none" stroke="black" d="M774.569,-2448.79C844.02,-2417.94 990.06,-2352.72 1012,-2340 1047.27,-2319.56 1084.94,-2291.54 1109.38,-2272.43"/> +<path fill="none" stroke="black" d="M3969.01,-1187.52C3953.83,-1206.27 3927.41,-1237.19 3901,-1260 3857.62,-1297.47 3843.18,-1302.55 3794,-1332 3735.33,-1367.14 3722.79,-1382.1 3658,-1404 3565.8,-1435.17 3537.45,-1421 3442,-1440 3325.58,-1463.17 3190.62,-1495.8 3115.7,-1514.44"/> 
-<polygon fill="black" stroke="black" points="1111.76,-2275.02 1117.45,-2266.08 1107.43,-2269.52 1111.76,-2275.02"/>+<polygon fill="black" stroke="black" points="3114.84,-1511.04 3105.98,-1516.86 3116.53,-1517.84 3114.84,-1511.04"/>
 </g> </g>
-<!-- pnj:jed&#45;&gt;lore:lieux:munich --> +<!-- pnj:ekhart&#45;&gt;pnj:le_boss_d_ekhart --> 
-<g id="edge339" class="edge"><title>pnj:jed&#45;&gt;lore:lieux:munich</title> +<g id="edge452" class="edge"><title>pnj:ekhart&#45;&gt;pnj:le_boss_d_ekhart</title> 
-<path fill="none" stroke="black" d="M204.619,-2476.47C212.497,-2479.46 220.968,-2482.4 229,-2484 445.738,-2527.04 2025.99,-2535.35 2405.33,-2536.75"/> +<path fill="none" stroke="black" d="M3992.99,-1152.41C4001.11,-1143.43 4012.32,-1132.19 4022.92,-1122.34"/> 
-<polygon fill="black" stroke="black" points="2405.39,-2540.25 2415.4,-2536.78 2405.42,-2533.25 2405.39,-2540.25"/>+<polygon fill="black" stroke="black" points="4025.43,-1124.79 4030.47,-1115.47 4020.72,-1119.61 4025.43,-1124.79"/>
 </g> </g>
-<!-- pnj:jed&#45;&gt;pnj:martha_finkerbachen --> +<!-- pnj:monsieur_j&#45;&gt;lore:lieux:munich --> 
-<g id="edge341" class="edge"><title>pnj:jed&#45;&gt;pnj:martha_finkerbachen</title> +<g id="edge301" class="edge"><title>pnj:monsieur_j&#45;&gt;lore:lieux:munich</title> 
-<path fill="none" stroke="black" d="M163.751,-2448.95C145.682,-2423.64 114,-2372.23 114,-2323 114,-2323 114,-2323 114,-1961 114,-1913.6 150.045,-1869.02 176.257,-1842.87"/> +<path fill="none" stroke="black" d="M2842.76,-2337.73C2823.19,-2347.52 2797.83,-2361.24 2777,-2376 2646.88,-2468.2 2588,-2521.53 2588,-2681 2588,-2755 2588,-2755 2588,-2755 2588,-2798.74 2595.09,-2817.64 2630,-2844 2667.16,-2872.06 2789.6,-2885.96 2872.06,-2892.3"/> 
-<polygon fill="black" stroke="black" points="178.936,-1845.15 183.688,-1835.68 174.068,-1840.12 178.936,-1845.15"/>+<polygon fill="black" stroke="black" points="2871.93,-2895.8 2882.16,-2893.05 2872.45,-2888.82 2871.93,-2895.8"/>
 </g> </g>
-<!-- pnj:jed&#45;&gt;pj:oggodt --> +<!-- pnj:monsieur_j&#45;&gt;lore:organisations:fon --> 
-<g id="edge340" class="edge"><title>pnj:jed&#45;&gt;pj:oggodt</title> +<g id="edge300" class="edge"><title>pnj:monsieur_j&#45;&gt;lore:organisations:fon</title> 
-<path fill="none" stroke="black" d="M201.768,-2454.05C207.683,-2451.82 213.999,-2449.65 220,-2448 309.481,-2423.41 416.657,-2408.24 479.543,-2400.73"/> +<path fill="none" stroke="black" d="M2879.9,-2340.1C2880.7,-2347.79 2880.94,-2357.05 2880.6,-2365.67"/> 
-<polygon fill="black" stroke="black" points="480.099,-2404.19 489.623,-2399.55 479.284,-2397.24 480.099,-2404.19"/>+<polygon fill="black" stroke="black" points="2877.11,-2365.48 2879.92,-2375.7 2884.09,-2365.96 2877.11,-2365.48"/>
 </g> </g>
-<!-- pnj:manueldosplegiane&#45;&gt;lore:corpos:esprit --> +<!-- pj:johnmcgill&#45;&gt;lore:lieux:munich --> 
-<g id="edge362" class="edge"><title>pnj:manueldosplegiane&#45;&gt;lore:corpos:esprit</title> +<g id="edge522" class="edge"><title>pj:johnmcgill&#45;&gt;lore:lieux:munich</title> 
-<path fill="none" stroke="black" d="M5984.91,-2772.28C5985.71,-2780.03 5985.94,-2789.36 5985.59,-2798.01"/> +<path fill="none" stroke="black" d="M1871.51,-2700.19C1873.62,-2735.2 1884.07,-2814.01 1935,-2844 2014.59,-2890.86 2642.35,-2896.53 2869.4,-2897.03"/> 
-<polygon fill="black" stroke="black" points="5982.09,-2797.83 5984.88,-2808.05 5989.08,-2798.33 5982.09,-2797.83"/>+<polygon fill="black" stroke="black" points="2869.58,-2900.53 2879.58,-2897.05 2869.59,-2893.53 2869.58,-2900.53"/>
 </g> </g>
-<!-- lore:bars:the_hole_in_the_wall&#45;&gt;pnj:elephant --> +<!-- pj:johnmcgill&#45;&gt;lore:organisations:camorra --> 
-<g id="edge576" class="edge"><title>lore:bars:the_hole_in_the_wall&#45;&gt;pnj:elephant</title> +<g id="edge519" class="edge"><title>pj:johnmcgill&#45;&gt;lore:organisations:camorra</title> 
-<path fill="none" stroke="black" d="M1433.59,-360.765C1409.49,-350.021 1377.88,-335.928 1353.07,-324.866"/> +<path fill="none" stroke="black" d="M1816.1,-2677.5C1741.88,-2671.69 1614.78,-2657.66 1580,-2628 1518.69,-2575.71 1383.13,-2011.42 1339,-1944 1274.77,-1845.86 1204.9,-1865.44 1146,-1764 1073.68,-1639.45 1104.79,-1576.07 1152,-1440 1174.41,-1375.42 1167.01,-1352.14 1206,-1296 1213.77,-1284.82 1224.41,-1274.5 1234.64,-1265.99"/> 
-<polygon fill="black" stroke="black" points="1354.48,-321.664 1343.92,-320.788 1351.63,-328.057 1354.48,-321.664"/>+<polygon fill="black" stroke="black" points="1237.05,-1268.55 1242.69,-1259.58 1232.68,-1263.07 1237.05,-1268.55"/>
 </g> </g>
-<!-- lore:bars:the_hole_in_the_wall&#45;&gt;lore:lieux:dublin --> +<!-- pj:johnmcgill&#45;&gt;lore:lieux:tir_na_nog --> 
-<g id="edge577" class="edge"><title>lore:bars:the_hole_in_the_wall&#45;&gt;lore:lieux:dublin</title> +<g id="edge520" class="edge"><title>pj:johnmcgill&#45;&gt;lore:lieux:tir_na_nog</title> 
-<path fill="none" stroke="black" d="M1470.84,-359.871C1476,-335.457 1490,-290.426 1501.15,-261.635"/> +<path fill="none" stroke="black" d="M1817.32,-2676.11C1739.06,-2668.31 1598.04,-2651.48 1553,-2628 1545.55,-2624.12 711.636,-1771 707,-1764 687.862,-1735.09 689.054,-1724.5 677,-1692 625.234,-1552.42 587.183,-1516.8 592,-1368 595.113,-1271.85 595.615,-1247.64 606,-1152 616.66,-1053.83 623.135,-1028.38 658,-936 661.369,-927.074 665.519,-917.52 669.415,-909.016"/> 
-<polygon fill="black" stroke="black" points="1504.47,-262.773 1504.96,-252.189 1497.98,-260.155 1504.47,-262.773"/>+<polygon fill="black" stroke="black" points="672.588,-910.492 673.651,-899.951 666.246,-907.529 672.588,-910.492"/>
 </g> </g>
-<!-- lore:bars:the_hole_in_the_wall&#45;&gt;lore:organisations:ira --> +<!-- pj:johnmcgill&#45;&gt;lore:organisations:ira --> 
-<g id="edge575" class="edge"><title>lore:bars:the_hole_in_the_wall&#45;&gt;lore:organisations:ira</title> +<g id="edge521" class="edge"><title>pj:johnmcgill&#45;&gt;lore:organisations:ira</title> 
-<path fill="none" stroke="black" d="M1475.16,-396.104C1475.64,-403.791 1475.48,-413.054 1474.78,-421.665"/> +<path fill="none" stroke="black" d="M1816.27,-2677.07C1735.55,-2667.96 1594,-2637.9 1594,-2539 1594,-2539 1594,-2539 1594,-2177 1594,-1960.43 1630.54,-1908.31 1641,-1692 1652.59,-1452.26 1669.59,-1389.37 1634,-1152 1623.36,-1081.04 1620.02,-1048.8 1561,-1008 1510.63,-973.179 1478.7,-1006.34 1428,-972 1376.66,-937.23 1338.39,-873.379 1319.71,-837.418"/> 
-<polygon fill="black" stroke="black" points="1471.29,-421.37 1473.66,-431.697 1478.24,-422.146 1471.29,-421.37"/>+<polygon fill="black" stroke="black" points="1322.61,-835.4 1314.97,-828.063 1316.37,-838.565 1322.61,-835.4"/>
 </g> </g>
-<!-- pnj:sujet_2 --> +<!-- pj:johnmcgill&#45;&gt;lore:organisations:lotus_jaune --> 
-<g id="node143" class="node"><title>pnj:sujet_2</title> +<g id="edge523" class="edge"><title>pj:johnmcgill&#45;&gt;lore:organisations:lotus_jaune</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfee" cx="755cy="-738" rx="50.0912" ry="18"/> +<path fill="none" stroke="blackd="M1926.36,-2678.17C2137.42,-2667.68 2894.19,-2630.87 3190.68,-2616.66"/> 
-<text text-anchor="middlex="755y="-734.3" font-family="Times,serif" font-size="14.00">pnj:sujet_2</text>+<polygon fill="blackstroke="blackpoints="3191.21,-2620.14 3201.03,-2616.16 3190.88,-2613.15 3191.21,-2620.14"/>
 </g> </g>
-<!-- pnj:sujet_2&#45;&gt;lore:lieux:tir_na_nog --> +<!-- pnj:rebecca_muller --> 
-<g id="edge386" class="edge"><title>pnj:sujet_2&#45;&gt;lore:lieux:tir_na_nog</title> +<g id="node139" class="node" onclick="click(evt)"><title>pnj:rebecca_muller</title> 
-<path fill="none" stroke="blackd="M770.784,-720.915C807.318,-683.686 897.873,-591.405 941.185,-547.269"/> +<ellipse fill="#e5b030" fill-opacity="0.733333" stroke="#e5b030stroke-opacity="0.733333" cx="5543" cy="-3258" rx="79.0865" ry="18"/> 
-<polygon fill="blackstroke="blackpoints="943.947,-549.451 948.453,-539.862 938.951,-544.548 943.947,-549.451"/>+<text text-anchor="middlex="5543y="-3254.3" font-family="Times,serif" font-size="14.00">pnj:rebecca_muller</text>
 </g> </g>
-<!-- pnj:sujet_2&#45;&gt;lore:organisations:danann_o_dunn --> +<!-- pnj:rebecca_muller&#45;&gt;pj:eidolon --> 
-<g id="edge387" class="edge"><title>pnj:sujet_2&#45;&gt;lore:organisations:danann_o_dunn</title> +<g id="edge312" class="edge"><title>pnj:rebecca_muller&#45;&gt;pj:eidolon</title> 
-<path fill="none" stroke="black" d="M723.965,-723.834C699.748,-713.56 665.68,-699.107 637.961,-687.347"/> +<path fill="none" stroke="black" d="M5464.2,-3255.9C4867.75,-3247.61 1073.4,-3194.84 566.048,-3187.78"/> 
-<polygon fill="black" stroke="black" points="639.02,-683.995 628.448,-683.311 636.287,-690.439 639.02,-683.995"/>+<polygon fill="black" stroke="black" points="566.089,-3184.28 556.041,-3187.64 565.992,-3191.28 566.089,-3184.28"/>
 </g> </g>
-<!-- lore:lieux:la_structure&#45;&gt;lore:lieux:munich --> +<!-- pnj:rebecca_muller&#45;&gt;lore:lieux:munich --> 
-<g id="edge395" class="edge"><title>lore:lieux:la_structure&#45;&gt;lore:lieux:munich</title> +<g id="edge311" class="edge"><title>pnj:rebecca_muller&#45;&gt;lore:lieux:munich</title> 
-<path fill="none" stroke="black" d="M2863.72,-889.278C2906.24,-892.577 2959.46,-896.624 3007,-900 3067.76,-904.315 3512.37,-891.539 3554,-936 3652.51,-1041.21 3578.31,-1121.05 3540,-1260 3525.89,-1311.17 3507.32,-1318.18 3489,-1368 3474.86,-1406.45 3465,-1416.03 3465,-1457 3465,-1963 3465,-1963 3465,-1963 3465,-2123.48 3512,-2160.52 3512,-2321 3512,-2395 3512,-2395 3512,-2395 3512,-2438.74 3506.3,-2459.6 3470,-2484 3396.13,-2533.66 2791.56,-2537.59 2568.91,-2537.34"/> +<path fill="none" stroke="black" d="M5534.91,-3239.95C5523.22,-3213.72 5503,-3161.61 5503,-3115 5503,-3115 5503,-3115 5503,-3041 5503,-2914.25 3469.5,-2900.64 3032.91,-2899.18"/> 
-<polygon fill="black" stroke="black" points="2568.61,-2533.84 2558.6,-2537.32 2568.6,-2540.84 2568.61,-2533.84"/>+<polygon fill="black" stroke="black" points="3032.6,-2895.67 3022.59,-2899.14 3032.58,-2902.67 3032.6,-2895.67"/>
 </g> </g>
-<!-- lore:lieux:la_structure&#45;&gt;lore:corpos:aztechnology --> +<!-- lore:corpos:lone_star --> 
-<g id="edge396" class="edge"><title>lore:lieux:la_structure&#45;&gt;lore:corpos:aztechnology</title> +<g id="node140" class="node" onclick="click(evt)"><title>lore:corpos:lone_star</title> 
-<path fill="none" stroke="blackd="M2789.9,-900.104C2790.7,-907.791 2790.94,-917.054 2790.6,-925.665"/> +<ellipse fill="#41c2b5" fill-opacity="0.733333" stroke="#41c2b5stroke-opacity="0.733333" cx="5618" cy="-3114" rx="87.1846" ry="18"/> 
-<polygon fill="blackstroke="blackpoints="2787.11,-925.48 2789.92,-935.697 2794.09,-925.96 2787.11,-925.48"/>+<text text-anchor="middlex="5618y="-3110.3" font-family="Times,serif" font-size="14.00">lore:corpos:lone_star</text>
 </g> </g>
-<!-- lore:corpos:mitsuhama --> +<!-- pnj:rebecca_muller&#45;&gt;lore:corpos:lone_star --> 
-<g id="node145" class="node"><title>lore:corpos:mitsuhama</title> +<g id="edge310" class="edge"><title>pnj:rebecca_muller&#45;&gt;lore:corpos:lone_star</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfeecx="3059" cy="-1314" rx="92.8835" ry="18"/> +<path fill="none" stroke="blackd="M5547.46,-3239.87C5557.87,-3215.24 5581.7,-3169.64 5598.98,-3140.88"/> 
-<text text-anchor="middlex="3059y="-1310.3" font-family="Times,serif" font-size="14.00">lore:corpos:mitsuhama</text>+<polygon fill="blackstroke="blackpoints="5602.07,-3142.54 5604.33,-3132.19 5596.11,-3138.87 5602.07,-3142.54"/>
 </g> </g>
-<!-- lore:corpos:mitsuhama&#45;&gt;pnj:leik --> +<!-- lore:corpos:lone_star&#45;&gt;lore:lieux:munich --> 
-<g id="edge403" class="edge"><title>lore:corpos:mitsuhama&#45;&gt;pnj:leik</title> +<g id="edge379" class="edge"><title>lore:corpos:lone_star&#45;&gt;lore:lieux:munich</title> 
-<path fill="none" stroke="black" d="M2979.1,-1304.74C2851.77,-1289.73 2611.99,-1253.37 2561,-1188 2544.82,-1167.26 2569.95,-1093.22 2585.39,-1053.17"/> +<path fill="none" stroke="black" d="M5613.23,-3095.87C5602.58,-3061.32 5573.27,-2983.89 5517,-2952 5461.68,-2920.65 3463.71,-2903.06 3032.5,-2899.62"/> 
-<polygon fill="black" stroke="black" points="2588.68,-1054.37 2589.07,-1043.78 2582.16,-1051.81 2588.68,-1054.37"/>+<polygon fill="black" stroke="black" points="3032.33,-2896.12 3022.3,-2899.54 3032.27,-2903.12 3032.33,-2896.12"/>
 </g> </g>
-<!-- lore:corpos:mitsuhama&#45;&gt;lore:objets:nanoforge --> +<!-- lore:corpos:lone_star&#45;&gt;lore:corpos:saeder&#45;krupp --> 
-<g id="edge401" class="edge"><title>lore:corpos:mitsuhama&#45;&gt;lore:objets:nanoforge</title> +<g id="edge380" class="edge"><title>lore:corpos:lone_star&#45;&gt;lore:corpos:saeder&#45;krupp</title> 
-<path fill="none" stroke="black" d="M3066.75,-1296.05C3070.39,-1288.09 3074.81,-1278.41 3078.88,-1269.51"/> +<path fill="none" stroke="black" d="M5618,-3095.95C5618,-3069.29 5618,-3016.11 5618,-2971 5618,-2971 5618,-2971 5618,-2753 5618,-2616.5 5632.64,-2574.76 5582,-2448 5501.65,-2246.87 5410.31,-2237.19 5298,-2052 5285.65,-2031.64 5273.58,-2007.47 5265.06,-1989.46"/> 
-<polygon fill="black" stroke="black" points="3082.13,-1270.83 3083.1,-1260.28 3075.76,-1267.91 3082.13,-1270.83"/>+<polygon fill="black" stroke="black" points="5268.11,-1987.73 5260.71,-1980.15 5261.77,-1990.69 5268.11,-1987.73"/>
 </g> </g>
-<!-- lore:corpos:mitsuhama&#45;&gt;pnj:keito_lung --> +<!-- lore:corpos:lone_star&#45;&gt;pnj:rebecca_muller --> 
-<g id="edge402" class="edge"><title>lore:corpos:mitsuhama&#45;&gt;pnj:keito_lung</title> +<g id="edge378" class="edge"><title>lore:corpos:lone_star&#45;&gt;pnj:rebecca_muller</title> 
-<path fill="none" stroke="black" d="M3110.9,-1299.03C3135.73,-1290.56 3164.81,-1277.88 3187,-1260 3232.51,-1223.34 3223.25,-1195.75 3262,-1152 3324.11,-1081.88 3409.8,-1011.75 3454.01,-977.167"/> +<path fill="none" stroke="black" d="M5613.48,-3132.27C5603,-3157.04 5579.06,-3202.82 5561.8,-3231.49"/> 
-<polygon fill="black" stroke="black" points="3456.28,-979.836 3462.02,-970.933 3451.98,-974.311 3456.28,-979.836"/>+<polygon fill="black" stroke="black" points="5558.73,-3229.8 5556.45,-3240.15 5564.68,-3233.48 5558.73,-3229.8"/>
 </g> </g>
-<!-- lore:organisations:famille_reanka --> +<!-- lore:corpos:horizon --> 
-<g id="node146" class="node"><title>lore:organisations:famille_reanka</title> +<g id="node141" class="node" onclick="click(evt)"><title>lore:corpos:horizon</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfee" cx="2613" cy="-3186" rx="128.077" ry="18"/> +<ellipse fill="#41c2b5" fill-opacity="0.733333" stroke="#41c2b5" stroke-opacity="0.733333" cx="5137" cy="-2034" rx="81.4863" ry="18"/> 
-<text text-anchor="middle" x="2613" y="-3182.3" font-family="Times,serif" font-size="14.00">lore:organisations:famille_reanka</text>+<text text-anchor="middle" x="5137" y="-2030.3" font-family="Times,serif" font-size="14.00">lore:corpos:horizon</text>
 </g> </g>
-<!-- lore:organisations:famille_reanka&#45;&gt;lore:corpos:saeder&#45;krupp --> +<!-- lore:corpos:horizon&#45;&gt;lore:corpos:saeder&#45;krupp --> 
-<g id="edge420" class="edge"><title>lore:organisations:famille_reanka&#45;&gt;lore:corpos:saeder&#45;krupp</title> +<g id="edge330" class="edge"><title>lore:corpos:horizon&#45;&gt;lore:corpos:saeder&#45;krupp</title> 
-<path fill="none" stroke="black" d="M2738.44,-3182.19C3246.61,-3170.81 5147.88,-3128.24 5628.22,-3117.48"/> +<path fill="none" stroke="black" d="M5163.61,-2016.94C5179.45,-2007.39 5199.75,-1995.13 5217,-1984.72"/> 
-<polygon fill="black" stroke="black" points="5628.36,-3120.98 5638.28,-3117.26 5628.2,-3113.98 5628.36,-3120.98"/>+<polygon fill="black" stroke="black" points="5218.95,-1987.63 5225.71,-1979.47 5215.34,-1981.64 5218.95,-1987.63"/>
 </g> </g>
-<!-- pnj:syriareanka --> +<!-- pj:hiquse&#45;&gt;pj:eidolon --> 
-<g id="node147" class="node"><title>pnj:syriareanka</title> +<g id="edge333" class="edge"><title>pj:hiquse&#45;&gt;pj:eidolon</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfeecx="2613" cy="-3114" rx="64.189" ry="18"/> +<path fill="none" stroke="blackd="M4156.86,-1907.17C4145.87,-1917.08 4130.72,-1930.44 4119,-1944 4072.72,-1997.55 4062.95,-2018.24 4051,-2088 4010.42,-2324.92 4181.85,-2449.38 4021,-2628 3953.82,-2702.6 3881.01,-2607.54 3798,-2664 3721.04,-2716.34 3768.71,-2792.79 3691,-2844 3281.7,-3113.75 1992.11,-3086.8 1504,-3132 1148.11,-3164.96 717.832,-3179.4 566.119,-3183.62"/> 
-<text text-anchor="middlex="2613y="-3110.3" font-family="Times,serif" font-size="14.00">pnj:syriareanka</text>+<polygon fill="blackstroke="blackpoints="566.007,-3180.12 556.106,-3183.89 566.198,-3187.12 566.007,-3180.12"/>
 </g> </g>
-<!-- lore:organisations:famille_reanka&#45;&gt;pnj:syriareanka --> +<!-- pj:hiquse&#45;&gt;lore:objets:nanoforge --> 
-<g id="edge419" class="edge"><title>lore:organisations:famille_reanka&#45;&gt;pnj:syriareanka</title> +<g id="edge334" class="edge"><title>pj:hiquse&#45;&gt;lore:objets:nanoforge</title> 
-<path fill="none" stroke="black" d="M2607.08,-3167.7C2606.29,-3159.98 2606.06,-3150.71 2606.4,-3142.11"/> +<path fill="none" stroke="black" d="M4184.79,-1872.65C4212.29,-1842.6 4273.72,-1777.19 4331,-1728 4372,-1692.79 4384,-1685.94 4429,-1656 4454.89,-1638.77 4464.45,-1639.1 4489,-1620 4560.68,-1564.23 4569.67,-1540.11 4634,-1476 4666.06,-1444.06 4682.7,-1442.79 4706,-1404 4767.96,-1300.86 4758.01,-1165.57 4769,-972 4769.91,-956.026 4774.43,-951.049 4769,-936 4765.18,-925.43 4758.24,-915.479 4750.98,-907.116"/> 
-<polygon fill="black" stroke="black" points="2609.9,-3142.32 2607.1,-3132.1 2602.92,-3141.84 2609.9,-3142.32"/>+<polygon fill="black" stroke="black" points="4753.39,-904.561 4744.01,-899.617 4748.26,-909.325 4753.39,-904.561"/>
 </g> </g>
-<!-- pnj:therez_reanka --> +<!-- pj:hiquse&#45;&gt;lore:lieux:sox --> 
-<g id="node148" class="node"><title>pnj:therez_reanka</title> +<g id="edge332" class="edge"><title>pj:hiquse&#45;&gt;lore:lieux:sox</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfee" cx="76cy="-3258" rx="73.387" ry="18"/> +<path fill="none" stroke="blackd="M4171.94,-1871.84C4173.2,-1851.27 4171.67,-1817.4 4151,-1800 4101.38,-1758.22 3132.59,-1749.1 2864.33,-1747.37"/> 
-<text text-anchor="middlex="76y="-3254.3" font-family="Times,serif" font-size="14.00">pnj:therez_reanka</text>+<polygon fill="blackstroke="blackpoints="2863.98,-1743.86 2853.96,-1747.3 2863.94,-1750.86 2863.98,-1743.86"/>
 </g> </g>
-<!-- lore:organisations:famille_reanka&#45;&gt;pnj:therez_reanka --> +<!-- pj:hiquse&#45;&gt;lore:organisations:swamp_rats --> 
-<g id="edge421" class="edge"><title>lore:organisations:famille_reanka&#45;&gt;pnj:therez_reanka</title> +<g id="edge331" class="edge"><title>pj:hiquse&#45;&gt;lore:organisations:swamp_rats</title> 
-<path fill="none" stroke="black" d="M2529.89,-3199.71C2514.99,-3201.42 2499.58,-3202.94 2485,-3204 2019.14,-3237.96 529.107,-3253.08 159.525,-3256.32"/> +<path fill="none" stroke="black" d="M4211.32,-1884.76C4245.53,-1881.27 4295.41,-1876.23 4339,-1872 4497.92,-1856.58 4681.99,-1839.52 4796.22,-1829.03"/> 
-<polygon fill="black" stroke="black" points="159.408,-3252.82 149.439,-3256.41 159.469,-3259.82 159.408,-3252.82"/>+<polygon fill="black" stroke="black" points="4796.73,-1832.5 4806.37,-1828.1 4796.09,-1825.53 4796.73,-1832.5"/>
 </g> </g>
-<!-- pnj:syriareanka&#45;&gt;lore:organisations:famille_reanka --> +<!-- pnj:manueldosplegiane&#45;&gt;lore:corpos:esprit --> 
-<g id="edge509" class="edge"><title>pnj:syriareanka&#45;&gt;lore:organisations:famille_reanka</title> +<g id="edge448" class="edge"><title>pnj:manueldosplegiane&#45;&gt;lore:corpos:esprit</title> 
-<path fill="none" stroke="black" d="M2618.9,-3132.1C2619.7,-3139.79 2619.94,-3149.05 2619.6,-3157.67"/> +<path fill="none" stroke="black" d="M2735.42,-970.631C2707.6,-981.648 2668.66,-996.403 2637.47,-1007.76"/> 
-<polygon fill="black" stroke="black" points="2616.11,-3157.48 2618.92,-3167.7 2623.09,-3157.96 2616.11,-3157.48"/>+<polygon fill="black" stroke="black" points="2636.26,-1004.47 2628.05,-1011.17 2638.65,-1011.06 2636.26,-1004.47"/>
 </g> </g>
-<!-- pnj:therez_reanka&#45;&gt;pnj:tristanodunn --> +<!-- pnj:jeandemontillyfils&#45;&gt;lore:corpos:esprit --> 
-<g id="edge517" class="edge"><title>pnj:therez_reanka&#45;&gt;pnj:tristanodunn</title> +<g id="edge592" class="edge"><title>pnj:jeandemontillyfils&#45;&gt;lore:corpos:esprit</title> 
-<path fill="none" stroke="black" d="M68.3101,-3239.91C57.2064,-3213.62 38,-3161.45 38,-3115 38,-3115 38,-3115 38,-1889 38,-1627.53 167,-1576.47 167,-1315 167,-1315 167,-1315 167,-953 167,-879.86 397.586,-837.259 517.861,-820.013"/> +<path fill="none" stroke="black" d="M2907.63,-966.918C2849.9,-977.506 2760.62,-993.506 2683,-1008 2674.13,-1009.66 2664.75,-1011.44 2655.46,-1013.2"/> 
-<polygon fill="black" stroke="black" points="518.676,-823.433 528.088,-818.57 517.697,-816.502 518.676,-823.433"/>+<polygon fill="black" stroke="black" points="2654.61,-1009.8 2645.44,-1015.09 2655.91,-1016.67 2654.61,-1009.8"/>
 </g> </g>
-<!-- pnj:therez_reanka&#45;&gt;lore:lieux:tir_na_nog --> +<!-- pnj:mariedesallies&#45;&gt;lore:corpos:saeder&#45;krupp --> 
-<g id="edge516" class="edge"><title>pnj:therez_reanka&#45;&gt;lore:lieux:tir_na_nog</title> +<g id="edge348" class="edge"><title>pnj:mariedesallies&#45;&gt;lore:corpos:saeder&#45;krupp</title> 
-<path fill="none" stroke="black" d="M59.8824,-3240.19C37.5732,-3215.09 0,-3165.33 0,-3115 0,-3115 0,-3115 0,-1889 0,-1631.83 73,-1572.17 73,-1315 73,-1315 73,-1315 73,-881 73,-649.946 278.541,-659.446 494,-576 561.29,-549.939 757.454,-534.71 874.322,-527.704"/> +<path fill="none" stroke="black" d="M5640.05,-1903.05C5631.07,-1904.77 5621.8,-1906.48 5613,-1908 5521.65,-1923.81 5416.47,-1939.34 5343.42,-1949.46"/> 
-<polygon fill="black" stroke="black" points="874.557,-531.196 884.333,-527.112 874.144,-524.208 874.557,-531.196"/>+<polygon fill="black" stroke="black" points="5342.76,-1946.02 5333.33,-1950.85 5343.71,-1952.95 5342.76,-1946.02"/>
 </g> </g>
-<!-- pnj:therez_reanka&#45;&gt;lore:organisations:famille_reanka --> +<!-- pnj:mariedesallies&#45;&gt;lore:lieux:zurich --> 
-<g id="edge515" class="edge"><title>pnj:therez_reanka&#45;&gt;lore:organisations:famille_reanka</title> +<g id="edge347" class="edge"><title>pnj:mariedesallies&#45;&gt;lore:lieux:zurich</title> 
-<path fill="none" stroke="black" d="M149.303,-3256.36C498.971,-3253.21 1999.25,-3238.1 2467,-3204 2481.27,-3202.96 2496.35,-3201.48 2511.18,-3199.82"/> +<path fill="none" stroke="black" d="M5697.6,-1872.01C5731.66,-1783.74 5886,-1376.41 5886,-1243 5886,-1243 5886,-1243 5886,-1169 5886,-1037.48 5962,-1014.52 5962,-883 5962,-883 5962,-883 5962,-449 5962,-406.723 5981.01,-360.788 5994.85,-332.946"/> 
-<polygon fill="black" stroke="black" points="2511.86,-3203.27 2521.39,-3198.65 2511.06,-3196.31 2511.86,-3203.27"/>+<polygon fill="black" stroke="black" points="5998.04,-334.385 5999.49,-323.889 5991.81,-331.193 5998.04,-334.385"/>
 </g> </g>
-<!-- lore:organisations:ordre --> +<!-- pnj:von_schencker_junior&#45;&gt;lore:lieux:munich --> 
-<g id="node153" class="node"><title>lore:organisations:ordre</title> +<g id="edge374" class="edge"><title>pnj:von_schencker_junior&#45;&gt;lore:lieux:munich</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfeecx="811" cy="-1242" rx="95.5831" ry="18"/> +<path fill="none" stroke="blackd="M4672.84,-2196.39C4678.4,-2223.06 4688,-2275.73 4688,-2321 4688,-2755 4688,-2755 4688,-2755 4688,-2803.21 4668.38,-2821.02 4626,-2844 4555.38,-2882.31 3359.32,-2893.97 3032.79,-2896.44"/> 
-<text text-anchor="middlex="811y="-1238.3" font-family="Times,serif" font-size="14.00">lore:organisations:ordre</text>+<polygon fill="blackstroke="blackpoints="3032.43,-2892.95 3022.46,-2896.52 3032.49,-2899.95 3032.43,-2892.95"/>
 </g> </g>
-<!-- pnj:therez_reanka&#45;&gt;lore:organisations:ordre --> +<!-- pnj:von_schencker_junior&#45;&gt;lore:organisations:mmar --> 
-<g id="edge514" class="edge"><title>pnj:therez_reanka&#45;&gt;lore:organisations:ordre</title> +<g id="edge371" class="edge"><title>pnj:von_schencker_junior&#45;&gt;lore:organisations:mmar</title> 
-<path fill="none" stroke="black" d="M76,-3239.95C76,-3213.29 76,-3160.11 76,-3115 76,-3115 76,-3115 76,-1889 76,-1848.55 73.2921,-1834.13 95,-1800 251.48,-1553.99 389.771,-1585.43 618,-1404 678.017,-1356.29 746.57,-1298.22 783.666,-1266.5"/> +<path fill="none" stroke="black" d="M4639.54,-2160.56C4576.57,-2122.61 4430.02,-2028.83 4365.85,-1985.55"/> 
-<polygon fill="black" stroke="black" points="786.207,-1268.93 791.526,-1259.77 781.654,-1263.61 786.207,-1268.93"/>+<polygon fill="black" stroke="black" points="4367.6,-1982.51 4357.36,-1979.79 4363.67,-1988.3 4367.6,-1982.51"/>
 </g> </g>
-<!-- pnj:lisa_bergstein&#45;&gt;lore:lieux:munich --> +<!-- pnj:von_schencker_junior&#45;&gt;lore:organisations:famille_von_schencker --> 
-<g id="edge441" class="edge"><title>pnj:lisa_bergstein&#45;&gt;lore:lieux:munich</title> +<g id="edge373" class="edge"><title>pnj:von_schencker_junior&#45;&gt;lore:organisations:famille_von_schencker</title> 
-<path fill="none" stroke="black" d="M581.884,-2478.06C593.799,-2480.43 606.303,-2482.63 618,-2484 972.364,-2525.41 2092.51,-2534.75 2405.24,-2536.59"/> +<path fill="none" stroke="black" d="M4653.04,-2160.08C4641.48,-2141.24 4630.85,-2110.5 4644,-2088 4652.22,-2073.93 4665.7,-2063.31 4680.27,-2055.41"/> 
-<polygon fill="black" stroke="black" points="2405.56,-2540.09 2415.58,-2536.65 2405.6,-2533.09 2405.56,-2540.09"/>+<polygon fill="black" stroke="black" points="4682.06,-2058.43 4689.45,-2050.84 4678.93,-2052.16 4682.06,-2058.43"/>
 </g> </g>
-<!-- pnj:lisa_bergstein&#45;&gt;pj:oggodt --> +<!-- pnj:von_schencker_junior&#45;&gt;pnj:marinavonschenker --> 
-<g id="edge439" class="edge"><title>pnj:lisa_bergstein&#45;&gt;pj:oggodt</title> +<g id="edge372" class="edge"><title>pnj:von_schencker_junior&#45;&gt;pnj:marinavonschenker</title> 
-<path fill="none" stroke="black" d="M528.483,-2447.7C529.144,-2439.98 529.939,-2430.71 530.676,-2422.11"/> +<path fill="none" stroke="black" d="M4684.18,-2160.05C4694.6,-2150.89 4708.65,-2139.46 4721.61,-2129.56"/> 
-<polygon fill="black" stroke="black" points="534.167,-2422.37 531.534,-2412.1 527.193,-2421.77 534.167,-2422.37"/>+<polygon fill="black" stroke="black" points="4724.03,-2132.11 4729.92,-2123.31 4719.83,-2126.52 4724.03,-2132.11"/>
 </g> </g>
-<!-- pnj:lisa_bergstein&#45;&gt;pj:sven --> +<!-- pnj:marinavonschenker&#45;&gt;lore:lieux:munich --> 
-<g id="edge440" class="edge"><title>pnj:lisa_bergstein&#45;&gt;pj:sven</title> +<g id="edge515" class="edge"><title>pnj:marinavonschenker&#45;&gt;lore:lieux:munich</title> 
-<path fill="none" stroke="black" d="M570.364,-2451.37C642.446,-2428.67 791.422,-2381.47 917,-2340 920.714,-2338.77 924.578,-2337.48 928.44,-2336.19"/> +<path fill="none" stroke="black" d="M4766.19,-2124.16C4771.83,-2134.29 4778.58,-2147.54 4783,-2160 4796.52,-2198.12 4802,-2208.55 4802,-2249 4802,-2755 4802,-2755 4802,-2755 4802,-2827.98 4733.68,-2822.3 4664,-2844 4507.54,-2892.72 3351.86,-2896.84 3032.54,-2897.04"/> 
-<polygon fill="black" stroke="black" points="929.592,-2339.49 937.946,-2332.97 927.352,-2332.86 929.592,-2339.49"/>+<polygon fill="black" stroke="black" points="3032.43,-2893.54 3022.44,-2897.04 3032.44,-2900.54 3032.43,-2893.54"/>
 </g> </g>
-<!-- pnj:domovoi&#45;&gt;lore:lieux:munich --> +<!-- pnj:marinavonschenker&#45;&gt;lore:corpos:saeder&#45;krupp --> 
-<g id="edge463" class="edge"><title>pnj:domovoi&#45;&gt;lore:lieux:munich</title> +<g id="edge517" class="edge"><title>pnj:marinavonschenker&#45;&gt;lore:corpos:saeder&#45;krupp</title> 
-<path fill="none" stroke="black" d="M2749.02,-2478.77C2741.72,-2480.53 2734.16,-2482.32 2727,-2484 2667.72,-2497.9 2599.79,-2513.44 2551.28,-2524.08"/> +<path fill="none" stroke="black" d="M4844.93,-2100.27C4973.31,-2092.65 5198.41,-2076.05 5227,-2052 5244.86,-2036.98 5250.83,-2010.44 5252.65,-1990.23"/> 
-<polygon fill="black" stroke="black" points="2550.26,-2520.72 2541.23,-2526.27 2551.75,-2527.56 2550.26,-2520.72"/>+<polygon fill="black" stroke="black" points="5256.15,-1990.26 5253.27,-1980.06 5249.17,-1989.83 5256.15,-1990.26"/>
 </g> </g>
-<!-- pnj:domovoi&#45;&gt;lore:bars:shatterwein --> +<!-- pnj:marinavonschenker&#45;&gt;lore:organisations:famille_von_schencker --> 
-<g id="edge462" class="edge"><title>pnj:domovoi&#45;&gt;lore:bars:shatterwein</title> +<g id="edge516" class="edge"><title>pnj:marinavonschenker&#45;&gt;lore:organisations:famille_von_schencker</title> 
-<path fill="none" stroke="black" d="M2796.02,-2448.05C2799.28,-2440.18 2803.24,-2430.62 2806.9,-2421.79"/> +<path fill="none" stroke="black" d="M4747.94,-2088.05C4746.13,-2080.35 4744.69,-2071.03 4743.91,-2062.36"/> 
-<polygon fill="black" stroke="black" points="2810.25,-2422.85 2810.84,-2412.28 2803.78,-2420.17 2810.25,-2422.85"/>+<polygon fill="black" stroke="black" points="4747.4,-2062.05 4743.31,-2052.28 4740.41,-2062.47 4747.4,-2062.05"/>
 </g> </g>
-<!-- pnj:gin&#45;&gt;lore:lieux:munich --> +<!-- pnj:marinavonschenker&#45;&gt;pnj:von_schencker_junior --> 
-<g id="edge502" class="edge"><title>pnj:gin&#45;&gt;lore:lieux:munich</title> +<g id="edge518" class="edge"><title>pnj:marinavonschenker&#45;&gt;pnj:von_schencker_junior</title> 
-<path fill="none" stroke="black" d="M3551.63,-533.664C3464.01,-567.722 3180.14,-682.405 3016,-864 2979.07,-904.858 2806,-1257.92 2806,-1313 2806,-1531 2806,-1531 2806,-1531 2806,-1722.83 3154,-2129.17 3154,-2321 3154,-2395 3154,-2395 3154,-2395 3154,-2512.72 2746.49,-2533.1 2568.48,-2536.44"/> +<path fill="none" stroke="black" d="M4740.81,-2123.96C4730.48,-2133.04 4716.58,-2144.35 4703.72,-2154.19"/> 
-<polygon fill="black" stroke="black" points="2568.31,-2532.94 2558.37,-2536.62 2568.43,-2539.94 2568.31,-2532.94"/>+<polygon fill="black" stroke="black" points="4701.34,-2151.6 4695.46,-2160.41 4705.55,-2157.19 4701.34,-2151.6"/>
 </g> </g>
-<!-- pnj:gin&#45;&gt;lore:organisations:chrysantheme_renaissante --> +<!-- pnj:andreidelcassero&#45;&gt;lore:corpos:esus --> 
-<g id="edge501" class="edge"><title>pnj:gin&#45;&gt;lore:organisations:chrysantheme_renaissante</title> +<g id="edge375" class="edge"><title>pnj:andreidelcassero&#45;&gt;lore:corpos:esus</title> 
-<path fill="none" stroke="black" d="M3544.13,-525.782C3424.85,-535.146 3020.17,-565.859 2799.82,-582.333"/> +<path fill="none" stroke="black" d="M6476.89,-1978.41C6447.99,-1989.54 6407.21,-2004.59 6374.84,-2016.06"/> 
-<polygon fill="black" stroke="black" points="2799.51,-578.847 2789.8,-583.082 2800.03,-585.827 2799.51,-578.847"/>+<polygon fill="black" stroke="black" points="6373.36,-2012.88 6365.09,-2019.5 6375.69,-2019.48 6373.36,-2012.88"/>
 </g> </g>
-<!-- pnj:ibrahimbenalhoud --> +<!-- pj:roland&#45;&gt;lore:lieux:munich --> 
-<g id="node152" class="node"><title>pnj:ibrahimbenalhoud</title> +<g id="edge463" class="edge"><title>pj:roland&#45;&gt;lore:lieux:munich</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfee" cx="5084cy="-3186" rx="88.2844" ry="18"/> +<path fill="none" stroke="blackd="M5830.79,-611.055C5860.37,-644.903 5924,-727.225 5924,-809 5924,-883 5924,-883 5924,-883 5924,-1095.3 6132,-1100.7 6132,-1313 6132,-1963 6132,-1963 6132,-1963 6132,-2085.44 6069.9,-2107.78 5985,-2196 5634.41,-2560.3 5541.84,-2726.86 5050,-2844 4851.55,-2891.26 3395.28,-2896.39 3032.62,-2896.94"/> 
-<text text-anchor="middlex="5084y="-3182.3" font-family="Times,serif" font-size="14.00">pnj:ibrahimbenalhoud</text>+<polygon fill="blackstroke="blackpoints="3032.46,-2893.44 3022.47,-2896.95 3032.47,-2900.44 3032.46,-2893.44"/>
 </g> </g>
-<!-- pnj:ibrahimbenalhoud&#45;&gt;lore:lieux:zurich --> +<!-- lore:corpos:aztechnology&#45;&gt;lore:corpos:gomorrah --> 
-<g id="edge492" class="edge"><title>pnj:ibrahimbenalhoud&#45;&gt;lore:lieux:zurich</title> +<g id="edge459" class="edge"><title>lore:corpos:aztechnology&#45;&gt;lore:corpos:gomorrah</title> 
-<path fill="none" stroke="black" d="M4997.75,-3181.84C4804.58,-3169.68 4354,-3110.9 4354,-2827 4354,-2827 4354,-2827 4354,-2537 4354,-2480.16 4370.84,-2467.92 4381,-2412 4422.84,-2181.7 4458,-2125.07 4458,-1891 4458,-1891 4458,-1891 4458,-1673 4458,-1509.05 4691,-1550.95 4691,-1387 4691,-1387 4691,-1387 4691,-953 4691,-822.602 5689.21,-811.382 5978.38,-810.867"/> +<path fill="none" stroke="black" d="M5659.9,-612.104C5660.7,-619.791 5660.94,-629.054 5660.6,-637.665"/> 
-<polygon fill="black" stroke="black" points="5978.78,-814.367 5988.78,-810.853 5978.77,-807.367 5978.78,-814.367"/>+<polygon fill="black" stroke="black" points="5657.11,-637.48 5659.92,-647.697 5664.09,-637.96 5657.11,-637.48"/>
 </g> </g>
-<!-- pnj:ibrahimbenalhoud&#45;&gt;lore:corpos:saeder&#45;krupp --> +<!-- lore:lieux:la_structure --> 
-<g id="edge491" class="edge"><title>pnj:ibrahimbenalhoud&#45;&gt;lore:corpos:saeder&#45;krupp</title> +<g id="node151" class="node" onclick="click(evt)"><title>lore:lieux:la_structure</title> 
-<path fill="none" stroke="blackd="M5160.42,-3176.83C5280.63,-3163.99 5513.64,-3139.08 5644.29,-3125.12"/> +<ellipse fill="#021dcd" fill-opacity="0.733333" stroke="#021dcdstroke-opacity="0.733333" cx="5654" cy="-522" rx="87.1846" ry="18"/> 
-<polygon fill="blackstroke="blackpoints="5644.72,-3128.6 5654.29,-3124.05 5643.98,-3121.64 5644.72,-3128.6"/>+<text text-anchor="middlex="5654y="-518.3" font-family="Times,serif" font-size="14.00">lore:lieux:la_structure</text>
 </g> </g>
-<!-- lore:organisations:ordre&#45;&gt;lore:lieux:tir_na_nog --> +<!-- lore:corpos:aztechnology&#45;&gt;lore:lieux:la_structure --> 
-<g id="edge504" class="edge"><title>lore:organisations:ordre&#45;&gt;lore:lieux:tir_na_nog</title> +<g id="edge458" class="edge"><title>lore:corpos:aztechnology&#45;&gt;lore:lieux:la_structure</title> 
-<path fill="none" stroke="black" d="M815.302,-1223.57C833.42,-1149.83 904.701,-856.006 951,-612 954.912,-591.384 958.568,-567.934 961.163,-550.282"/> +<path fill="none" stroke="black" d="M5648.08,-575.697C5647.29,-567.983 5647.06,-558.712 5647.4,-550.112"/> 
-<polygon fill="black" stroke="black" points="964.666,-550.515 962.634,-540.117 957.738,-549.513 964.666,-550.515"/>+<polygon fill="black" stroke="black" points="5650.9,-550.324 5648.1,-540.104 5643.92,-549.836 5650.9,-550.324"/>
 </g> </g>
-<!-- lore:organisations:ordre&#45;&gt;lore:corpos:ares --> +<!-- lore:lieux:la_structure&#45;&gt;lore:lieux:munich --> 
-<g id="edge503" class="edge"><title>lore:organisations:ordre&#45;&gt;lore:corpos:ares</title> +<g id="edge404" class="edge"><title>lore:lieux:la_structure&#45;&gt;lore:lieux:munich</title> 
-<path fill="none" stroke="black" d="M902.241,-1236.63C1169.59,-1223.84 1947.92,-1186.6 2196.63,-1174.7"/> +<path fill="none" stroke="black" d="M5726.08,-532.231C5768.83,-539.784 5823.08,-553.093 5867,-576 6080.46,-687.321 6170,-784.256 6170,-1025 6170,-1171 6170,-1171 6170,-1171 6170,-1267.6 6208,-1288.4 6208,-1385 6208,-1747 6208,-1747 6208,-1747 6208,-2430.56 5803.27,-2725.84 5130,-2844 4920.85,-2880.71 3403.3,-2893.79 3032.55,-2896.46"/> 
-<polygon fill="black" stroke="black" points="2196.84,-1178.2 2206.66,-1174.22 2196.51,-1171.2 2196.84,-1178.2"/>+<polygon fill="black" stroke="black" points="3032.41,-2892.96 3022.44,-2896.53 3032.46,-2899.96 3032.41,-2892.96"/>
 </g> </g>
-<!-- pnj:athoune --> +<!-- lore:lieux:la_structure&#45;&gt;lore:corpos:aztechnology --> 
-<g id="node154" class="node"><title>pnj:athoune</title> +<g id="edge405" class="edge"><title>lore:lieux:la_structure&#45;&gt;lore:corpos:aztechnology</title> 
-<ellipse fill="#b2dfee" stroke="#b2dfeecx="4862" cy="-2898" rx="51.9908" ry="18"/> +<path fill="none" stroke="blackd="M5659.9,-540.104C5660.7,-547.791 5660.94,-557.054 5660.6,-565.665"/> 
-<text text-anchor="middlex="4862y="-2894.3" font-family="Times,serif" font-size="14.00">pnj:athoune</text>+<polygon fill="blackstroke="blackpoints="5657.11,-565.48 5659.92,-575.697 5664.09,-565.96 5657.11,-565.48"/>
 </g> </g>
-<!-- pnj:athoune&#45;&gt;lore:lieux:zweibruecken --> +<!-- pnj:martha_finkerbachen&#45;&gt;pj:oggodt --> 
-<g id="edge581" class="edge"><title>pnj:athoune&#45;&gt;lore:lieux:zweibruecken</title> +<g id="edge580" class="edge"><title>pnj:martha_finkerbachen&#45;&gt;pj:oggodt</title> 
-<path fill="none" stroke="black" d="M4871.49,-2880.15C4885.31,-2855.63 4911.09,-2809.87 4927.35,-2781"/> +<path fill="none" stroke="black" d="M900.614,-3059.96C893.384,-3069.07 883.332,-3080.42 873.817,-3090.28"/> 
-<polygon fill="black" stroke="black" points="4930.41,-2782.7 4932.27,-2772.27 4924.31,-2779.26 4930.41,-2782.7"/>+<polygon fill="black" stroke="black" points="871.25,-3087.9 866.702,-3097.46 876.224,-3092.82 871.25,-3087.9"/> 
 +</g> 
 +<!-- pnj:martha_finkerbachen&#45;&gt;pnj:joachim_finkerbachen --> 
 +<g id="edge579" class="edge"><title>pnj:martha_finkerbachen&#45;&gt;pnj:joachim_finkerbachen</title> 
 +<path fill="none" stroke="black" d="M976.554,-3028.49C1045.8,-3016.1 1154.25,-2997.21 1229.03,-2984.5"/> 
 +<polygon fill="black" stroke="black" points="1229.62,-2987.95 1238.89,-2982.82 1228.45,-2981.05 1229.62,-2987.95"/
 +</g> 
 +<!-- pnj:athoune --> 
 +<g id="node153" class="node" onclick="click(evt)"><title>pnj:athoune</title> 
 +<ellipse fill="#e5b030" fill-opacity="0.733333" stroke="#e5b030" stroke-opacity="0.733333" cx="2260" cy="-1818" rx="51.9908" ry="18"/> 
 +<text text-anchor="middle" x="2260" y="-1814.3" font-family="Times,serif" font-size="14.00">pnj:athoune</text>
 </g> </g>
 <!-- pnj:athoune&#45;&gt;lore:lieux:sox --> <!-- pnj:athoune&#45;&gt;lore:lieux:sox -->
-<g id="edge580" class="edge"><title>pnj:athoune&#45;&gt;lore:lieux:sox</title> +<g id="edge498" class="edge"><title>pnj:athoune&#45;&gt;lore:lieux:sox</title> 
-<path fill="none" stroke="black" d="M4907.75,-2889.38C4984.05,-2876.66 5137.29,-2851.12 5222.1,-2836.98"/> +<path fill="none" stroke="black" d="M2308.04,-1810.73C2405.24,-1798.03 2625.19,-1769.31 2733.44,-1755.17"/> 
-<polygon fill="black" stroke="black" points="5222.8,-2840.41 5232.09,-2835.32 5221.65,-2833.51 5222.8,-2840.41"/>+<polygon fill="black" stroke="black" points="2734.09,-1758.61 2743.56,-1753.85 2733.19,-1751.67 2734.09,-1758.61"/>
 </g> </g>
-<!-- pnj:athoune&#45;&gt;lore:organisations:rote_kasern --> +<!-- pnj:athoune&#45;&gt;lore:lieux:zweibruecken --> 
-<g id="edge578" class="edge"><title>pnj:athoune&#45;&gt;lore:organisations:rote_kasern</title> +<g id="edge501" class="edge"><title>pnj:athoune&#45;&gt;lore:lieux:zweibruecken</title> 
-<path fill="none" stroke="black" d="M4852.04,-2880.04C4834.55,-2847.82 4803.41,-2777.27 4839,-2736 4868.53,-2701.76 4978.25,-2689.28 5068.35,-2684.91"/> +<path fill="none" stroke="black" d="M2212.92,-1810.34C2054.89,-1787.99 1541.97,-1715.45 1339.4,-1686.8"/> 
-<polygon fill="black" stroke="black" points="5068.56,-2688.4 5078.39,-2684.45 5068.24,-2681.41 5068.56,-2688.4"/>+<polygon fill="black" stroke="black" points="1339.8,-1683.32 1329.41,-1685.38 1338.82,-1690.25 1339.8,-1683.32"/>
 </g> </g>
 <!-- pnj:athoune&#45;&gt;pnj:bartek --> <!-- pnj:athoune&#45;&gt;pnj:bartek -->
-<g id="edge579" class="edge"><title>pnj:athoune&#45;&gt;pnj:bartek</title> +<g id="edge500" class="edge"><title>pnj:athoune&#45;&gt;pnj:bartek</title> 
-<path fill="none" stroke="black" d="M4847.75,-2880.3C4790.59,-2811.22 4586.87,-2543.64 4711,-2376 4743.63,-2331.93 4776.85,-2356.93 4829,-2340 4922.44,-2309.66 4960.51,-2328.4 5038,-2268 5142.45,-2186.58 5126.35,-2128.01 5197,-2016 5202.82,-2006.77 5209.38,-1996.75 5215.23,-1987.93"/> +<path fill="none" stroke="black" d="M2310.52,-1813.48C2414.24,-1806.05 2658.63,-1787.49 2863,-1764 3242.1,-1720.43 4254.08,-1654.42 4542,-1404 4570.84,-1378.91 4658,-1242.28 4658,-1171 4658,-1171 4658,-1171 4658,-1097 4658,-1056.03 4665.92,-1045.68 4682,-1008 4686.07,-998.461 4691.62,-988.584 4696.95,-979.979"/> 
-<polygon fill="black" stroke="black" points="5218.15,-1989.86 5220.79,-1979.59 5212.33,-1985.97 5218.15,-1989.86"/>+<polygon fill="black" stroke="black" points="4699.91,-981.847 4702.36,-971.539 4694.02,-978.069 4699.91,-981.847"/> 
 +</g> 
 +<!-- pnj:athoune&#45;&gt;lore:organisations:rote_kasern --> 
 +<g id="edge499" class="edge"><title>pnj:athoune&#45;&gt;lore:organisations:rote_kasern</title> 
 +<path fill="none" stroke="black" d="M2217.26,-1807.67C2065.09,-1774.44 1548.4,-1661.61 1354.41,-1619.25"/> 
 +<polygon fill="black" stroke="black" points="1355.11,-1615.82 1344.59,-1617.1 1353.61,-1622.66 1355.11,-1615.82"/>
 </g> </g>
 </g> </g>
 </svg> </svg>
 </html> </html>
- 
-<file>digraph doku { 
-overlap="prism"; 
-node [color=lightblue2, style=filled]; 
- "pnj:jimmyx"; 
- "pnj:jimmyx" -> "lore:lieux:camargue"; 
- "pnj:jimmyx" -> "lore:lieux:milan"; 
- "pnj:jimmyx" -> "lore:lieux:gemito"; 
- "pnj:jimmyx" -> "pnj:marcello"; 
- "lore:lieux:milan"; 
- "lore:lieux:milan" -> "pnj:marcello"; 
- "lore:lieux:milan" -> "lore:gangs:groupe_leonkavallo"; 
- "lore:lieux:milan" -> "pnj:moman"; 
- "lore:lieux:milan" -> "lore:lieux:gemito"; 
- "pnj:brendanodunn"; 
- "pnj:brendanodunn" -> "pnj:tristanodunn"; 
- "pnj:brendanodunn" -> "lore:lieux:tir_na_nog"; 
- "pnj:brendanodunn" -> "lore:corpos:sset"; 
- "pnj:brendanodunn" -> "pnj:williamodunn"; 
- "pnj:brendanodunn" -> "lore:organisations:danann_o_dunn"; 
- "lore:lieux:zweibruecken"; 
- "lore:lieux:zweibruecken" -> "lore:lieux:sox"; 
- "lore:lieux:zweibruecken" -> "lore:organisations:rote_kasern"; 
- "pnj:kromashi"; 
- "pnj:kromashi" -> "pnj:janiscalvin"; 
- "pnj:kromashi" -> "lore:lieux:munich"; 
- "lore:lieux:france"; 
- "lore:lieux:france" -> "lore:lieux:paris"; 
- "lore:lieux:france" -> "lore:lieux:nancy"; 
- "lore:lieux:france" -> "lore:lieux:europe"; 
- "pnj:enrique"; 
- "pnj:enrique" -> "lore:lieux:gemito"; 
- "pnj:enrique" -> "lore:gangs:familia_d_enrique"; 
- "lore:lieux:zurich"; 
- "lore:lieux:zurich" -> "lore:corpos:saeder-krupp"; 
- "pnj:martha_finkerbachen"; 
- "pnj:martha_finkerbachen" -> "pnj:joachim_finkerbachen"; 
- "pnj:martha_finkerbachen" -> "pj:oggodt"; 
- "pnj:stocks"; 
- "pnj:stocks" -> "lore:lieux:munich"; 
- "pnj:stocks" -> "pnj:leik"; 
- "pnj:stocks" -> "lore:organisations:mi-seng_lung"; 
- "pnj:stocks" -> "lore:organisations:chrysantheme_renaissante"; 
- "pnj:stocks" -> "lore:planques:box_m1"; 
- "pnj:stocks" -> "lore:corpos:gomorrah"; 
- "pnj:stocks" -> "lore:objets:nanoforge"; 
- "lore:organisations:fon"; 
- "lore:organisations:fon" -> "pnj:monsieur_j"; 
- "lore:organisations:fon" -> "lore:organisations:mi-seng_lung"; 
- "pnj:ono"; 
- "pnj:ono" -> "lore:organisations:mi-seng_lung"; 
- "pnj:ono" -> "lore:lieux:munich"; 
- "pnj:ono" -> "pnj:iruka"; 
- "lore:gangs:jerenton"; 
- "lore:gangs:jerenton" -> "lore:lieux:munich"; 
- "lore:gangs:jerenton" -> "lore:gangs:1thundershock"; 
- "pj:oggodt"; 
- "pj:oggodt" -> "pj:splenters"; 
- "pj:oggodt" -> "pnj:joachim_finkerbachen"; 
- "pj:oggodt" -> "pnj:meredith"; 
- "pj:oggodt" -> "pj:endol"; 
- "pj:oggodt" -> "lore:objets:trollhammer_de_oggodt"; 
- "pj:oggodt" -> "pj:eidolon"; 
- "pj:oggodt" -> "pj:sven"; 
- "pj:oggodt" -> "pnj:martha_finkerbachen"; 
- "pj:eidolon"; 
- "pj:eidolon" -> "pj:splenters"; 
- "pj:eidolon" -> "pnj:tristanodunn"; 
- "pj:eidolon" -> "pj:ankou"; 
- "pj:eidolon" -> "lore:lieux:tir_na_nog"; 
- "pj:eidolon" -> "pj:sven"; 
- "pj:eidolon" -> "pnj:eidanodunn"; 
- "pj:eidolon" -> "pj:endol"; 
- "pj:eidolon" -> "pnj:williamodunn"; 
- "pj:eidolon" -> "pj:oggodt"; 
- "pj:eidolon" -> "pj:hiquse"; 
- "pnj:elephant"; 
- "pnj:elephant" -> "lore:corpos:sset"; 
- "pnj:elephant" -> "pnj:brendanodunn"; 
- "pnj:elephant" -> "pj:ankou"; 
- "pnj:elephant" -> "pnj:tristanodunn"; 
- "pnj:elephant" -> "lore:lieux:dublin"; 
- "pnj:elephant" -> "lore:organisations:ira"; 
- "pnj:jinhong"; 
- "pnj:jinhong" -> "pj:splenters"; 
- "pnj:jinhong" -> "lore:organisations:mi-seng_lung"; 
- "pnj:jinhong" -> "lore:lieux:munich"; 
- "pnj:song_mi"; 
- "pnj:song_mi" -> "lore:lieux:munich"; 
- "pnj:song_mi" -> "lore:organisations:munich_people_voice"; 
- "lore:organisations:mi-seng_lung"; 
- "lore:organisations:mi-seng_lung" -> "pnj:jinhong"; 
- "lore:organisations:mi-seng_lung" -> "pnj:iruka"; 
- "lore:organisations:mi-seng_lung" -> "pnj:fenihilung"; 
- "lore:organisations:mi-seng_lung" -> "pnj:keito_lung"; 
- "lore:organisations:mi-seng_lung" -> "pnj:ono"; 
- "lore:organisations:mi-seng_lung" -> "lore:organisations:fon"; 
- "lore:organisations:mi-seng_lung" -> "lore:lieux:munich"; 
- "lore:organisations:mi-seng_lung" -> "lore:objets:nanoforge"; 
- "lore:organisations:mi-seng_lung" -> "pnj:yu_mi-seng"; 
- "lore:organisations:mi-seng_lung" -> "pj:splenters"; 
- "lore:organisations:mi-seng_lung" -> "pnj:tutoko"; 
- "lore:organisations:mi-seng_lung" -> "pnj:niddon"; 
- "lore:organisations:mi-seng_lung" -> "lore:organisations:camorra"; 
- "pnj:tristanodunn"; 
- "pnj:tristanodunn" -> "pnj:williamodunn"; 
- "pnj:tristanodunn" -> "lore:organisations:danann_o_dunn"; 
- "pnj:tristanodunn" -> "lore:lieux:tir_na_nog"; 
- "pnj:tristanodunn" -> "pnj:brendanodunn"; 
- "pnj:tristanodunn" -> "pnj:eidanodunn"; 
- "pnj:tristanodunn" -> "pj:eidolon"; 
- "lore:organisations:mmar"; 
- "lore:organisations:mmar" -> "lore:corpos:wuxing"; 
- "lore:organisations:mmar" -> "lore:organisations:chrysantheme_renaissante"; 
- "lore:organisations:mmar" -> "pnj:von_schencker_junior"; 
- "lore:organisations:mmar" -> "lore:lieux:munich"; 
- "lore:objets:nanoforge"; 
- "lore:objets:nanoforge" -> "lore:corpos:ares"; 
- "lore:objets:nanoforge" -> "lore:corpos:gomorrah"; 
- "lore:objets:nanoforge" -> "lore:organisations:swamp_rats"; 
- "lore:objets:nanoforge" -> "lore:planques:box_m1"; 
- "lore:lieux:tir_na_nog"; 
- "lore:lieux:tir_na_nog" -> "pj:endol"; 
- "lore:lieux:tir_na_nog" -> "lore:organisations:ira"; 
- "pnj:lilalee"; 
- "pnj:lilalee" -> "pj:eidolon"; 
- "pnj:lilalee" -> "pnj:eidanodunn"; 
- "pnj:lilalee" -> "lore:corpos:sset"; 
- "pnj:lilalee" -> "pnj:brendanodunn"; 
- "pnj:lilalee" -> "lore:lieux:tir_na_nog"; 
- "pnj:lilalee" -> "lore:organisations:danann_o_dunn"; 
- "lore:gangs:machinedreammck"; 
- "lore:gangs:machinedreammck" -> "lore:organisations:mmar"; 
- "lore:gangs:machinedreammck" -> "lore:lieux:munich"; 
- "pnj:sorenjohanson"; 
- "pnj:sorenjohanson" -> "lore:lieux:zurich"; 
- "pnj:sorenjohanson" -> "lore:corpos:saeder-krupp"; 
- "pnj:sorenjohanson" -> "lore:corpos:ares"; 
- "lore:objets:caisse_de_ruthenium"; 
- "lore:objets:caisse_de_ruthenium" -> "lore:lieux:camargue"; 
- "lore:objets:caisse_de_ruthenium" -> "lore:lieux:sox"; 
- "lore:objets:caisse_de_ruthenium" -> "lore:corpos:saeder-krupp"; 
- "lore:objets:caisse_de_ruthenium" -> "pnj:karl_paolo"; 
- "lore:objets:caisse_de_ruthenium" -> "pnj:martha_finkerbachen"; 
- "lore:gangs:groupe_leonkavallo"; 
- "lore:gangs:groupe_leonkavallo" -> "pnj:marcello"; 
- "lore:gangs:groupe_leonkavallo" -> "lore:lieux:milan"; 
- "lore:gangs:groupe_leonkavallo" -> "lore:lieux:gemito"; 
- "lore:gangs:groupe_leonkavallo" -> "pnj:theodore_smith"; 
- "pnj:jibril"; 
- "pnj:jibril" -> "lore:corpos:saeder-krupp"; 
- "pnj:jibril" -> "lore:lieux:europe"; 
- "pnj:jibril" -> "pnj:le_boss_d_ekhart"; 
- "pnj:jibril" -> "lore:lieux:gemito"; 
- "pnj:jibril" -> "pj:eidolon"; 
- "pnj:jibril" -> "lore:lieux:tir_na_nog"; 
- "pnj:jibril" -> "pnj:tristanodunn"; 
- "lore:gangs:dorf_et_obere"; 
- "lore:gangs:dorf_et_obere" -> "pnj:gutwayn"; 
- "lore:gangs:dorf_et_obere" -> "pnj:arima"; 
- "lore:gangs:dorf_et_obere" -> "lore:organisations:camorra"; 
- "lore:gangs:dorf_et_obere" -> "lore:corpos:ares"; 
- "lore:gangs:dorf_et_obere" -> "pnj:edrich"; 
- "lore:gangs:dorf_et_obere" -> "pnj:az_ebo"; 
- "pnj:valentinturenge"; 
- "pnj:valentinturenge" -> "lore:lieux:zurich"; 
- "pnj:valentinturenge" -> "lore:corpos:saeder-krupp"; 
- "pnj:damonneone"; 
- "pnj:damonneone" -> "lore:lieux:tir_na_nog"; 
- "pnj:damonneone" -> "lore:organisations:danann_o_dunn"; 
- "lore:corpos:evo"; 
- "lore:corpos:evo" -> "pnj:tonnyslaters"; 
- "lore:organisations:munich_people_voice"; 
- "lore:organisations:munich_people_voice" -> "lore:lieux:munich"; 
- "lore:organisations:munich_people_voice" -> "pnj:song_mi"; 
- "pj:roland"; 
- "pj:roland" -> "lore:lieux:munich"; 
- "pnj:gutwayn"; 
- "pnj:gutwayn" -> "pnj:arima"; 
- "pnj:gutwayn" -> "lore:lieux:munich"; 
- "pnj:gutwayn" -> "lore:gangs:dorf_et_obere"; 
- "pnj:gutwayn" -> "pnj:edrich"; 
- "pnj:gutwayn" -> "pj:endol"; 
- "pnj:silvo_campolin"; 
- "pnj:silvo_campolin" -> "lore:organisations:camorra"; 
- "pnj:silvo_campolin" -> "lore:lieux:munich"; 
- "pnj:silvo_campolin" -> "pnj:valentinpragault"; 
- "pnj:silvo_campolin" -> "pnj:camillia_campolin"; 
- "pnj:mariedesallies"; 
- "pnj:mariedesallies" -> "lore:corpos:saeder-krupp"; 
- "pnj:mariedesallies" -> "lore:lieux:zurich"; 
- "pj:endol"; 
- "pj:endol" -> "pj:eidolon"; 
- "pj:endol" -> "pnj:gutwayn"; 
- "pj:endol" -> "pnj:az_ebo"; 
- "pnj:tutoko"; 
- "pnj:tutoko" -> "lore:organisations:mi-seng_lung"; 
- "pnj:tutoko" -> "lore:lieux:munich"; 
- "lore:lieux:pompei"; 
- "lore:lieux:pompei" -> "lore:planques:entrepot_np1"; 
- "lore:lieux:pompei" -> "lore:lieux:nancy"; 
- "lore:lieux:pompei" -> "lore:lieux:confederation_italienne"; 
- "lore:corpos:wuxing"; 
- "lore:corpos:wuxing" -> "lore:lieux:munich"; 
- "lore:corpos:wuxing" -> "lore:organisations:lotus_jaune"; 
- "lore:corpos:wuxing" -> "lore:organisations:mmar"; 
- "lore:corpos:sset"; 
- "lore:corpos:sset" -> "pnj:lilalee"; 
- "lore:corpos:sset" -> "pnj:brendanodunn"; 
- "lore:corpos:sset" -> "lore:lieux:tir_na_nog"; 
- "pnj:milla"; 
- "pnj:milla" -> "lore:lieux:munich"; 
- "pnj:milla" -> "pnj:youzo"; 
- "lore:corpos:telestrian"; 
- "lore:corpos:telestrian" -> "pnj:jamestelestrian"; 
- "lore:corpos:telestrian" -> "lore:corpos:saeder-krupp"; 
- "lore:corpos:telestrian" -> "pnj:thomastelestrian"; 
- "lore:corpos:telestrian" -> "lore:lieux:zurich"; 
- "lore:corpos:telestrian" -> "lore:lieux:tir_tairngire"; 
- "lore:lieux:confederation_italienne"; 
- "lore:lieux:confederation_italienne" -> "lore:lieux:genes"; 
- "lore:lieux:confederation_italienne" -> "lore:lieux:gemito"; 
- "lore:lieux:confederation_italienne" -> "lore:lieux:pompei"; 
- "lore:lieux:confederation_italienne" -> "lore:lieux:milan"; 
- "lore:lieux:confederation_italienne" -> "lore:lieux:europe"; 
- "lore:organisations:lotus_jaune"; 
- "lore:organisations:lotus_jaune" -> "pj:johnmcgill"; 
- "lore:organisations:lotus_jaune" -> "lore:organisations:camorra"; 
- "lore:organisations:lotus_jaune" -> "lore:lieux:munich"; 
- "lore:organisations:lotus_jaune" -> "lore:organisations:chrysantheme_renaissante"; 
- "pnj:niddon"; 
- "pnj:niddon" -> "lore:organisations:swamp_rats"; 
- "pnj:niddon" -> "pnj:von_schencker_junior"; 
- "pnj:niddon" -> "pnj:fenihilung"; 
- "pnj:niddon" -> "lore:lieux:munich"; 
- "pnj:niddon" -> "lore:organisations:mi-seng_lung"; 
- "pnj:niddon" -> "pnj:yu_mi-seng"; 
- "pnj:niddon" -> "pj:splenters"; 
- "pnj:niddon" -> "pnj:bartek"; 
- "pnj:michaelcarpenter"; 
- "pnj:michaelcarpenter" -> "pnj:milenasimons"; 
- "pnj:michaelcarpenter" -> "lore:corpos:ares"; 
- "lore:corpos:horizon"; 
- "lore:corpos:horizon" -> "lore:corpos:saeder-krupp"; 
- "lore:planques:box_m1"; 
- "lore:planques:box_m1" -> "lore:objets:nanoforge"; 
- "lore:planques:box_m1" -> "pnj:fgf"; 
- "lore:planques:box_m1" -> "lore:corpos:gomorrah"; 
- "lore:planques:box_m1" -> "lore:lieux:munich"; 
- "lore:planques:box_m1" -> "pnj:leik"; 
- "lore:planques:box_m1" -> "pnj:stocks"; 
- "lore:corpos:saeder-krupp"; 
- "lore:corpos:saeder-krupp" -> "pnj:jibril"; 
- "lore:corpos:saeder-krupp" -> "pnj:karl_paolo"; 
- "lore:corpos:saeder-krupp" -> "lore:lieux:zurich"; 
- "lore:corpos:saeder-krupp" -> "pnj:le_boss_d_ekhart"; 
- "lore:corpos:saeder-krupp" -> "pnj:mariedesallies"; 
- "lore:corpos:saeder-krupp" -> "pnj:janusibherin"; 
- "lore:corpos:saeder-krupp" -> "lore:lieux:camargue"; 
- "lore:corpos:saeder-krupp" -> "pnj:ekhart"; 
- "lore:corpos:saeder-krupp" -> "pnj:ilona"; 
- "lore:corpos:saeder-krupp" -> "pnj:othmar"; 
- "lore:corpos:saeder-krupp" -> "pnj:rolf"; 
- "lore:corpos:saeder-krupp" -> "pnj:klausvongreschman"; 
- "pnj:miguelvapparossi"; 
- "pnj:miguelvapparossi" -> "lore:corpos:esus"; 
- "lore:lieux:genes"; 
- "lore:lieux:genes" -> "lore:gangs:white_skullz"; 
- "lore:lieux:genes" -> "lore:lieux:gemito"; 
- "pnj:jeandemontillyfils"; 
- "pnj:jeandemontillyfils" -> "lore:corpos:esprit"; 
- "pnj:ekhart"; 
- "pnj:ekhart" -> "lore:lieux:europe"; 
- "pnj:ekhart" -> "lore:corpos:saeder-krupp"; 
- "pnj:ekhart" -> "pnj:le_boss_d_ekhart"; 
- "pnj:ekhart" -> "lore:lieux:pompei"; 
- "pnj:ekhart" -> "lore:planques:entrepot_np1"; 
- "lore:organisations:famille_von_schencker"; 
- "lore:organisations:famille_von_schencker" -> "pnj:marinavonschenker"; 
- "lore:organisations:famille_von_schencker" -> "lore:corpos:saeder-krupp"; 
- "lore:organisations:famille_von_schencker" -> "lore:lieux:munich"; 
- "lore:organisations:famille_von_schencker" -> "pnj:von_schencker_junior"; 
- "lore:organisations:famille_von_schencker" -> "lore:lieux:zurich"; 
- "lore:organisations:famille_von_schencker" -> "lore:organisations:mmar"; 
- "lore:corpos:lone_star"; 
- "lore:corpos:lone_star" -> "lore:corpos:saeder-krupp"; 
- "lore:corpos:lone_star" -> "lore:lieux:munich"; 
- "lore:corpos:lone_star" -> "pnj:rebecca_muller"; 
- "lore:planques:entrepot_np1"; 
- "lore:planques:entrepot_np1" -> "lore:lieux:confederation_italienne"; 
- "lore:planques:entrepot_np1" -> "lore:lieux:nancy"; 
- "lore:planques:entrepot_np1" -> "lore:lieux:france"; 
- "lore:planques:entrepot_np1" -> "lore:lieux:pompei"; 
- "lore:planques:entrepot_np1" -> "lore:lieux:sox"; 
- "lore:planques:entrepot_np1" -> "pnj:ekhart"; 
- "pnj:youzo"; 
- "pnj:youzo" -> "pnj:jibril"; 
- "pnj:youzo" -> "lore:lieux:munich"; 
- "pnj:youzo" -> "pnj:milla"; 
- "pnj:youzo" -> "pnj:sokouzy"; 
- "lore:gangs:fils_de_sauron"; 
- "lore:gangs:fils_de_sauron" -> "lore:lieux:gemito"; 
- "lore:lieux:camargue"; 
- "lore:lieux:camargue" -> "lore:corpos:saeder-krupp"; 
- "lore:organisations:rote_kasern"; 
- "lore:organisations:rote_kasern" -> "lore:organisations:camorra"; 
- "lore:organisations:rote_kasern" -> "lore:lieux:sox"; 
- "lore:organisations:rote_kasern" -> "lore:lieux:europe"; 
- "lore:organisations:rote_kasern" -> "lore:lieux:zweibruecken"; 
- "pnj:jamestelestrian"; 
- "pnj:jamestelestrian" -> "lore:corpos:telestrian"; 
- "pnj:jamestelestrian" -> "lore:lieux:tir_tairngire"; 
- "pnj:jamestelestrian" -> "pnj:thomastelestrian"; 
- "lore:corpos:gomorrah"; 
- "lore:corpos:gomorrah" -> "lore:corpos:aztechnology"; 
- "lore:corpos:gomorrah" -> "lore:lieux:munich"; 
- "lore:corpos:gomorrah" -> "pj:roland"; 
- "pnj:janusibherin"; 
- "pnj:janusibherin" -> "lore:corpos:saeder-krupp"; 
- "pnj:janusibherin" -> "lore:lieux:gemito"; 
- "pnj:janusibherin" -> "lore:lieux:zurich"; 
- "pnj:janusibherin" -> "lore:lieux:camargue"; 
- "pj:ankou"; 
- "pj:ankou" -> "lore:lieux:tir_na_nog"; 
- "pj:ankou" -> "lore:organisations:rote_kasern"; 
- "lore:gangs:white_skullz"; 
- "lore:gangs:white_skullz" -> "lore:lieux:gemito"; 
- "lore:gangs:white_skullz" -> "lore:lieux:genes"; 
- "lore:gangs:white_skullz" -> "lore:gangs:fils_de_sauron"; 
- "lore:lieux:paris"; 
- "lore:lieux:paris" -> "lore:lieux:france"; 
- "lore:lieux:paris" -> "lore:corpos:ares"; 
- "lore:lieux:paris" -> "lore:corpos:esprit"; 
- "lore:lieux:europe"; 
- "lore:lieux:europe" -> "lore:lieux:france"; 
- "lore:lieux:europe" -> "lore:lieux:confederation_italienne"; 
- "lore:lieux:europe" -> "lore:lieux:tir_na_nog"; 
- "pj:sven"; 
- "pj:sven" -> "pj:ankou"; 
- "pj:sven" -> "pj:eidolon"; 
- "pj:sven" -> "pj:oggodt"; 
- "pj:sven" -> "pj:endol"; 
- "pj:sven" -> "pj:splenters"; 
- "pj:sven" -> "lore:corpos:ares"; 
- "lore:corpos:docwagon"; 
- "pnj:fgf"; 
- "pnj:fgf" -> "pnj:jinks"; 
- "pnj:fgf" -> "lore:lieux:munich"; 
- "pnj:fgf" -> "pj:eidolon"; 
- "pnj:herberdevaucanson"; 
- "pnj:herberdevaucanson" -> "lore:lieux:paris"; 
- "pnj:herberdevaucanson" -> "lore:corpos:esprit"; 
- "pnj:eidanodunn"; 
- "pnj:eidanodunn" -> "lore:lieux:tir_na_nog"; 
- "pnj:eidanodunn" -> "pnj:lilalee"; 
- "pnj:eidanodunn" -> "pj:eidolon"; 
- "pnj:eidanodunn" -> "pnj:tristanodunn"; 
- "pnj:eidanodunn" -> "pnj:williamodunn"; 
- "pnj:eidanodunn" -> "lore:organisations:danann_o_dunn"; 
- "pnj:ilona"; 
- "pnj:ilona" -> "lore:planques:box_m2"; 
- "pnj:ilona" -> "lore:lieux:zurich"; 
- "pnj:ilona" -> "pnj:rolf"; 
- "pnj:ilona" -> "pnj:othmar"; 
- "pnj:ilona" -> "lore:corpos:saeder-krupp"; 
- "pnj:ilona" -> "lore:lieux:munich"; 
- "pnj:marinemosangle"; 
- "pnj:marinemosangle" -> "lore:corpos:saeder-krupp"; 
- "pnj:marinemosangle" -> "lore:lieux:zurich"; 
- "pnj:marinemosangle" -> "pnj:alphonsemosangle"; 
- "pnj:rufus"; 
- "pnj:rufus" -> "lore:lieux:gemito"; 
- "pnj:rufus" -> "lore:organisations:camorra"; 
- "pnj:rufus" -> "pnj:meredith"; 
- "lore:bars:shatterwein"; 
- "lore:bars:shatterwein" -> "lore:lieux:munich"; 
- "pnj:marcello"; 
- "pnj:marcello" -> "lore:lieux:milan"; 
- "pnj:marcello" -> "lore:lieux:gemito"; 
- "pnj:marcello" -> "lore:gangs:groupe_leonkavallo"; 
- "lore:bars:posthaus"; 
- "lore:bars:posthaus" -> "pnj:valentinpragault"; 
- "lore:bars:posthaus" -> "lore:lieux:zweibruecken"; 
- "lore:bars:posthaus" -> "lore:organisations:rote_kasern"; 
- "lore:objets:trollhammer_de_oggodt"; 
- "lore:objets:trollhammer_de_oggodt" -> "pj:oggodt"; 
- "pj:hiquse"; 
- "pj:hiquse" -> "lore:organisations:swamp_rats"; 
- "pj:hiquse" -> "pj:eidolon"; 
- "pj:hiquse" -> "lore:objets:nanoforge"; 
- "pj:hiquse" -> "lore:lieux:sox"; 
- "pnj:yu_mi-seng"; 
- "pnj:yu_mi-seng" -> "lore:lieux:munich"; 
- "pnj:yu_mi-seng" -> "lore:organisations:mi-seng_lung"; 
- "lore:organisations:camorra"; 
- "lore:organisations:camorra" -> "pnj:camillia_campolin"; 
- "lore:organisations:camorra" -> "pnj:silvo_campolin"; 
- "lore:organisations:camorra" -> "lore:gangs:dorf_et_obere"; 
- "lore:organisations:camorra" -> "lore:lieux:munich"; 
- "pnj:obrennan"; 
- "pnj:obrennan" -> "lore:lieux:dublin"; 
- "pnj:obrennan" -> "lore:organisations:ira"; 
- "pnj:obrennan" -> "lore:organisations:rote_kasern"; 
- "lore:organisations:swamp_rats"; 
- "lore:organisations:swamp_rats" -> "lore:lieux:munich"; 
- "lore:organisations:swamp_rats" -> "lore:lieux:camargue"; 
- "lore:organisations:swamp_rats" -> "lore:corpos:bilbauer"; 
- "lore:organisations:swamp_rats" -> "lore:lieux:sox"; 
- "lore:organisations:swamp_rats" -> "pnj:theodore_smith"; 
- "lore:organisations:swamp_rats" -> "pnj:bartek"; 
- "lore:organisations:swamp_rats" -> "lore:objets:caisse_de_ruthenium"; 
- "lore:organisations:swamp_rats" -> "lore:objets:nanoforge"; 
- "pnj:arima"; 
- "pnj:arima" -> "lore:lieux:munich"; 
- "pnj:arima" -> "lore:gangs:dorf_et_obere"; 
- "pnj:arima" -> "pnj:edrich"; 
- "pnj:arima" -> "pnj:gutwayn"; 
- "pnj:alphonsemosangle"; 
- "pnj:alphonsemosangle" -> "pnj:marinemosangle"; 
- "pnj:alphonsemosangle" -> "lore:lieux:zurich"; 
- "pnj:alphonsemosangle" -> "lore:corpos:saeder-krupp"; 
- "pnj:meredith"; 
- "pnj:meredith" -> "pj:oggodt"; 
- "pnj:meredith" -> "pnj:enrique"; 
- "pnj:meredith" -> "pnj:rufus"; 
- "pnj:meredith" -> "lore:lieux:genes"; 
- "pnj:andreidelcassero"; 
- "pnj:andreidelcassero" -> "lore:corpos:esus"; 
- "pnj:joachim_finkerbachen"; 
- "pnj:joachim_finkerbachen" -> "lore:lieux:munich"; 
- "pnj:joachim_finkerbachen" -> "pj:oggodt"; 
- "pnj:joachim_finkerbachen" -> "pnj:martha_finkerbachen"; 
- "lore:planques:squat_d_en_dol"; 
- "lore:planques:squat_d_en_dol" -> "lore:lieux:munich"; 
- "lore:planques:squat_d_en_dol" -> "pj:endol"; 
- "pnj:jed"; 
- "pnj:jed" -> "lore:lieux:munich"; 
- "pnj:jed" -> "pj:oggodt"; 
- "pnj:jed" -> "pnj:martha_finkerbachen"; 
- "pnj:klausvongreschman"; 
- "pnj:klausvongreschman" -> "lore:lieux:france"; 
- "pnj:klausvongreschman" -> "lore:corpos:saeder-krupp"; 
- "pnj:valentinpragault"; 
- "pnj:valentinpragault" -> "lore:organisations:camorra"; 
- "pnj:valentinpragault" -> "pnj:bartek"; 
- "pnj:valentinpragault" -> "lore:lieux:sox"; 
- "pnj:valentinpragault" -> "lore:organisations:ira"; 
- "pnj:valentinpragault" -> "lore:lieux:zweibruecken"; 
- "pnj:valentinpragault" -> "lore:lieux:tir_na_nog"; 
- "pnj:valentinpragault" -> "pj:ankou"; 
- "pnj:valentinpragault" -> "lore:bars:posthaus"; 
- "pnj:valentinpragault" -> "lore:lieux:munich"; 
- "pnj:valentinpragault" -> "lore:organisations:rote_kasern"; 
- "pnj:valentinpragault" -> "pnj:obrennan"; 
- "pnj:fenihilung"; 
- "pnj:fenihilung" -> "lore:lieux:munich"; 
- "pnj:fenihilung" -> "lore:organisations:mi-seng_lung"; 
- "pnj:fenihilung" -> "pnj:niddon"; 
- "lore:corpos:bilbauer"; 
- "lore:corpos:bilbauer" -> "lore:lieux:sox"; 
- "lore:corpos:bilbauer" -> "lore:organisations:swamp_rats"; 
- "pnj:jinks"; 
- "pnj:jinks" -> "lore:lieux:munich"; 
- "pnj:jinks" -> "pnj:fgf"; 
- "pnj:manueldosplegiane"; 
- "pnj:manueldosplegiane" -> "lore:corpos:esprit"; 
- "pnj:sokouzy"; 
- "pnj:sokouzy" -> "pnj:jibril"; 
- "pnj:sokouzy" -> "lore:lieux:munich"; 
- "pnj:sokouzy" -> "pnj:youzo"; 
- "lore:gangs:1thundershock"; 
- "lore:gangs:1thundershock" -> "lore:gangs:jerenton"; 
- "lore:gangs:1thundershock" -> "lore:lieux:munich"; 
- "lore:gangs:1thundershock" -> "pj:johnmcgill"; 
- "lore:planques:box_m2"; 
- "lore:planques:box_m2" -> "pnj:ilona"; 
- "lore:planques:box_m2" -> "lore:lieux:munich"; 
- "lore:planques:box_m2" -> "pnj:rolf"; 
- "lore:planques:box_m2" -> "pnj:othmar"; 
- "lore:corpos:ares"; 
- "lore:corpos:ares" -> "pnj:sorenjohanson"; 
- "lore:corpos:ares" -> "pnj:milenasimons"; 
- "lore:corpos:ares" -> "pnj:michaelcarpenter"; 
- "lore:lieux:dublin"; 
- "lore:lieux:dublin" -> "lore:bars:the_hole_in_the_wall"; 
- "lore:lieux:dublin" -> "lore:lieux:tir_na_nog"; 
- "lore:lieux:dublin" -> "pnj:elephant"; 
- "lore:lieux:dublin" -> "pnj:obrennan"; 
- "pnj:rolf"; 
- "pnj:rolf" -> "lore:planques:box_m2"; 
- "pnj:rolf" -> "lore:lieux:zurich"; 
- "pnj:rolf" -> "pnj:othmar"; 
- "pnj:rolf" -> "lore:corpos:saeder-krupp"; 
- "pnj:rolf" -> "pnj:ilona"; 
- "pnj:rolf" -> "lore:lieux:munich"; 
- "pnj:sujet_2"; 
- "pnj:sujet_2" -> "lore:lieux:tir_na_nog"; 
- "pnj:sujet_2" -> "lore:organisations:danann_o_dunn"; 
- "pnj:thomastelestrian"; 
- "pnj:thomastelestrian" -> "lore:lieux:tir_tairngire"; 
- "pnj:thomastelestrian" -> "lore:corpos:telestrian"; 
- "pnj:thomastelestrian" -> "pnj:jamestelestrian"; 
- "pnj:marinavonschenker"; 
- "pnj:marinavonschenker" -> "lore:lieux:munich"; 
- "pnj:marinavonschenker" -> "lore:corpos:saeder-krupp"; 
- "pnj:marinavonschenker" -> "pnj:von_schencker_junior"; 
- "pnj:marinavonschenker" -> "lore:organisations:famille_von_schencker"; 
- "lore:lieux:la_structure"; 
- "lore:lieux:la_structure" -> "lore:lieux:munich"; 
- "lore:lieux:la_structure" -> "lore:corpos:aztechnology"; 
- "lore:organisations:ira"; 
- "lore:organisations:ira" -> "pnj:elephant"; 
- "lore:organisations:ira" -> "pnj:obrennan"; 
- "lore:organisations:ira" -> "lore:bars:the_hole_in_the_wall"; 
- "lore:organisations:ira" -> "lore:lieux:tir_na_nog"; 
- "lore:corpos:mitsuhama"; 
- "lore:corpos:mitsuhama" -> "lore:objets:nanoforge"; 
- "lore:corpos:mitsuhama" -> "pnj:keito_lung"; 
- "lore:corpos:mitsuhama" -> "pnj:leik"; 
- "pnj:othmar"; 
- "pnj:othmar" -> "pnj:rolf"; 
- "pnj:othmar" -> "lore:corpos:docwagon"; 
- "pnj:othmar" -> "pnj:ilona"; 
- "pnj:othmar" -> "lore:corpos:saeder-krupp"; 
- "pnj:othmar" -> "lore:lieux:munich"; 
- "pnj:othmar" -> "lore:planques:box_m2"; 
- "pnj:othmar" -> "lore:lieux:zurich"; 
- "pnj:edrich"; 
- "pnj:edrich" -> "pnj:arima"; 
- "pnj:edrich" -> "pnj:gutwayn"; 
- "pnj:edrich" -> "lore:gangs:dorf_et_obere"; 
- "pnj:edrich" -> "lore:lieux:munich"; 
- "pnj:keito_lung"; 
- "pnj:keito_lung" -> "pnj:yu_mi-seng"; 
- "pnj:keito_lung" -> "lore:objets:nanoforge"; 
- "pnj:keito_lung" -> "lore:organisations:mi-seng_lung"; 
- "pnj:keito_lung" -> "lore:lieux:munich"; 
- "lore:organisations:famille_reanka"; 
- "lore:organisations:famille_reanka" -> "pnj:syriareanka"; 
- "lore:organisations:famille_reanka" -> "lore:corpos:saeder-krupp"; 
- "lore:organisations:famille_reanka" -> "pnj:therez_reanka"; 
- "pnj:leik"; 
- "pnj:leik" -> "lore:objets:nanoforge"; 
- "pnj:leik" -> "lore:organisations:mi-seng_lung"; 
- "pnj:leik" -> "lore:lieux:munich"; 
- "pnj:leik" -> "pnj:jinks"; 
- "pnj:leik" -> "pnj:keito_lung"; 
- "pnj:leik" -> "lore:planques:box_m1"; 
- "pnj:leik" -> "pnj:fgf"; 
- "pnj:leik" -> "pnj:jinhong"; 
- "pnj:camillia_campolin"; 
- "pnj:camillia_campolin" -> "pnj:silvo_campolin"; 
- "pnj:camillia_campolin" -> "lore:lieux:munich"; 
- "pnj:camillia_campolin" -> "lore:organisations:camorra"; 
- "pnj:tonnyslaters"; 
- "pnj:tonnyslaters" -> "lore:corpos:saeder-krupp"; 
- "pnj:tonnyslaters" -> "lore:corpos:evo"; 
- "pnj:monsieur_j"; 
- "pnj:monsieur_j" -> "lore:lieux:munich"; 
- "pnj:monsieur_j" -> "lore:organisations:fon"; 
- "lore:corpos:aztechnology"; 
- "lore:corpos:aztechnology" -> "lore:lieux:la_structure"; 
- "lore:corpos:aztechnology" -> "lore:corpos:gomorrah"; 
- "pnj:lisa_bergstein"; 
- "pnj:lisa_bergstein" -> "pj:oggodt"; 
- "pnj:lisa_bergstein" -> "pj:sven"; 
- "pnj:lisa_bergstein" -> "lore:lieux:munich"; 
- "pj:splenters"; 
- "pj:splenters" -> "lore:lieux:munich"; 
- "lore:corpos:esus"; 
- "lore:corpos:esus" -> "pnj:miguelvapparossi"; 
- "lore:corpos:esus" -> "pnj:andreidelcassero"; 
- "lore:corpos:esus" -> "lore:corpos:saeder-krupp"; 
- "lore:corpos:esus" -> "lore:lieux:france"; 
- "pnj:le_boss_d_ekhart"; 
- "pnj:le_boss_d_ekhart" -> "lore:corpos:saeder-krupp"; 
- "pnj:le_boss_d_ekhart" -> "pnj:ekhart"; 
- "pnj:le_boss_d_ekhart" -> "lore:lieux:europe"; 
- "lore:lieux:gemito"; 
- "lore:lieux:gemito" -> "lore:gangs:groupe_leonkavallo"; 
- "lore:lieux:gemito" -> "lore:gangs:familia_d_enrique"; 
- "lore:lieux:gemito" -> "pnj:theodore_smith"; 
- "lore:lieux:gemito" -> "pnj:moman"; 
- "lore:lieux:gemito" -> "pnj:enrique"; 
- "lore:lieux:gemito" -> "pnj:meredith"; 
- "lore:lieux:gemito" -> "lore:gangs:white_skullz"; 
- "lore:lieux:gemito" -> "pnj:marcello"; 
- "lore:lieux:gemito" -> "lore:lieux:confederation_italienne"; 
- "lore:lieux:gemito" -> "pnj:rufus"; 
- "lore:lieux:gemito" -> "lore:gangs:fils_de_sauron"; 
- "lore:lieux:gemito" -> "pnj:jimmyx"; 
- "pnj:domovoi"; 
- "pnj:domovoi" -> "lore:bars:shatterwein"; 
- "pnj:domovoi" -> "lore:lieux:munich"; 
- "pnj:bartek"; 
- "pnj:bartek" -> "lore:corpos:saeder-krupp"; 
- "pnj:bartek" -> "lore:lieux:munich"; 
- "pnj:bartek" -> "lore:organisations:rote_kasern"; 
- "pnj:bartek" -> "lore:organisations:swamp_rats"; 
- "pnj:bartek" -> "pj:splenters"; 
- "pnj:bartek" -> "lore:lieux:sox"; 
- "pnj:bartek" -> "pnj:niddon"; 
- "pnj:bartek" -> "lore:objets:caisse_de_ruthenium"; 
- "pnj:bartek" -> "lore:objets:nanoforge"; 
- "lore:organisations:chrysantheme_renaissante"; 
- "lore:organisations:chrysantheme_renaissante" -> "lore:organisations:mi-seng_lung"; 
- "lore:organisations:chrysantheme_renaissante" -> "pnj:gin"; 
- "pnj:von_schencker_junior"; 
- "pnj:von_schencker_junior" -> "pnj:marinavonschenker"; 
- "pnj:von_schencker_junior" -> "lore:lieux:munich"; 
- "pnj:von_schencker_junior" -> "lore:organisations:mmar"; 
- "pnj:von_schencker_junior" -> "lore:organisations:famille_von_schencker"; 
- "pj:johnmcgill"; 
- "pj:johnmcgill" -> "lore:organisations:ira"; 
- "pj:johnmcgill" -> "lore:organisations:camorra"; 
- "pj:johnmcgill" -> "lore:lieux:munich"; 
- "pj:johnmcgill" -> "lore:lieux:tir_na_nog"; 
- "pj:johnmcgill" -> "lore:organisations:lotus_jaune"; 
- "lore:lieux:tir_tairngire"; 
- "lore:lieux:tir_tairngire" -> "lore:corpos:telestrian"; 
- "lore:lieux:tir_tairngire" -> "pnj:thomastelestrian"; 
- "lore:lieux:tir_tairngire" -> "pnj:jamestelestrian"; 
- "pnj:janiscalvin"; 
- "pnj:janiscalvin" -> "lore:lieux:munich"; 
- "pnj:janiscalvin" -> "pnj:song_mi"; 
- "pnj:janiscalvin" -> "pnj:kromashi"; 
- "pnj:janiscalvin" -> "lore:organisations:munich_people_voice"; 
- "pnj:ibrahimbenalhoud"; 
- "pnj:ibrahimbenalhoud" -> "lore:corpos:saeder-krupp"; 
- "pnj:ibrahimbenalhoud" -> "lore:lieux:zurich"; 
- "pnj:az_ebo"; 
- "pnj:az_ebo" -> "lore:lieux:munich"; 
- "pnj:az_ebo" -> "lore:gangs:dorf_et_obere"; 
- "pnj:az_ebo" -> "pj:endol"; 
- "pnj:iruka"; 
- "pnj:iruka" -> "pnj:niddon"; 
- "pnj:iruka" -> "lore:organisations:mi-seng_lung"; 
- "pnj:iruka" -> "lore:lieux:munich"; 
- "pnj:iruka" -> "pnj:yu_mi-seng"; 
- "pnj:milenasimons"; 
- "pnj:milenasimons" -> "lore:corpos:ares"; 
- "pnj:gin"; 
- "pnj:gin" -> "lore:organisations:chrysantheme_renaissante"; 
- "pnj:gin" -> "lore:lieux:munich"; 
- "lore:organisations:ordre"; 
- "lore:organisations:ordre" -> "lore:corpos:ares"; 
- "lore:organisations:ordre" -> "lore:lieux:tir_na_nog"; 
- "lore:corpos:esprit"; 
- "lore:corpos:esprit" -> "pnj:jeandemontillyfils"; 
- "lore:corpos:esprit" -> "lore:corpos:saeder-krupp"; 
- "lore:corpos:esprit" -> "pnj:herberdevaucanson"; 
- "lore:corpos:esprit" -> "pnj:manueldosplegiane"; 
- "pnj:syriareanka"; 
- "pnj:syriareanka" -> "lore:organisations:famille_reanka"; 
- "lore:lieux:sox"; 
- "lore:lieux:sox" -> "lore:organisations:swamp_rats"; 
- "lore:lieux:sox" -> "lore:lieux:nancy"; 
- "lore:lieux:sox" -> "lore:lieux:zweibruecken"; 
- "lore:lieux:sox" -> "lore:organisations:rote_kasern"; 
- "pnj:therez_reanka"; 
- "pnj:therez_reanka" -> "lore:organisations:ordre"; 
- "pnj:therez_reanka" -> "lore:organisations:famille_reanka"; 
- "pnj:therez_reanka" -> "lore:lieux:tir_na_nog"; 
- "pnj:therez_reanka" -> "pnj:tristanodunn"; 
- "lore:lieux:nancy"; 
- "lore:lieux:nancy" -> "lore:objets:caisse_de_ruthenium"; 
- "lore:lieux:nancy" -> "lore:lieux:sox"; 
- "lore:lieux:nancy" -> "lore:lieux:france"; 
- "lore:lieux:nancy" -> "lore:planques:entrepot_np1"; 
- "lore:organisations:danann_o_dunn"; 
- "lore:organisations:danann_o_dunn" -> "pj:eidolon"; 
- "lore:organisations:danann_o_dunn" -> "pnj:lilalee"; 
- "lore:organisations:danann_o_dunn" -> "pnj:brendanodunn"; 
- "lore:organisations:danann_o_dunn" -> "lore:lieux:tir_na_nog"; 
- "lore:organisations:danann_o_dunn" -> "pnj:tristanodunn"; 
- "lore:organisations:danann_o_dunn" -> "pnj:williamodunn"; 
- "lore:organisations:danann_o_dunn" -> "pnj:damonneone"; 
- "lore:organisations:danann_o_dunn" -> "pnj:eidanodunn"; 
- "lore:lieux:munich"; 
- "lore:lieux:munich" -> "pnj:gin"; 
- "lore:lieux:munich" -> "lore:organisations:mi-seng_lung"; 
- "lore:lieux:munich" -> "pnj:jinhong"; 
- "lore:lieux:munich" -> "pnj:song_mi"; 
- "lore:lieux:munich" -> "lore:gangs:machinedreammck"; 
- "lore:lieux:munich" -> "lore:gangs:dorf_et_obere"; 
- "lore:lieux:munich" -> "lore:organisations:mmar"; 
- "lore:lieux:munich" -> "pnj:keito_lung"; 
- "lore:lieux:munich" -> "pnj:edrich"; 
- "lore:lieux:munich" -> "pnj:leik"; 
- "lore:lieux:munich" -> "lore:bars:shatterwein"; 
- "lore:lieux:munich" -> "pnj:fgf"; 
- "lore:lieux:munich" -> "lore:organisations:camorra"; 
- "lore:lieux:munich" -> "pnj:theodore_smith"; 
- "lore:lieux:munich" -> "lore:organisations:munich_people_voice"; 
- "lore:lieux:munich" -> "pnj:camillia_campolin"; 
- "lore:lieux:munich" -> "pnj:silvo_campolin"; 
- "lore:lieux:munich" -> "pnj:gutwayn"; 
- "lore:lieux:munich" -> "pnj:milla"; 
- "lore:lieux:munich" -> "pnj:arima"; 
- "lore:lieux:munich" -> "pnj:niddon"; 
- "lore:lieux:munich" -> "pnj:domovoi"; 
- "lore:lieux:munich" -> "lore:planques:squat_d_en_dol"; 
- "lore:lieux:munich" -> "pnj:joachim_finkerbachen"; 
- "lore:lieux:munich" -> "pnj:lisa_bergstein"; 
- "lore:lieux:munich" -> "pnj:kromashi"; 
- "lore:lieux:munich" -> "lore:organisations:lotus_jaune"; 
- "lore:lieux:munich" -> "lore:organisations:fon"; 
- "lore:lieux:munich" -> "pnj:stocks"; 
- "lore:lieux:munich" -> "pnj:fenihilung"; 
- "lore:lieux:munich" -> "pnj:jinks"; 
- "lore:lieux:munich" -> "lore:organisations:chrysantheme_renaissante"; 
- "lore:lieux:munich" -> "pnj:jed"; 
- "lore:lieux:munich" -> "lore:planques:box_m1"; 
- "lore:lieux:munich" -> "pnj:az_ebo"; 
- "lore:lieux:munich" -> "pnj:youzo"; 
- "lore:lieux:munich" -> "lore:organisations:famille_von_schencker"; 
- "lore:lieux:munich" -> "pnj:janiscalvin"; 
- "lore:lieux:munich" -> "lore:gangs:jerenton"; 
- "lore:lieux:munich" -> "lore:gangs:1thundershock"; 
- "lore:lieux:munich" -> "pnj:sokouzy"; 
- "lore:lieux:munich" -> "lore:planques:box_m2"; 
- "pnj:rebecca_muller"; 
- "pnj:rebecca_muller" -> "pj:eidolon"; 
- "pnj:rebecca_muller" -> "lore:corpos:lone_star"; 
- "pnj:rebecca_muller" -> "lore:lieux:munich"; 
- "lore:bars:the_hole_in_the_wall"; 
- "lore:bars:the_hole_in_the_wall" -> "lore:organisations:ira"; 
- "lore:bars:the_hole_in_the_wall" -> "pnj:elephant"; 
- "lore:bars:the_hole_in_the_wall" -> "lore:lieux:dublin"; 
- "pnj:athoune"; 
- "pnj:athoune" -> "lore:organisations:rote_kasern"; 
- "pnj:athoune" -> "pnj:bartek"; 
- "pnj:athoune" -> "lore:lieux:sox"; 
- "pnj:athoune" -> "lore:lieux:zweibruecken"; 
- "pnj:williamodunn"; 
- "pnj:williamodunn" -> "lore:organisations:danann_o_dunn"; 
- "pnj:williamodunn" -> "lore:lieux:tir_na_nog"; 
- "pnj:williamodunn" -> "pnj:eidanodunn"; 
- "pnj:williamodunn" -> "pj:eidolon"; 
- "pnj:williamodunn" -> "pnj:tristanodunn"; 
- "pnj:karl_paolo"; 
- "pnj:karl_paolo" -> "pnj:klausvongreschman"; 
- "pnj:karl_paolo" -> "lore:organisations:swamp_rats"; 
- "pnj:karl_paolo" -> "lore:lieux:camargue"; 
- "pnj:karl_paolo" -> "lore:corpos:saeder-krupp"; 
- "pnj:karl_paolo" -> "pnj:janusibherin"; 
- "pnj:karl_paolo" -> "lore:corpos:gomorrah"; 
- "pnj:karl_paolo" -> "pnj:jibril"; 
- "pnj:karl_paolo" -> "lore:objets:caisse_de_ruthenium"; 
- "pnj:karl_paolo" -> "lore:lieux:zurich"; 
- "lore:gangs:familia_d_enrique"; 
- "lore:gangs:familia_d_enrique" -> "pnj:enrique"; 
- "lore:gangs:familia_d_enrique" -> "lore:lieux:gemito"; 
- "pnj:theodore_smith"; 
- "pnj:theodore_smith" -> "lore:organisations:swamp_rats"; 
- "pnj:theodore_smith" -> "lore:corpos:bilbauer"; 
- "pnj:theodore_smith" -> "lore:lieux:gemito"; 
- "pnj:theodore_smith" -> "lore:lieux:munich"; 
- "pnj:theodore_smith" -> "lore:organisations:mi-seng_lung"; 
- "pnj:moman"; 
- "pnj:moman" -> "pnj:theodore_smith"; 
- "pnj:moman" -> "lore:lieux:milan"; 
- "pnj:moman" -> "pj:sven"; 
-} 
-</file> 
notes/graphe.1421403568.txt.gz · Dernière modification : 2015/01/16 11:19 de Whidou