Skip to content

Instantly share code, notes, and snippets.

@kenwebb
Last active December 30, 2015 21:49
Show Gist options
  • Save kenwebb/7890549 to your computer and use it in GitHub Desktop.
Save kenwebb/7890549 to your computer and use it in GitHub Desktop.
Automatic graph layout with JointJS and Dagre
<?xml version="1.0" encoding="UTF-8"?>
<!--Xholon Workbook http://www.primordion.com/Xholon/gwt/ MIT License, Copyright (C) Ken Webb, Sun Dec 08 2013 13:53:45 GMT-0500 (EST)-->
<XholonWorkbook>
<Notes><![CDATA[
Xholon
------
Title: Automatic graph layout with JointJS and Dagre
Description:
Url: http://www.primordion.com/Xholon/gwt/
InternalName: gist 7890549
Keywords:
My Notes
--------
December 10, 2013
A google search for "automatic graph layout" found David Durman's blog post on "Automatic graph layout with JointJS and Dagre".
http://www.daviddurman.com/automatic-graph-layout-with-jointjs-and-dagre.html
He includes an on-page demo that uses both JointJS and Dagre to layout a graph specified with a JSON-like format,
render it to SVG, and display it on the page. His default data is only a few nodes. It looks promising,
so I've tried it with my larger Countries of Europe data (see gist https://gist.github.com/kenwebb/7851572).
To run this workbook as a Xholon app, use this URL:
http://www.primordion.com/Xholon/gwt/Xholon.html?app=7890549&src=gist&gui=clsc
My first step is to write a simple script for the Xholon app, that can be pasted into the Chameleon node, once the app has loaded.
The script consists of everything from the opening <Chameleonbehavior to the closing </Chameleonbehavior>, inclusive.
Copy these lines to the "clipboard" tab in the Xholon app, right-click on the Chameleon node in the Xholon app, and select "Paste Last Child".
<Chameleonbehavior implName="org.primordion.script.Behavior_gwtjs">
var c;
var beh = {
postConfigure: function() {
c = this.cnode.parent();
var node = c.xpath("Countries/*");
c.println("{");
while (node) {
c.print(" '" + node.xhc().name() + "': [");
var ports = node.ports();
for (var i = 0; i != ports.length; i++) {
if (i == ports.length) {break;}
var remote = ports[i].obj().reffedNode.xhc().name();
if (i > 0) {
c.print(", ");
}
c.print("'" + remote + "'");
}
c.print("]");
node = node.next();
if (node) {
c.print(",");
}
c.print("\n");
}
c.println("}");
}
}
</Chameleonbehavior>
It generates this data structure in the "out" tab:
{
'Albania': ['Kosovo', 'Serbia', 'Macedonia', 'Greece'],
'Andorra': ['France', 'Spain'],
'Armenia': ['Georgia', 'Azerbaijan', 'Turkey'],
'Austria': ['Germany', 'Czech_Republic', 'Slovakia', 'Hungary', 'Slovenia', 'Italy', 'Switzerland'],
'Azerbaijan': ['Georgia', 'Russia', 'Armenia'],
'Belarus': ['Russia', 'Ukraine', 'Poland', 'Lithuania', 'Latvia'],
'Belgium': ['Netherlands', 'Germany', 'Luxemburg', 'France'],
'Bosnia': ['Croatia', 'Serbia'],
'Bulgaria': ['Romania', 'Serbia', 'Turkey', 'Greece', 'Macedonia'],
'Croatia': ['Slovenia', 'Hungary', 'Serbia', 'Bosnia'],
'Cyprus': ['Turkey'],
'Czech_Republic': ['Germany', 'Poland', 'Slovakia', 'Austria'],
'Denmark': ['Sweden', 'Germany'],
'Estonia': ['Russia', 'Latvia'],
'Finland': ['Norway', 'Sweden', 'Russia'],
'France': ['Belgium', 'Luxemburg', 'Germany', 'Switzerland', 'Italy', 'Spain', 'Andorra', 'United_Kingdom'],
'Georgia': ['Russia', 'Azerbaijan', 'Armenia', 'Turkey'],
'Germany': ['Denmark', 'Poland', 'Czech_Republic', 'Austria', 'Switzerland', 'France', 'Luxemburg', 'Belgium', 'Netherlands'],
'Greece': ['Albania', 'Macedonia', 'Bulgaria', 'Turkey'],
'Hungary': ['Austria', 'Slovakia', 'Ukraine', 'Romania', 'Serbia', 'Croatia', 'Slovenia'],
'Iceland': ['United_Kingdom'],
'Ireland': ['United_Kingdom'],
'Italy': ['France', 'Switzerland', 'Austria', 'Slovenia', 'Malta'],
'Kosovo': ['Serbia', 'Albania'],
'Latvia': ['Estonia', 'Russia', 'Lithuania'],
'Lithuania': ['Latvia', 'Belarus', 'Poland'],
'Luxemburg': ['Belgium', 'Germany', 'France'],
'Macedonia': ['Serbia', 'Bulgaria', 'Greece', 'Albania'],
'Malta': ['Italy'],
'Moldava': ['Ukraine', 'Romania'],
'Netherlands': ['Germany', 'Belgium'],
'Norway': ['Russia', 'Finland', 'Sweden'],
'Poland': ['Lithuania', 'Belarus', 'Ukraine', 'Slovakia', 'Czech_Republic', 'Germany'],
'Portugal': ['Spain'],
'Romania': ['Hungary', 'Ukraine', 'Moldava', 'Bulgaria', 'Serbia'],
'Russia': ['Norway', 'Finland', 'Estonia', 'Latvia', 'Belarus', 'Ukraine', 'Georgia', 'Azerbaijan'],
'Serbia': ['Hungary', 'Romania', 'Bulgaria', 'Macedonia', 'Albania', 'Kosovo', 'Bosnia', 'Croatia'],
'Slovakia': ['Czech_Republic', 'Poland', 'Ukraine', 'Hungary', 'Austria'],
'Slovenia': ['Italy', 'Austria', 'Hungary', 'Croatia'],
'Spain': ['France', 'Andorra', 'Portugal'],
'Sweden': ['Norway', 'Finland', 'Denmark'],
'Switzerland': ['Germany', 'Austria', 'Italy', 'France'],
'Turkey': ['Bulgaria', 'Greece', 'Cyprus', 'Georgia', 'Armenia'],
'Ukraine': ['Belarus', 'Russia', 'Moldava', 'Romania', 'Hungary', 'Slovakia', 'Poland'],
'United_Kingdom': ['Ireland', 'Iceland', 'France']
}
When I paste this into the input area on David's page, his code generates and displays an SVG image.
The SVG text is about 330K in size, so I'm only including a portion of it here.
The nodes are nicely laid out, and the edges between nodes all correctly have an arrow head at each end.
But the lines cross the nodes, rather than going around them.
I don't know if this is an issue with Dagre or JointJS or David's demo code.
Note that the resulting SVG is intended to work interactively with one or more of the libraries used on David's page,
and includes a number of normally invisible shapes. These appear on my Xholon page as large black circles and arrow heads.
I don't have time to explore this further at the moment, but it looks promising.
The following are my original notes from the earlier workbook.
December 7, 2013
I'm doing a simple model showing which European countries are next to each other. Mostly, I want to explore the simplest way to do this with Xholon GWT, and my new version of the Xholon Workbook editor. I think I can generate it all from a simple text list of lists. I'll list all the countries in alphabetical order, and then put the names of all the adjacent countries after the name. At runtime, Xholon will generate the normal Xholon structure.
At runtime, if I hover above a D3 (http://d3js.org/) node, all the adjacent countries will be highlighted.
Here's my list of European countries, in alphabetical order:
Albania
Andorra
Armenia
Austria
Azerbaijan
Belarus
Belgium
Bosnia
Bulgaria
Croatia
Cyprus
Czech_Republic
Denmark
Estonia
Finland
France
Georgia
Germany
Greece
Hungary
Iceland
Ireland
Italy
Kosovo
Latvia
Lithuania
Luxemburg
Macedonia
Malta
Moldava
Netherlands
Norway
Poland
Portugal
Romania
Russia
Serbia
Slovakia
Slovenia
Spain
Sweden
Switzerland
Turkey
Ukraine
United_Kingdom
I've only implemented ports for France so far, which works. With the D3 gui, the countries that the ports reference are highlighted. What is a universal way to show the names of the countries, and not just their first letter?
December 8
I've done about as much as I can from memory. It's time to check the atlas for final details.
My composite structure hierarchy is an adjacency list
http://en.wikipedia.org/wiki/Adjacency_list
Another standard way to express adjacency is through an adjacency matrix
http://en.wikipedia.org/wiki/Adjacency_matrix
The adjacency list is probably the simplest way for people to specify the structure.
It might be good to have a built-in Xholon class that can read an adjacency list, and produce a complets set of Xholon trees and graphs from this - an inheritance hierarchy tree, a composite structure hierarchy tree, and a port graph. It's toString() method would print out a nicely formatted comma-separated? list. Possibly it should also be able to generate an adjacency matrix.
I can generate a good graph by right-clicking on the Countries node, and selecting Export > Graphviz. I then need to save the output (starting with "digraph") to a file (Countries.gv), and run the following (Linux) command to generate an SVG file:
dot -Tsvg -O Countries.gv
Because it's a directed graph (digraph), the diagram includes lines and arrows for each direction, so there's redundancy in this case. With countries it's always true that if country A is adjacent to country B, then country B is adjacent to country A.
I've pasted the generated SVG content back into the SVG editor of this workbook. The SVG image appears when the Xholon GWT runs this Xholon Workbook.
]]></Notes>
<_-.XholonClass>
<CountrySystem/>
<Countries/>
</_-.XholonClass>
<xholonClassDetails>
</xholonClassDetails>
<CountrySystem>
<Attribute_String>
Albania,Kosovo,Serbia,Macedonia,Greece
Andorra,France,Spain
Armenia,Georgia,Azerbaijan,Turkey
Austria,Germany,Czech_Republic,Slovakia,Hungary,Slovenia,Italy,Switzerland
Azerbaijan,Georgia,Russia,Armenia
Belarus,Russia,Ukraine,Poland,Lithuania,Latvia
Belgium,Netherlands,Germany,Luxemburg,France
Bosnia,Croatia,Serbia
Bulgaria,Romania,Serbia,Turkey,Greece,Macedonia
Croatia,Slovenia,Hungary,Serbia,Bosnia
Cyprus,Turkey
Czech_Republic,Germany,Poland,Slovakia,Austria
Denmark,Sweden,Germany
Estonia,Russia,Latvia
Finland,Norway,Sweden,Russia
France,Belgium,Luxemburg,Germany,Switzerland,Italy,Spain,Andorra,United_Kingdom
Georgia,Russia,Azerbaijan,Armenia,Turkey
Germany,Denmark,Poland,Czech_Republic,Austria,Switzerland,France,Luxemburg,Belgium,Netherlands
Greece,Albania,Macedonia,Bulgaria,Turkey
Hungary,Austria,Slovakia,Ukraine,Romania,Serbia,Croatia,Slovenia
Iceland,United_Kingdom
Ireland,United_Kingdom
Italy,France,Switzerland,Austria,Slovenia,Malta
Kosovo,Serbia,Albania
Latvia,Estonia,Russia,Lithuania
Lithuania,Latvia,Belarus,Poland
Luxemburg,Belgium,Germany,France
Macedonia,Serbia,Bulgaria,Greece,Albania
Malta,Italy
Moldava,Ukraine,Romania
Netherlands,Germany,Belgium
Norway,Russia,Finland,Sweden
Poland,Lithuania,Belarus,Ukraine,Slovakia,Czech_Republic,Germany
Portugal,Spain
Romania,Hungary,Ukraine,Moldava,Bulgaria,Serbia
Russia,Norway,Finland,Estonia,Latvia,Belarus,Ukraine,Georgia,Azerbaijan
Serbia,Hungary,Romania,Bulgaria,Macedonia,Albania,Kosovo,Bosnia,Croatia
Slovakia,Czech_Republic,Poland,Ukraine,Hungary,Austria
Slovenia,Italy,Austria,Hungary,Croatia
Spain,France,Andorra,Portugal
Sweden,Norway,Finland,Denmark
Switzerland,Germany,Austria,Italy,France
Turkey,Bulgaria,Greece,Cyprus,Georgia,Armenia
Ukraine,Belarus,Russia,Moldava,Romania,Hungary,Slovakia,Poland
United_Kingdom,Ireland,Iceland,France
</Attribute_String>
</CountrySystem>
<CountrySystembehavior implName="org.primordion.xholon.base.Behavior_gwtjs"><![CDATA[
var cs, app;
var beh = {
postConfigure: function() {
cs = this.cnode.parent();
app = $wnd.xh.app();
$wnd.xh.param("MaxPorts", "10");
var text = cs.first().text();
// get xhRoot
var xhRoot = cs.parent();
// get xhcRoot
var xhcRoot = cs.xhc().parent();
// get XholonHelperService
var service = $wnd.xh.service("XholonHelperService");
// ih
var ihStr = this.makeIhStr(text);
service.call(-2013, ihStr, xhcRoot); // ISignal.ACTION_PASTE_LASTCHILD_FROMSTRING = -2013
// cd
var cdStr = this.makeCdStr(text);
service.call(-2013, cdStr, xhcRoot);
// csh
var cshStr = this.makeCshStr(text);
service.call(-2013, cshStr, xhRoot);
},
// Make an Inheritance Hierarchy XML string
makeIhStr: function(text) {
var classXml = "<_-.XholonClass><Country>\n";
var arr = text.split("\n");
for (var i = 0; i < arr.length; i++) {
var country = arr[i];
if (country) {
var items = country.split(",");
classXml += " <" + items[0] + "/>\n";
}
}
classXml += "</Country></_-.XholonClass>\n";
return classXml;
},
// Make an Class Details XML string
makeCdStr: function(text) {
var classXml = "<xholonClassDetails>\n";
var arr = text.split("\n");
for (var i = 0; i < arr.length; i++) {
var country = arr[i];
if (country) {
var items = country.split(",");
classXml += " <" + items[0] + ">\n";
for (var j = 1; j < items.length; j++) {
classXml += ' <port name="port" index="' + (j-1) + '" connector="../' + items[j] + '"/>\n';
}
classXml += " </" + items[0] + ">\n";
}
}
classXml += "</xholonClassDetails>\n";
return classXml;
},
// Make an Composite Structure Hierarchy XML string
makeCshStr: function(text) {
var xml = "<Countries>\n";
var arr = text.split("\n");
for (var i = 0; i < arr.length; i++) {
var country = arr[i];
if (country) {
var items = country.split(",");
xml += " <" + items[0] + "/>\n";
}
}
xml += "</Countries>\n";
return xml;
}
}
]]></CountrySystembehavior>
<SvgClient><Attribute_String roleName="svgUri"><![CDATA[data:image/svg+xml,
<svg xmlns="http://www.w3.org/2000/svg" xlink="http://www.w3.org/1999/xlink" version="1.1" id="v_5" width="2000" height="2000">
<g id="v_6" class="viewport" transform="translate(20,20) "><g id="j_234" class="element basic Rect" model-id="Belgium" fill="white" stroke="none" transform="translate(273.6,16)"><g class="rotatable" id="v_4226" transform="rotate(0,41.6,16)"><g class="scalable" id="v_4229" transform="scale(1.0000093901122118,1)"><rect id="v_4227" fill="white" stroke="#555" width="83.2" height="32" rx="5" ry="5"/></g><text id="v_4228" font-size="8" fill="black" font-family="monospace" dominant-baseline="hanging" transform="translate(23.60000228881836,11) ">Belgium</text></g></g><g id="j_235" class="element basic Rect" model-id="Denmark" fill="white" stroke="none" transform="translate(41.60000000000002,202)"><g class="rotatable" id="v_4231" transform="rotate(0,41.6,16)"><g class="scalable" id="v_4234" transform="scale(1.0000093901122118,1)"><rect id="v_4232" fill="white" stroke="#555" width="83.2" height="32" rx="5" ry="5"/></g><text id="v_4233" font-size="8" fill="black" font-family="monospace" dominant-baseline="hanging" transform="translate(23.60000228881836,11) ">Denmark</text></g></g><g id="j_236" class="element basic Rect" model-id="Finland" fill="white" stroke="none" transform="translate(41.60000000000002,388)"><g class="rotatable" id="v_4236" transform="rotate(0,41.6,16)"><g class="scalable" id="v_4239" transform="scale(1.0000093901122118,1)"><rect id="v_4237" fill="white" stroke="#555" width="83.2" height="32" rx="5" ry="5"/></g><text id="v_4238" font-size="8" fill="black" font-family="monospace" dominant-baseline="hanging" transform="translate(24.10000228881836,11) ">Finland</text></g></g><g id="j_237" class="element basic Rect" model-id="France" fill="white" stroke="none" transform="translate(367.40000000000003,264)"><g class="rotatable" id="v_4241" transform="rotate(0,36.8,16)"><g class="scalable" id="v_4244" transform="scale(0.9999787708311219,1)"><rect id="v_4242" fill="white" stroke="#555" width="73.6" height="32" rx="5" ry="5"/></g><text id="v_4243" font-size="8" fill="black" font-family="monospace" dominant-baseline="hanging" transform="translate(21.799999237060547,11) ">France</text></g></g><g id="j_238" class="element basic Rect" model-id="Germany" fill="white" stroke="none" transform="translate(273.6,140)"><g class="rotatable" id="v_4246" transform="rotate(0,41.6,16)"><g class="scalable" id="v_4249" transform="scale(1.0000093901122118,1)"><rect id="v_4247" fill="white" stroke="#555" width="83.2" height="32" rx="5" ry="5"/></g><text id="v_4248" font-size="8" fill="black" font-family="monospace" dominant-baseline="hanging" transform="translate(24.10000228881836,11) ">Germany</text></g></g><g id="j_239" class="element basic Rect" model-id="Iceland" fill="white" stroke="none" transform="translate(579.4000000000001,388)"><g class="rotatable" id="v_4251" transform="rotate(0,41.6,16)"><g class="scalable" id="v_4254" transform="scale(1.0000093901122118,1)"><rect id="v_4252" fill="white" stroke="#555" width="83.2" height="32" rx="5" ry="5"/></g><text id="v_4253" font-size="8" fill="black" font-family="monospace" dominant-baseline="hanging" transform="translate(24.10000228881836,11) ">Iceland</text></g></g><g id="j_240" class="element basic Rect" model-id="Ireland" fill="white" stroke="none" transform="translate(432.6000000000001,388)"><g class="rotatable" id="v_4256" transform="rotate(0,41.6,16)"><g class="scalable" id="v_4259" transform="scale(1.0000093901122118,1)"><rect id="v_4257" fill="white" stroke="#555" width="83.2" height="32" rx="5" ry="5"/></g><text id="v_4258" font-size="8" fill="black" font-family="monospace" dominant-baseline="hanging" transform="translate(24.10000228881836,11) ">Ireland</text></g></g><g id="j_241" class="element basic Rect" model-id="Luxemburg" fill="white" stroke="none" transform="translate(321.00000000000006,326)"><g class="rotatable" id="v_4261" transform="rotate(0,51.199999999999996,16)"><g class="scalable" id="v_4264" transform="scale(1.0000152590218967,1)"><rect id="v_4262" fill="white" stroke="#555" width="102.39999999999999" height="32" rx="5" ry="5"/></g><text id="v_4263" font-size="8" fill="black" font-family="monospace" dominant-baseline="hanging" transform="translate(28.700000762939453,11) ">Luxemburg</text></g></g><g id="j_242" class="element basic Rect" model-id="Netherlands" fill="white" stroke="none" transform="translate(319,78)"><g class="rotatable" id="v_4266" transform="rotate(0,60.8,16)"><g class="scalable" id="v_4269" transform="scale(0.9999871506585287,1)"><rect id="v_4267" fill="white" stroke="#555" width="121.6" height="32" rx="5" ry="5"/></g><text id="v_4268" font-size="8" fill="black" font-family="monospace" dominant-baseline="hanging" transform="translate(32.79999923706055,11) ">Netherlands</text></g></g><g id="j_243" class="element basic Rect" model-id="Norway" fill="white" stroke="none" transform="translate(75.00000000000006,326)"><g class="rotatable" id="v_4271" transform="rotate(0,36.8,16)"><g class="scalable" id="v_4274" transform="scale(0.9999787708311219,1)"><rect id="v_4272" fill="white" stroke="#555" width="73.6" height="32" rx="5" ry="5"/></g><text id="v_4273" font-size="8" fill="black" font-family="monospace" dominant-baseline="hanging" transform="translate(21.799999237060547,11) ">Norway</text></g></g><g id="j_244" class="element basic Rect" model-id="Sweden" fill="white" stroke="none" transform="translate(41.60000000000002,264)"><g class="rotatable" id="v_4276" transform="rotate(0,36.8,16)"><g class="scalable" id="v_4279" transform="scale(0.9999787708311219,1)"><rect id="v_4277" fill="white" stroke="#555" width="73.6" height="32" rx="5" ry="5"/></g><text id="v_4278" font-size="8" fill="black" font-family="monospace" dominant-baseline="hanging" transform="translate(21.799999237060547,11) ">Sweden</text></g></g><g id="j_245" class="element basic Rect" model-id="Switzerland" fill="white" stroke="none" transform="translate(348.80000000000007,202)"><g class="rotatable" id="v_4281" transform="rotate(0,60.8,16)"><g class="scalable" id="v_4284" transform="scale(0.9999871506585287,1)"><rect id="v_4282" fill="white" stroke="#555" width="121.6" height="32" rx="5" ry="5"/></g><text id="v_4283" font-size="8" fill="black" font-family="monospace" dominant-baseline="hanging" transform="translate(33.29999923706055,11) ">Switzerland</text></g></g><g id="j_246" class="element basic Rect" model-id="United_Kingdom" fill="white" stroke="none" transform="translate(560.8000000000001,326)"><g class="rotatable" id="v_4286" transform="rotate(0,75.2,16)"><g class="scalable" id="v_4289" transform="scale(1.0000103890706977,1)"><rect id="v_4287" fill="white" stroke="#555" width="150.4" height="32" rx="5" ry="5"/></g><text id="v_4288" font-size="8" fill="black" font-family="monospace" dominant-baseline="hanging" transform="translate(39.69999694824219,11) ">United_Kingdom</text></g></g><g id="j_247" class="link" model-id="84295de7-f778-44d8-b4c7-060929bdf82c"><path class="connection" stroke="black" id="v_4291" d="M 332 48 C 341.43033646720534 57.075441689846826 350.8606729344107 66.15088337969365 360.2910094016162 75.22632506954048"/><path class="marker-source" fill="black" stroke="black" id="v_4292" transform="translate(332,48) scale(1,1) rotate(43.901336573594364)"/><path class="marker-target" fill="black" stroke="black" id="v_4293" d="M 4 0 L 0 2 L 4 4 z" transform="translate(361.78631591796875,79.4410629272461) scale(1,1) rotate(-136.09866342640564)"/><path class="connection-wrap" id="v_4294" d="M 332 48 C 341.43033646720534 57.075441689846826 350.8606729344107 66.15088337969365 360.2910094016162 75.22632506954048"/><g class="labels" id="v_4295"/><g class="marker-vertices" id="v_4296"/><g class="marker-arrowheads" id="v_4297"><g class="marker-arrowhead-group" transform="translate(336.5072021484375,43.316524505615234) scale(0.5,0.5) rotate(43.901336573594364)" id="v_4975"><path class="marker-arrowhead" end="source" d="M 26 0 L 0 13 L 26 26 z"/></g><g class="marker-arrowhead-group" transform="translate(358.66595458984375,82.6834716796875) scale(0.5,0.5) rotate(-136.09866342640564)" id="v_4976"><path class="marker-arrowhead" end="target" d="M 26 0 L 0 13 L 26 26 z"/></g></g><g class="link-tools" id="v_4298"><g class="link-tool" id="v_4299" transform="translate(346.41015625, 61.86893081665039) scale(.5)"><g class="tool-remove" event="remove"><circle r="11"/><path transform="scale(.8) translate(-16, -16)" d="M24.778,21.419 19.276,15.917 24.777,10.415 21.949,7.585 16.447,13.087 10.945,7.585 8.117,10.415 13.618,15.917 8.116,21.419 10.946,24.248 16.447,18.746 21.948,24.248z"/><title>Remove link.</title></g></g></g></g><g id="j_248" class="link" model-id="3c93bf51-4427-483d-b398-1903150da100"><path class="connection" stroke="black" id="v_4309" d="M 315 48 C 315.0542165539297 77.33333561078173 315.10843310785936 106.66667122156346 315.16264966178903 136.0000068323452"/><path class="marker-source" fill="black" stroke="black" id="v_4310" transform="translate(315,48) scale(1,1) rotate(89.89410400429142)"/><path class="marker-target" fill="black" stroke="black" id="v_4311" d="M 4 0 L 0 2 L 4 4 z" transform="translate(313.1700439453125,140.00369262695312) scale(1,1) rotate(-90.10589599570858)"/><path class="connection-wrap" id="v_4312" d="M 315 48 C 315.0542165539297 77.33333561078173 315.10843310785936 106.66667122156346 315.16264966178903 136.0000068323452"/><g class="labels" id="v_4313"/><g class="marker-vertices" id="v_4314"/><g class="marker-arrowheads" id="v_4315"><g class="marker-arrowhead-group" transform="translate(321.5,47.98798751831055) scale(0.5,0.5) rotate(89.89410400429142)" id="v_4931"><path class="marker-arrowhead" end="source" d="M 26 0 L 0 13 L 26 26 z"/></g><g class="marker-arrowhead-group" transform="translate(308.6700439453125,140.01202392578125) scale(0.5,0.5) rotate(-90.10589599570858)" id="v_4932"><path class="marker-arrowhead" end="target" d="M 26 0 L 0 13 L 26 26 z"/></g></g><g class="link-tools" id="v_4316"><g class="link-tool" id="v_4317" transform="translate(315.03729248046875, 67.99996185302734) scale(.5)"><g class="tool-remove" event="remove"><circle r="11"/><path transform="scale(.8) translate(-16, -16)" d="M24.778,21.419 19.276,15.917 24.777,10.415 21.949,7.585 16.447,13.087 10.945,7.585 8.117,10.415 13.618,15.917 8.116,21.419 10.946,24.248 16.447,18.746 21.948,24.248z"/><title>Remove link.</title></g></g></g></g><g id="j_249" class="link" model-id="e62ab32a-7d08-40d1-a740-2712514fbc3f"><path class="connection" stroke="black" id="v_4326" d="M 318 48 C 334.84207949420585 139.35543015040255 351.6841589884117 230.7108603008051 368.5262384826176 322.06629045120764"/><path class="marker-source" fill="black" stroke="black" id="v_4327" transform="translate(318,48) scale(1,1) rotate(79.55438184608678)"/><path class="marker-target" fill="black" stroke="black" id="v_4328" d="M 4 0 L 0 2 L 4 4 z" transform="translate(367.28460693359375,326.36260986328125) scale(1,1) rotate(-100.44563242752815)"/><path class="connection-wrap" id="v_4329" d="M 318 48 C 334.84207949420585 139.35543015040255 351.6841589884117 230.7108603008051 368.5262384826176 322.06629045120764"/><g class="labels" id="v_4330"/><g class="marker-vertices" id="v_4331"/><g class="marker-arrowheads" id="v_4332"><g class="marker-arrowhead-group" transform="translate(330.7845764160156,45.64307403564453) scale(1,1) rotate(79.55438184608678)" id="v_4963"><path class="marker-arrowhead" end="source" d="M 26 0 L 0 13 L 26 26 z"/></g><g class="marker-arrowhead-group" transform="translate(356.4669189453125,328.35693359375) scale(1,1) rotate(-100.44563242752815)" id="v_4964"><path class="marker-arrowhead" end="target" d="M 26 0 L 0 13 L 26 26 z"/></g></g><g class="link-tools" id="v_4333"><g class="link-tool" id="v_4334" transform="translate(325.25225830078125, 87.33706665039062) "><g class="tool-remove" event="remove"><circle r="11"/><path transform="scale(.8) translate(-16, -16)" d="M24.778,21.419 19.276,15.917 24.777,10.415 21.949,7.585 16.447,13.087 10.945,7.585 8.117,10.415 13.618,15.917 8.116,21.419 10.946,24.248 16.447,18.746 21.948,24.248z"/><title>Remove link.</title></g></g></g></g><g id="j_250" class="link" model-id="6c8ce57b-cfea-4608-b1f7-357e69a38dcf"><path class="connection" stroke="black" id="v_4343" d="M 321 48 C 346.37023661492344 118.74493065709909 371.7404732298469 189.48986131419818 397.1107098447703 260.2347919712973"/><path class="marker-source" fill="black" stroke="black" id="v_4344" transform="translate(321,48) scale(1,1) rotate(70.27136258494627)"/><path class="marker-target" fill="black" stroke="black" id="v_4345" d="M 4 0 L 0 2 L 4 4 z" transform="translate(396.578369140625,264.6751403808594) scale(1,1) rotate(-109.72862340369369)"/><path class="connection-wrap" id="v_4346" d="M 321 48 C 346.37023661492344 118.74493065709909 371.7404732298469 189.48986131419818 397.1107098447703 260.2347919712973"/><g class="labels" id="v_4347"/><g class="marker-vertices" id="v_4348"/><g class="marker-arrowheads" id="v_4349"><g class="marker-arrowhead-group" transform="translate(333.2369384765625,43.61164474487305) scale(1,1) rotate(70.27136258494627)" id="v_4911"><path class="marker-arrowhead" end="source" d="M 26 0 L 0 13 L 26 26 z"/></g><g class="marker-arrowhead-group" transform="translate(386.22406005859375,268.38836669921875) scale(1,1) rotate(-109.72862340369369)" id="v_4912"><path class="marker-arrowhead" end="target" d="M 26 0 L 0 13 L 26 26 z"/></g></g><g class="link-tools" id="v_4350"><g class="link-tool" id="v_4351" transform="translate(334.50244140625, 85.65214538574219) "><g class="tool-remove" event="remove"><circle r="11"/><path transform="scale(.8) translate(-16, -16)" d="M24.778,21.419 19.276,15.917 24.777,10.415 21.949,7.585 16.447,13.087 10.945,7.585 8.117,10.415 13.618,15.917 8.116,21.419 10.946,24.248 16.447,18.746 21.948,24.248z"/><title>Remove link.</title></g></g></g></g><g id="j_251" class="link" model-id="ba807fd9-0632-47bb-8ba6-0acef19e0078"><path class="connection" stroke="black" id="v_4360" d="M 82 234 C 81.32119965226049 242.6707338192592 80.64239930452098 251.3414676385184 79.96359895678148 260.0122014577776"/><path class="marker-source" fill="black" stroke="black" id="v_4361" transform="translate(82,234) scale(1,1) rotate(-265.52365090747185)"/><path class="marker-target" fill="black" stroke="black" id="v_4362" d="M 4 0 L 0 2 L 4 4 z" transform="translate(77.65750885009766,263.8439025878906) scale(1,1) rotate(-85.52365090747182)"/><path class="connection-wrap" id="v_4363" d="M 82 234 C 81.32119965226049 242.6707338192592 80.64239930452098 251.3414676385184 79.96359895678148 260.0122014577776"/><g class="labels" id="v_4364"/><g class="marker-vertices" id="v_4365"/><g class="marker-arrowheads" id="v_4366"><g class="marker-arrowhead-group" transform="translate(88.48017120361328,234.50730895996094) scale(0.5,0.5) rotate(-265.52365090747185)" id="v_4991"><path class="marker-arrowhead" end="source" d="M 26 0 L 0 13 L 26 26 z"/></g><g class="marker-arrowhead-group" transform="translate(73.17123413085938,263.4927062988281) scale(0.5,0.5) rotate(-85.52365090747182)" id="v_4992"><path class="marker-arrowhead" end="target" d="M 26 0 L 0 13 L 26 26 z"/></g></g><g class="link-tools" id="v_4367"><g class="link-tool" id="v_4368" transform="translate(80.4399642944336, 253.93907165527344) scale(.5)"><g class="tool-remove" event="remove"><circle r="11"/><path transform="scale(.8) translate(-16, -16)" d="M24.778,21.419 19.276,15.917 24.777,10.415 21.949,7.585 16.447,13.087 10.945,7.585 8.117,10.415 13.618,15.917 8.116,21.419 10.946,24.248 16.447,18.746 21.948,24.248z"/><title>Remove link.</title></g></g></g></g><g id="j_252" class="link" model-id="fc2739b5-4ef8-4537-b698-6a0e8954243c"><path class="connection" stroke="black" id="v_4378" d="M 125 207 C 173.24549550737 194.06348451501572 221.49099101474002 181.12696903003143 269.73648652210994 168.1904535450472"/><path class="marker-source" fill="black" stroke="black" id="v_4379" transform="translate(125,207) scale(1,1) rotate(-15.010164559518387)"/><path class="marker-target" fill="black" stroke="black" id="v_4380" d="M 4 0 L 0 2 L 4 4 z" transform="translate(274.11798095703125,169.08624267578125) scale(1,1) rotate(-195.01016291023285)"/><path class="connection-wrap" id="v_4381" d="M 125 207 C 173.24549550737 194.06348451501572 221.49099101474002 181.12696903003143 269.73648652210994 168.1904535450472"/><g class="labels" id="v_4382"/><g class="marker-vertices" id="v_4383"/><g class="marker-arrowheads" id="v_4384"><g class="marker-arrowhead-group" transform="translate(121.63312530517578,194.4435577392578) scale(1,1) rotate(-15.010164559518387)" id="v_4933"><path class="marker-arrowhead" end="source" d="M 26 0 L 0 13 L 26 26 z"/></g><g class="marker-arrowhead-group" transform="translate(276.9668884277344,179.71092224121094) scale(1,1) rotate(-195.01016291023285)" id="v_4934"><path class="marker-arrowhead" end="target" d="M 26 0 L 0 13 L 26 26 z"/></g></g><g class="link-tools" id="v_4385"><g class="link-tool" id="v_4386" transform="translate(163.6352996826172, 196.6407470703125) "><g class="tool-remove" event="remove"><circle r="11"/><path transform="scale(.8) translate(-16, -16)" d="M24.778,21.419 19.276,15.917 24.777,10.415 21.949,7.585 16.447,13.087 10.945,7.585 8.117,10.415 13.618,15.917 8.116,21.419 10.946,24.248 16.447,18.746 21.948,24.248z"/><title>Remove link.</title></g></g></g></g><g id="j_253" class="link" model-id="c450f98e-0af8-4bd7-83ee-480855e96d06"><path class="connection" stroke="black" id="v_4394" d="M 91 388 C 94.97216172220597 379.21491662302606 98.94432344441194 370.4298332460521 102.91648516661793 361.6447498690783"/><path class="marker-source" fill="black" stroke="black" id="v_4395" transform="translate(91,388) scale(1,1) rotate(-65.66996877479272)"/><path class="marker-target" fill="black" stroke="black" id="v_4396" d="M 4 0 L 0 2 L 4 4 z" transform="translate(106.38683319091797,358.8240051269531) scale(1,1) rotate(-245.66996877479272)"/><path class="connection-wrap" id="v_4397" d="M 91 388 C 94.97216172220597 379.21491662302606 98.94432344441194 370.4298332460521 102.91648516661793 361.6447498690783"/><g class="labels" id="v_4398"/><g class="marker-vertices" id="v_4399"/><g class="marker-arrowheads" id="v_4400"><g class="marker-arrowhead-group" transform="translate(85.07727813720703,385.3220520019531) scale(0.5,0.5) rotate(-65.66996877479272)" id="v_4983"><path class="marker-arrowhead" end="source" d="M 26 0 L 0 13 L 26 26 z"/></g><g class="marker-arrowhead-group" transform="translate(110.48717498779297,360.6779479980469) scale(0.5,0.5) rotate(-245.66996877479272)" id="v_4984"><path class="marker-arrowhead" end="target" d="M 26 0 L 0 13 L 26 26 z"/></g></g><g class="link-tools" id="v_4401"><g class="link-tool" id="v_4402" transform="translate(99.24063110351562, 369.776611328125) scale(.5)"><g class="tool-remove" event="remove"><circle r="11"/><path transform="scale(.8) translate(-16, -16)" d="M24.778,21.419 19.276,15.917 24.777,10.415 21.949,7.585 16.447,13.087 10.945,7.585 8.117,10.415 13.618,15.917 8.116,21.419 10.946,24.248 16.447,18.746 21.948,24.248z"/><title>Remove link.</title></g></g></g></g><g id="j_254" class="link" model-id="e4f2bd8b-e59d-4296-992e-738a0e77d6ea"><path class="connection" stroke="black" id="v_4412" d="M 83 388 C 81.75024710081449 358.6654582750015 80.50049420162898 329.33091655000305 79.25074130244346 299.9963748250046"/><path class="marker-source" fill="black" stroke="black" id="v_4413" transform="translate(83,388) scale(1,1) rotate(-92.43952179173507)"/><path class="marker-target" fill="black" stroke="black" id="v_4414" d="M 4 0 L 0 2 L 4 4 z" transform="translate(81.07866668701172,295.9148864746094) scale(1,1) rotate(87.56048588526383)"/><path class="connection-wrap" id="v_4415" d="M 83 388 C 81.75024710081449 358.6654582750015 80.50049420162898 329.33091655000305 79.25074130244346 299.9963748250046"/><g class="labels" id="v_4416"/><g class="marker-vertices" id="v_4417"/><g class="marker-arrowheads" id="v_4418"><g class="marker-arrowhead-group" transform="translate(76.50588989257812,388.27667236328125) scale(0.5,0.5) rotate(-92.43952179173507)" id="v_4993"><path class="marker-arrowhead" end="source" d="M 26 0 L 0 13 L 26 26 z"/></g><g class="marker-arrowhead-group" transform="translate(85.57459259033203,295.72332763671875) scale(0.5,0.5) rotate(87.56048588526383)" id="v_4994"><path class="marker-arrowhead" end="target" d="M 26 0 L 0 13 L 26 26 z"/></g></g><g class="link-tools" id="v_4419"><g class="link-tool" id="v_4420" transform="translate(82.1485366821289, 368.01812744140625) scale(.5)"><g class="tool-remove" event="remove"><circle r="11"/><path transform="scale(.8) translate(-16, -16)" d="M24.778,21.419 19.276,15.917 24.777,10.415 21.949,7.585 16.447,13.087 10.945,7.585 8.117,10.415 13.618,15.917 8.116,21.419 10.946,24.248 16.447,18.746 21.948,24.248z"/><title>Remove link.</title></g></g></g></g><g id="j_255" class="link" model-id="7bb2c271-20ae-4580-b985-56eedf969cb4"><path class="connection" stroke="black" id="v_4428" d="M 398 264 C 372.7515049959947 193.25575316127512 347.5030099919894 122.51150632255025 322.2545149879841 51.7672594838253"/><path class="marker-source" fill="black" stroke="black" id="v_4429" transform="translate(398,264) scale(1,1) rotate(-109.64138817247675)"/><path class="marker-target" fill="black" stroke="black" id="v_4430" d="M 4 0 L 0 2 L 4 4 z" transform="translate(322.7936096191406,47.327735900878906) scale(1,1) rotate(70.35861182752325)"/><path class="connection-wrap" id="v_4431" d="M 398 264 C 372.7515049959947 193.25575316127512 347.5030099919894 122.51150632255025 322.2545149879841 51.7672594838253"/><g class="labels" id="v_4432"/><g class="marker-vertices" id="v_4433"/><g class="marker-arrowheads" id="v_4434"><g class="marker-arrowhead-group" transform="translate(385.75640869140625,268.3697204589844) scale(1,1) rotate(-109.64138817247675)" id="v_4913"><path class="marker-arrowhead" end="source" d="M 26 0 L 0 13 L 26 26 z"/></g><g class="marker-arrowhead-group" transform="translate(333.153564453125,43.630287170410156) scale(1,1) rotate(70.35861182752325)" id="v_4914"><path class="marker-arrowhead" end="target" d="M 26 0 L 0 13 L 26 26 z"/></g></g><g class="link-tools" id="v_4435"><g class="link-tool" id="v_4436" transform="translate(384.5547180175781, 226.32740783691406) "><g class="tool-remove" event="remove"><circle r="11"/><path transform="scale(.8) translate(-16, -16)" d="M24.778,21.419 19.276,15.917 24.777,10.415 21.949,7.585 16.447,13.087 10.945,7.585 8.117,10.415 13.618,15.917 8.116,21.419 10.946,24.248 16.447,18.746 21.948,24.248z"/><title>Remove link.</title></g></g></g></g><g id="j_256" class="link" model-id="dd31feeb-5e56-42ca-9fca-9871dd86b7d2"><path class="connection" stroke="black" id="v_4444" d="M 396 296 C 391.43902187092425 304.81576995453366 386.8780437418485 313.6315399090673 382.31706561277264 322.4473098636011"/><path class="marker-source" fill="black" stroke="black" id="v_4445" transform="translate(396,296) scale(1,1) rotate(-242.64450154475765)"/><path class="marker-target" fill="black" stroke="black" id="v_4446" d="M 4 0 L 0 2 L 4 4 z" transform="translate(378.7026672363281,325.08099365234375) scale(1,1) rotate(-62.644501544757645)"/><path class="connection-wrap" id="v_4447" d="M 396 296 C 391.43902187092425 304.81576995453366 386.8780437418485 313.6315399090673 382.31706561277264 322.4473098636011"/><g class="labels" id="v_4448"/><g class="marker-vertices" id="v_4449"/><g class="marker-arrowheads" id="v_4450"><g class="marker-arrowhead-group" transform="translate(401.77313232421875,298.98681640625) scale(0.5,0.5) rotate(-242.64450154475765)" id="v_4965"><path class="marker-arrowhead" end="source" d="M 26 0 L 0 13 L 26 26 z"/></g><g class="marker-arrowhead-group" transform="translate(374.7059020996094,323.01318359375) scale(0.5,0.5) rotate(-62.644501544757645)" id="v_4966"><path class="marker-arrowhead" end="target" d="M 26 0 L 0 13 L 26 26 z"/></g></g><g class="link-tools" id="v_4451"><g class="link-tool" id="v_4452" transform="translate(386.8099670410156, 313.7635498046875) scale(.5)"><g class="tool-remove" event="remove"><circle r="11"/><path transform="scale(.8) translate(-16, -16)" d="M24.778,21.419 19.276,15.917 24.777,10.415 21.949,7.585 16.447,13.087 10.945,7.585 8.117,10.415 13.618,15.917 8.116,21.419 10.946,24.248 16.447,18.746 21.948,24.248z"/><title>Remove link.</title></g></g></g></g><g id="j_257" class="link" model-id="4d3da01b-b769-44cf-accc-dddea09780b8"><path class="connection" stroke="black" id="v_4460" d="M 393 264 C 371.6878721585412 234.41518726373465 350.3757443170824 204.8303745274693 329.0636164756235 175.24556179120395"/><path class="marker-source" fill="black" stroke="black" id="v_4461" transform="translate(393,264) scale(1,1) rotate(-125.76799723453954)"/><path class="marker-target" fill="black" stroke="black" id="v_4462" d="M 4 0 L 0 2 L 4 4 z" transform="translate(328.3483581542969,170.83099365234375) scale(1,1) rotate(54.231995227371954)"/><path class="connection-wrap" id="v_4463" d="M 393 264 C 371.6878721585412 234.41518726373465 350.3757443170824 204.8303745274693 329.0636164756235 175.24556179120395"/><g class="labels" id="v_4464"/><g class="marker-vertices" id="v_4465"/><g class="marker-arrowheads" id="v_4466"><g class="marker-arrowhead-group" transform="translate(382.451904296875,271.5985412597656) scale(1,1) rotate(-125.76799723453954)" id="v_4935"><path class="marker-arrowhead" end="source" d="M 26 0 L 0 13 L 26 26 z"/></g><g class="marker-arrowhead-group" transform="translate(337.273681640625,164.4014434814453) scale(1,1) rotate(54.231995227371954)" id="v_4936"><path class="marker-arrowhead" end="target" d="M 26 0 L 0 13 L 26 26 z"/></g></g><g class="link-tools" id="v_4467"><g class="link-tool" id="v_4468" transform="translate(369.61944580078125, 231.54464721679688) "><g class="tool-remove" event="remove"><circle r="11"/><path transform="scale(.8) translate(-16, -16)" d="M24.778,21.419 19.276,15.917 24.777,10.415 21.949,7.585 16.447,13.087 10.945,7.585 8.117,10.415 13.618,15.917 8.116,21.419 10.946,24.248 16.447,18.746 21.948,24.248z"/><title>Remove link.</title></g></g></g></g><g id="j_258" class="link" model-id="be4d35ca-41d0-4c7d-b467-b9319617a897"><path class="connection" stroke="black" id="v_4476" d="M 406 264 C 406.6783555612829 255.32927147976298 407.3567111225658 246.65854295952596 408.03506668384875 237.9878144392889"/><path class="marker-source" fill="black" stroke="black" id="v_4477" transform="translate(406,264) scale(1,1) rotate(-85.52656572043753)"/><path class="marker-target" fill="black" stroke="black" id="v_4478" d="M 4 0 L 0 2 L 4 4 z" transform="translate(410.3409729003906,234.15599060058594) scale(1,1) rotate(-265.5265806159603)"/><path class="connection-wrap" id="v_4479" d="M 406 264 C 406.6783555612829 255.32927147976298 407.3567111225658 246.65854295952596 408.03506668384875 237.9878144392889"/><g class="labels" id="v_4480"/><g class="marker-vertices" id="v_4481"/><g class="marker-arrowheads" id="v_4482"><g class="marker-arrowhead-group" transform="translate(399.5198059082031,263.4930114746094) scale(0.5,0.5) rotate(-85.52656572043753)" id="v_5003"><path class="marker-arrowhead" end="source" d="M 26 0 L 0 13 L 26 26 z"/></g><g class="marker-arrowhead-group" transform="translate(414.8272705078125,234.50697326660156) scale(0.5,0.5) rotate(-265.5265806159603)" id="v_5004"><path class="marker-arrowhead" end="target" d="M 26 0 L 0 13 L 26 26 z"/></g></g><g class="link-tools" id="v_4483"><g class="link-tool" id="v_4484" transform="translate(407.5600280761719, 244.06092834472656) scale(.5)"><g class="tool-remove" event="remove"><circle r="11"/><path transform="scale(.8) translate(-16, -16)" d="M24.778,21.419 19.276,15.917 24.777,10.415 21.949,7.585 16.447,13.087 10.945,7.585 8.117,10.415 13.618,15.917 8.116,21.419 10.946,24.248 16.447,18.746 21.948,24.248z"/><title>Remove link.</title></g></g></g></g><g id="j_259" class="link" model-id="d5edb56e-b458-4467-85df-993821322883"><path class="connection" stroke="black" id="v_4493" d="M 441 290 C 484.7119538542325 301.65645170669956 528.423907708465 313.3129034133991 572.1358615626975 324.9693551200987"/><path class="marker-source" fill="black" stroke="black" id="v_4494" transform="translate(441,290) scale(1,1) rotate(14.931336443427554)"/><path class="marker-target" fill="black" stroke="black" id="v_4495" d="M 4 0 L 0 2 L 4 4 z" transform="translate(575.4855346679688,327.9324645996094) scale(1,1) rotate(-165.06866355657246)"/><path class="connection-wrap" id="v_4496" d="M 441 290 C 484.7119538542325 301.65645170669956 528.423907708465 313.3129034133991 572.1358615626975 324.9693551200987"/><g class="labels" id="v_4497"/><g class="marker-vertices" id="v_4498"/><g class="marker-arrowheads" id="v_4499"><g class="marker-arrowhead-group" transform="translate(444.349609375,277.43896484375) scale(1,1) rotate(14.931336443427554)" id="v_5011"><path class="marker-arrowhead" end="source" d="M 26 0 L 0 13 L 26 26 z"/></g><g class="marker-arrowhead-group" transform="translate(572.6512451171875,338.56103515625) scale(1,1) rotate(-165.06866355657246)" id="v_5012"><path class="marker-arrowhead" end="target" d="M 26 0 L 0 13 L 26 26 z"/></g></g><g class="link-tools" id="v_4500"><g class="link-tool" id="v_4501" transform="translate(479.64947509765625, 300.30621337890625) "><g class="tool-remove" event="remove"><circle r="11"/><path transform="scale(.8) translate(-16, -16)" d="M24.778,21.419 19.276,15.917 24.777,10.415 21.949,7.585 16.447,13.087 10.945,7.585 8.117,10.415 13.618,15.917 8.116,21.419 10.946,24.248 16.447,18.746 21.948,24.248z"/><title>Remove link.</title></g></g></g></g><g id="j_260" class="link" model-id="d64e7287-dc89-4ad8-b0b9-0bf367848ee9"><path class="connection" stroke="black" id="v_4510" d="M 274 167 C 225.55451725585166 179.9492376409677 177.10903451170333 192.89847528193542 128.66355176755502 205.84771292290318"/><path class="marker-source" fill="black" stroke="black" id="v_4511" transform="translate(274,167) scale(1,1) rotate(-194.9650269064507)"/><path class="marker-target" fill="black" stroke="black" id="v_4512" d="M 4 0 L 0 2 L 4 4 z" transform="translate(124.28276062011719,204.94845581054688) scale(1,1) rotate(-14.965025256817214)"/><path class="connection-wrap" id="v_4513" d="M 274 167 C 225.55451725585166 179.9492376409677 177.10903451170333 192.89847528193542 128.66355176755502 205.84771292290318"/><g class="labels" id="v_4514"/><g class="marker-vertices" id="v_4515"/><g class="marker-arrowheads" id="v_4516"><g class="marker-arrowhead-group" transform="translate(277.35699462890625,179.55908203125) scale(1,1) rotate(-194.9650269064507)" id="v_4937"><path class="marker-arrowhead" end="source" d="M 26 0 L 0 13 L 26 26 z"/></g><g class="marker-arrowhead-group" transform="translate(121.4422378540039,194.32154846191406) scale(1,1) rotate(-14.965025256817214)" id="v_4938"><path class="marker-arrowhead" end="target" d="M 26 0 L 0 13 L 26 26 z"/></g></g><g class="link-tools" id="v_4517"><g class="link-tool" id="v_4518" transform="translate(235.35665893554688, 177.32919311523438) "><g class="tool-remove" event="remove"><circle r="11"/><path transform="scale(.8) translate(-16, -16)" d="M24.778,21.419 19.276,15.917 24.777,10.415 21.949,7.585 16.447,13.087 10.945,7.585 8.117,10.415 13.618,15.917 8.116,21.419 10.946,24.248 16.447,18.746 21.948,24.248z"/><title>Remove link.</title></g></g></g></g><g id="j_261" class="link" model-id="5167a900-294b-48a0-b1f5-c78fd54dfe7e"><path class="connection" stroke="black" id="v_4526" d="M 340 172 C 354.0178410527671 181.26482268300788 368.0356821055342 190.52964536601576 382.05352315830135 199.7944680490237"/><path class="marker-source" fill="black" stroke="black" id="v_4527" transform="translate(340,172) scale(1,1) rotate(33.46194507310382)"/><path class="marker-target" fill="black" stroke="black" id="v_4528" d="M 4 0 L 0 2 L 4 4 z" transform="translate(384.2877502441406,203.6685028076172) scale(1,1) rotate(-146.5380549268962)"/><path class="connection-wrap" id="v_4529" d="M 340 172 C 354.0178410527671 181.26482268300788 368.0356821055342 190.52964536601576 382.05352315830135 199.7944680490237"/><g class="labels" id="v_4530"/><g class="marker-vertices" id="v_4531"/><g class="marker-arrowheads" id="v_4532"><g class="marker-arrowhead-group" transform="translate(343.583984375,166.57736206054688) scale(0.5,0.5) rotate(33.46194507310382)" id="v_5005"><path class="marker-arrowhead" end="source" d="M 26 0 L 0 13 L 26 26 z"/></g><g class="marker-arrowhead-group" transform="translate(381.8065490722656,207.42263793945312) scale(0.5,0.5) rotate(-146.5380549268962)" id="v_5006"><path class="marker-arrowhead" end="target" d="M 26 0 L 0 13 L 26 26 z"/></g></g><g class="link-tools" id="v_4533"><g class="link-tool" id="v_4534" transform="translate(356.6854553222656, 183.02703857421875) scale(.5)"><g class="tool-remove" event="remove"><circle r="11"/><path transform="scale(.8) translate(-16, -16)" d="M24.778,21.419 19.276,15.917 24.777,10.415 21.949,7.585 16.447,13.087 10.945,7.585 8.117,10.415 13.618,15.917 8.116,21.419 10.946,24.248 16.447,18.746 21.948,24.248z"/><title>Remove link.</title></g></g></g></g><g id="j_262" class="link" model-id="173e3ba5-c3f7-4b52-885f-410ebf8a5882"><path class="connection" stroke="black" id="v_4542" d="M 327 172 C 348.1452967588172 201.58195462252925 369.2905935176344 231.1639092450585 390.4358902764517 260.74586386758773"/><path class="marker-source" fill="black" stroke="black" id="v_4543" transform="translate(327,172) scale(1,1) rotate(54.44265777160868)"/><path class="marker-target" fill="black" stroke="black" id="v_4544" d="M 4 0 L 0 2 L 4 4 z" transform="translate(391.1349182128906,265.16302490234375) scale(1,1) rotate(-125.55733468586364)"/><path class="connection-wrap" id="v_4545" d="M 327 172 C 348.1452967588172 201.58195462252925 369.2905935176344 231.1639092450585 390.4358902764517 260.74586386758773"/><g class="labels" id="v_4546"/><g class="marker-vertices" id="v_4547"/><g class="marker-arrowheads" id="v_4548"><g class="marker-arrowhead-group" transform="translate(337.575927734375,164.44027709960938) scale(1,1) rotate(54.44265777160868)" id="v_4941"><path class="marker-arrowhead" end="source" d="M 26 0 L 0 13 L 26 26 z"/></g><g class="marker-arrowhead-group" transform="translate(382.18603515625,271.5597229003906) scale(1,1) rotate(-125.55733468586364)" id="v_4942"><path class="marker-arrowhead" end="target" d="M 26 0 L 0 13 L 26 26 z"/></g></g><g class="link-tools" id="v_4549"><g class="link-tool" id="v_4550" transform="translate(350.26104736328125, 204.54110717773438) "><g class="tool-remove" event="remove"><circle r="11"/><path transform="scale(.8) translate(-16, -16)" d="M24.778,21.419 19.276,15.917 24.777,10.415 21.949,7.585 16.447,13.087 10.945,7.585 8.117,10.415 13.618,15.917 8.116,21.419 10.946,24.248 16.447,18.746 21.948,24.248z"/><title>Remove link.</title></g></g></g></g><g id="j_263" class="link" model-id="b4598362-4580-4c48-a1ff-f77767250d6e"><path class="connection" stroke="black" id="v_4558" d="M 320 172 C 335.3713219784391 222.05873704506067 350.74264395687817 272.11747409012133 366.11396593531725 322.1762111351821"/><path class="marker-source" fill="black" stroke="black" id="v_4559" transform="translate(320,172) scale(1,1) rotate(72.93008466027231)"/><path class="marker-target" fill="black" stroke="black" id="v_4560" d="M 4 0 L 0 2 L 4 4 z" transform="translate(365.376220703125,326.5870666503906) scale(1,1) rotate(-107.06992287149004)"/><path class="connection-wrap" id="v_4561" d="M 320 172 C 335.3713219784391 222.05873704506067 350.74264395687817 272.11747409012133 366.11396593531725 322.1762111351821"/><g class="labels" id="v_4562"/><g class="marker-vertices" id="v_4563"/><g class="marker-arrowheads" id="v_4564"><g class="marker-arrowhead-group" transform="translate(332.4273376464844,168.18399047851562) scale(1,1) rotate(72.93008466027231)" id="v_4967"><path class="marker-arrowhead" end="source" d="M 26 0 L 0 13 L 26 26 z"/></g><g class="marker-arrowhead-group" transform="translate(354.8608093261719,329.8160095214844) scale(1,1) rotate(-107.06992287149004)" id="v_4968"><path class="marker-arrowhead" end="target" d="M 26 0 L 0 13 L 26 26 z"/></g></g><g class="link-tools" id="v_4565"><g class="link-tool" id="v_4566" transform="translate(331.7414245605469, 210.23793029785156) "><g class="tool-remove" event="remove"><circle r="11"/><path transform="scale(.8) translate(-16, -16)" d="M24.778,21.419 19.276,15.917 24.777,10.415 21.949,7.585 16.447,13.087 10.945,7.585 8.117,10.415 13.618,15.917 8.116,21.419 10.946,24.248 16.447,18.746 21.948,24.248z"/><title>Remove link.</title></g></g></g></g><g id="j_264" class="link" model-id="a7a563aa-a128-46c8-ab37-813a90dfa1e5"><path class="connection" stroke="black" id="v_4574" d="M 315 140 C 315.0542165539297 110.66666438921827 315.10843310785936 81.33332877843654 315.16264966178903 51.99999316765481"/><path class="marker-source" fill="black" stroke="black" id="v_4575" transform="translate(315,140) scale(1,1) rotate(-89.89410400429142)"/><path class="marker-target" fill="black" stroke="black" id="v_4576" d="M 4 0 L 0 2 L 4 4 z" transform="translate(317.1700439453125,48.00369644165039) scale(1,1) rotate(-269.8941040042914)"/><path class="connection-wrap" id="v_4577" d="M 315 140 C 315.0542165539297 110.66666438921827 315.10843310785936 81.33332877843654 315.16264966178903 51.99999316765481"/><g class="labels" id="v_4578"/><g class="marker-vertices" id="v_4579"/><g class="marker-arrowheads" id="v_4580"><g class="marker-arrowhead-group" transform="translate(308.5000305175781,139.9879913330078) scale(0.5,0.5) rotate(-89.89410400429142)" id="v_4945"><path class="marker-arrowhead" end="source" d="M 26 0 L 0 13 L 26 26 z"/></g><g class="marker-arrowhead-group" transform="translate(321.6700134277344,48.01201248168945) scale(0.5,0.5) rotate(-269.8941040042914)" id="v_4946"><path class="marker-arrowhead" end="target" d="M 26 0 L 0 13 L 26 26 z"/></g></g><g class="link-tools" id="v_4581"><g class="link-tool" id="v_4582" transform="translate(315.03729248046875, 120.00003814697266) scale(.5)"><g class="tool-remove" event="remove"><circle r="11"/><path transform="scale(.8) translate(-16, -16)" d="M24.778,21.419 19.276,15.917 24.777,10.415 21.949,7.585 16.447,13.087 10.945,7.585 8.117,10.415 13.618,15.917 8.116,21.419 10.946,24.248 16.447,18.746 21.948,24.248z"/><title>Remove link.</title></g></g></g></g><g id="j_265" class="link" model-id="5bc1166a-91ae-4a77-9171-959da044caa1"><path class="connection" stroke="black" id="v_4590" d="M 332 140 C 341.43033646720534 130.92455831015317 350.8606729344107 121.84911662030635 360.2910094016161 112.77367493045952"/><path class="marker-source" fill="black" stroke="black" id="v_4591" transform="translate(332,140) scale(1,1) rotate(-43.901343863074366)"/><path class="marker-target" fill="black" stroke="black" id="v_4592" d="M 4 0 L 0 2 L 4 4 z" transform="translate(364.55999755859375,111.44107055664062) scale(1,1) rotate(-223.90133657359436)"/><path class="connection-wrap" id="v_4593" d="M 332 140 C 341.43033646720534 130.92455831015317 350.8606729344107 121.84911662030635 360.2910094016161 112.77367493045952"/><g class="labels" id="v_4594"/><g class="marker-vertices" id="v_4595"/><g class="marker-arrowheads" id="v_4596"><g class="marker-arrowhead-group" transform="translate(327.4927673339844,135.3165283203125) scale(0.5,0.5) rotate(-43.901343863074366)" id="v_4977"><path class="marker-arrowhead" end="source" d="M 26 0 L 0 13 L 26 26 z"/></g><g class="marker-arrowhead-group" transform="translate(367.6803894042969,114.68347930908203) scale(0.5,0.5) rotate(-223.90133657359436)" id="v_4978"><path class="marker-arrowhead" end="target" d="M 26 0 L 0 13 L 26 26 z"/></g></g><g class="link-tools" id="v_4597"><g class="link-tool" id="v_4598" transform="translate(346.41015625, 126.13106536865234) scale(.5)"><g class="tool-remove" event="remove"><circle r="11"/><path transform="scale(.8) translate(-16, -16)" d="M24.778,21.419 19.276,15.917 24.777,10.415 21.949,7.585 16.447,13.087 10.945,7.585 8.117,10.415 13.618,15.917 8.116,21.419 10.946,24.248 16.447,18.746 21.948,24.248z"/><title>Remove link.</title></g></g></g></g><g id="j_266" class="link" model-id="53d41027-2232-47a5-8722-782feaa0b5fd"><path class="connection" stroke="black" id="v_4606" d="M 625 388 C 627.0814279086625 379.2967644604551 629.162855817325 370.5935289209102 631.2442837259873 361.89029338136544"/><path class="marker-source" fill="black" stroke="black" id="v_4607" transform="translate(625,388) scale(1,1) rotate(-76.550018208186)"/><path class="marker-target" fill="black" stroke="black" id="v_4608" d="M 4 0 L 0 2 L 4 4 z" transform="translate(634.1198120117188,358.4652099609375) scale(1,1) rotate(-256.55001820818603)"/><path class="connection-wrap" id="v_4609" d="M 625 388 C 627.0814279086625 379.2967644604551 629.162855817325 370.5935289209102 631.2442837259873 361.89029338136544"/><g class="labels" id="v_4610"/><g class="marker-vertices" id="v_4611"/><g class="marker-arrowheads" id="v_4612"><g class="marker-arrowhead-group" transform="translate(618.6782836914062,386.4881286621094) scale(0.5,0.5) rotate(-76.550018208186)" id="v_5013"><path class="marker-arrowhead" end="source" d="M 26 0 L 0 13 L 26 26 z"/></g><g class="marker-arrowhead-group" transform="translate(638.4963989257812,359.5118713378906) scale(0.5,0.5) rotate(-256.55001820818603)" id="v_5014"><path class="marker-arrowhead" end="target" d="M 26 0 L 0 13 L 26 26 z"/></g></g><g class="link-tools" id="v_4613"><g class="link-tool" id="v_4614" transform="translate(629.6532592773438, 368.5488586425781) scale(.5)"><g class="tool-remove" event="remove"><circle r="11"/><path transform="scale(.8) translate(-16, -16)" d="M24.778,21.419 19.276,15.917 24.777,10.415 21.949,7.585 16.447,13.087 10.945,7.585 8.117,10.415 13.618,15.917 8.116,21.419 10.946,24.248 16.447,18.746 21.948,24.248z"/><title>Remove link.</title></g></g></g></g><g id="j_267" class="link" model-id="95432bf1-e7ba-4994-9154-fb18a20b8f1c"><path class="connection" stroke="black" id="v_4623" d="M 516 388 C 540.8422122589669 378.4772439943553 565.6844245179338 368.95448798871064 590.5266367769007 359.4317319830659"/><path class="marker-source" fill="black" stroke="black" id="v_4624" transform="translate(516,388) scale(1,1) rotate(-20.973307406163542)"/><path class="marker-target" fill="black" stroke="black" id="v_4625" d="M 4 0 L 0 2 L 4 4 z" transform="translate(594.9774780273438,359.86749267578125) scale(1,1) rotate(-200.9733134117915)"/><path class="connection-wrap" id="v_4626" d="M 516 388 C 540.8422122589669 378.4772439943553 565.6844245179338 368.95448798871064 590.5266367769007 359.4317319830659"/><g class="labels" id="v_4627"/><g class="marker-vertices" id="v_4628"/><g class="marker-arrowheads" id="v_4629"><g class="marker-arrowhead-group" transform="translate(513.6734008789062,381.9306335449219) scale(0.5,0.5) rotate(-20.973307406163542)" id="v_5015"><path class="marker-arrowhead" end="source" d="M 26 0 L 0 13 L 26 26 z"/></g><g class="marker-arrowhead-group" transform="translate(596.5881958007812,364.0693664550781) scale(0.5,0.5) rotate(-200.9733134117915)" id="v_5016"><path class="marker-arrowhead" end="target" d="M 26 0 L 0 13 L 26 26 z"/></g></g><g class="link-tools" id="v_4630"><g class="link-tool" id="v_4631" transform="translate(534.6751098632812, 380.841796875) scale(.5)"><g class="tool-remove" event="remove"><circle r="11"/><path transform="scale(.8) translate(-16, -16)" d="M24.778,21.419 19.276,15.917 24.777,10.415 21.949,7.585 16.447,13.087 10.945,7.585 8.117,10.415 13.618,15.917 8.116,21.419 10.946,24.248 16.447,18.746 21.948,24.248z"/><title>Remove link.</title></g></g></g></g><g id="j_268" class="link" model-id="db4f8aec-3af8-4076-9b96-68d203373667"><path class="connection" stroke="black" id="v_4640" d="M 369 326 C 352.28251639195906 234.64488749515672 335.5650327839181 143.28977499031345 318.8475491758772 51.934662485470234"/><path class="marker-source" fill="black" stroke="black" id="v_4641" transform="translate(369,326) scale(1,1) rotate(-100.37007166002681)"/><path class="marker-target" fill="black" stroke="black" id="v_4642" d="M 4 0 L 0 2 L 4 4 z" transform="translate(320.0948791503906,47.63998794555664) scale(1,1) rotate(79.62991344816544)"/><path class="connection-wrap" id="v_4643" d="M 369 326 C 352.28251639195906 234.64488749515672 335.5650327839181 143.28977499031345 318.8475491758772 51.934662485470234"/><g class="labels" id="v_4644"/><g class="marker-vertices" id="v_4645"/><g class="marker-arrowheads" id="v_4646"><g class="marker-arrowhead-group" transform="translate(356.2123718261719,328.3400573730469) scale(1,1) rotate(-100.37007166002681)" id="v_4969"><path class="marker-arrowhead" end="source" d="M 26 0 L 0 13 L 26 26 z"/></g><g class="marker-arrowhead-group" transform="translate(330.9151611328125,45.65993118286133) scale(1,1) rotate(79.62991344816544)" id="v_4970"><path class="marker-arrowhead" end="target" d="M 26 0 L 0 13 L 26 26 z"/></g></g><g class="link-tools" id="v_4647"><g class="link-tool" id="v_4648" transform="translate(361.7998352050781, 286.65338134765625) "><g class="tool-remove" event="remove"><circle r="11"/><path transform="scale(.8) translate(-16, -16)" d="M24.778,21.419 19.276,15.917 24.777,10.415 21.949,7.585 16.447,13.087 10.945,7.585 8.117,10.415 13.618,15.917 8.116,21.419 10.946,24.248 16.447,18.746 21.948,24.248z"/><title>Remove link.</title></g></g></g></g><g id="j_269" class="link" model-id="556c77fd-c0e3-4c17-9abc-67e115df0050"><path class="connection" stroke="black" id="v_4656" d="M 367 326 C 351.74695133238356 275.94210376142416 336.4939026647671 225.88420752284833 321.2408539971507 175.82631128427246"/><path class="marker-source" fill="black" stroke="black" id="v_4657" transform="translate(367,326) scale(1,1) rotate(-106.94640390444835)"/><path class="marker-target" fill="black" stroke="black" id="v_4658" d="M 4 0 L 0 2 L 4 4 z" transform="translate(321.98809814453125,171.41705322265625) scale(1,1) rotate(73.05358856652242)"/><path class="connection-wrap" id="v_4659" d="M 367 326 C 351.74695133238356 275.94210376142416 336.4939026647671 225.88420752284833 321.2408539971507 175.82631128427246"/><g class="labels" id="v_4660"/><g class="marker-vertices" id="v_4661"/><g class="marker-arrowheads" id="v_4662"><g class="marker-arrowhead-group" transform="translate(354.5644836425781,329.7891845703125) scale(1,1) rotate(-106.94640390444835)" id="v_4971"><path class="marker-arrowhead" end="source" d="M 26 0 L 0 13 L 26 26 z"/></g><g class="marker-arrowhead-group" transform="translate(332.51043701171875,168.21080017089844) scale(1,1) rotate(73.05358856652242)" id="v_4972"><path class="marker-arrowhead" end="target" d="M 26 0 L 0 13 L 26 26 z"/></g></g><g class="link-tools" id="v_4663"><g class="link-tool" id="v_4664" transform="translate(355.3410949707031, 287.73681640625) "><g class="tool-remove" event="remove"><circle r="11"/><path transform="scale(.8) translate(-16, -16)" d="M24.778,21.419 19.276,15.917 24.777,10.415 21.949,7.585 16.447,13.087 10.945,7.585 8.117,10.415 13.618,15.917 8.116,21.419 10.946,24.248 16.447,18.746 21.948,24.248z"/><title>Remove link.</title></g></g></g></g><g id="j_270" class="link" model-id="619f8ae2-993b-4965-b1d5-98647aa0f70d"><path class="connection" stroke="black" id="v_4672" d="M 380 326 C 384.63985336689143 317.1800146847018 389.27970673378286 308.3600293694036 393.91956010067435 299.5400440541054"/><path class="marker-source" fill="black" stroke="black" id="v_4673" transform="translate(380,326) scale(1,1) rotate(-62.25287649692045)"/><path class="marker-target" fill="black" stroke="black" id="v_4674" d="M 4 0 L 0 2 L 4 4 z" transform="translate(397.5518798828125,296.93115234375) scale(1,1) rotate(-242.25288413167897)"/><path class="connection-wrap" id="v_4675" d="M 380 326 C 384.63985336689143 317.1800146847018 389.27970673378286 308.3600293694036 393.91956010067435 299.5400440541054"/><g class="labels" id="v_4676"/><g class="marker-vertices" id="v_4677"/><g class="marker-arrowheads" id="v_4678"><g class="marker-arrowhead-group" transform="translate(374.2474365234375,322.97381591796875) scale(0.5,0.5) rotate(-62.25287649692045)" id="v_4973"><path class="marker-arrowhead" end="source" d="M 26 0 L 0 13 L 26 26 z"/></g><g class="marker-arrowhead-group" transform="translate(401.534423828125,299.02618408203125) scale(0.5,0.5) rotate(-242.25288413167897)" id="v_4974"><path class="marker-arrowhead" end="target" d="M 26 0 L 0 13 L 26 26 z"/></g></g><g class="link-tools" id="v_4679"><g class="link-tool" id="v_4680" transform="translate(389.310302734375, 308.2991943359375) scale(.5)"><g class="tool-remove" event="remove"><circle r="11"/><path transform="scale(.8) translate(-16, -16)" d="M24.778,21.419 19.276,15.917 24.777,10.415 21.949,7.585 16.447,13.087 10.945,7.585 8.117,10.415 13.618,15.917 8.116,21.419 10.946,24.248 16.447,18.746 21.948,24.248z"/><title>Remove link.</title></g></g></g></g><g id="j_271" class="link" model-id="94fd135f-bf35-41ae-8efb-c1884ae8648e"><path class="connection" stroke="black" id="v_4688" d="M 363 110 C 353.5693402267373 119.07545731928371 344.13868045347465 128.15091463856743 334.7080206802121 137.22637195785114"/><path class="marker-source" fill="black" stroke="black" id="v_4689" transform="translate(363,110) scale(1,1) rotate(-223.90040670832394)"/><path class="marker-target" fill="black" stroke="black" id="v_4690" d="M 4 0 L 0 2 L 4 4 z" transform="translate(330.43902587890625,138.5589141845703) scale(1,1) rotate(-43.90041153710766)"/><path class="connection-wrap" id="v_4691" d="M 363 110 C 353.5693402267373 119.07545731928371 344.13868045347465 128.15091463856743 334.7080206802121 137.22637195785114"/><g class="labels" id="v_4692"/><g class="marker-vertices" id="v_4693"/><g class="marker-arrowheads" id="v_4694"><g class="marker-arrowhead-group" transform="translate(367.50714111328125,114.68355560302734) scale(0.5,0.5) rotate(-223.90040670832394)" id="v_4979"><path class="marker-arrowhead" end="source" d="M 26 0 L 0 13 L 26 26 z"/></g><g class="marker-arrowhead-group" transform="translate(327.3186950683594,135.3164520263672) scale(0.5,0.5) rotate(-43.90041153710766)" id="v_4980"><path class="marker-arrowhead" end="target" d="M 26 0 L 0 13 L 26 26 z"/></g></g><g class="link-tools" id="v_4695"><g class="link-tool" id="v_4696" transform="translate(348.5888977050781, 123.86793518066406) scale(.5)"><g class="tool-remove" event="remove"><circle r="11"/><path transform="scale(.8) translate(-16, -16)" d="M24.778,21.419 19.276,15.917 24.777,10.415 21.949,7.585 16.447,13.087 10.945,7.585 8.117,10.415 13.618,15.917 8.116,21.419 10.946,24.248 16.447,18.746 21.948,24.248z"/><title>Remove link.</title></g></g></g></g><g id="j_272" class="link" model-id="c608a4be-1be8-418d-90df-003e7877b246"><path class="connection" stroke="black" id="v_4704" d="M 363 78 C 353.5693402267373 68.92454268071629 344.13868045347465 59.84908536143257 334.7080206802121 50.77362804214884"/><path class="marker-source" fill="black" stroke="black" id="v_4705" transform="translate(363,78) scale(1,1) rotate(-136.09959329167606)"/><path class="marker-target" fill="black" stroke="black" id="v_4706" d="M 4 0 L 0 2 L 4 4 z" transform="translate(333.212646484375,46.55890655517578) scale(1,1) rotate(43.90042119467515)"/><path class="connection-wrap" id="v_4707" d="M 363 78 C 353.5693402267373 68.92454268071629 344.13868045347465 59.84908536143257 334.7080206802121 50.77362804214884"/><g class="labels" id="v_4708"/><g class="marker-vertices" id="v_4709"/><g class="marker-arrowheads" id="v_4710"><g class="marker-arrowhead-group" transform="translate(358.4928283691406,82.68354797363281) scale(0.5,0.5) rotate(-136.09959329167606)" id="v_4981"><path class="marker-arrowhead" end="source" d="M 26 0 L 0 13 L 26 26 z"/></g><g class="marker-arrowhead-group" transform="translate(336.3330078125,43.31644821166992) scale(0.5,0.5) rotate(43.90042119467515)" id="v_4982"><path class="marker-arrowhead" end="target" d="M 26 0 L 0 13 L 26 26 z"/></g></g><g class="link-tools" id="v_4711"><g class="link-tool" id="v_4712" transform="translate(348.5888977050781, 64.13206481933594) scale(.5)"><g class="tool-remove" event="remove"><circle r="11"/><path transform="scale(.8) translate(-16, -16)" d="M24.778,21.419 19.276,15.917 24.777,10.415 21.949,7.585 16.447,13.087 10.945,7.585 8.117,10.415 13.618,15.917 8.116,21.419 10.946,24.248 16.447,18.746 21.948,24.248z"/><title>Remove link.</title></g></g></g></g><g id="j_273" class="link" model-id="43b9ba25-2038-4776-ae6b-9ec19c9047ff"><path class="connection" stroke="black" id="v_4720" d="M 104 358 C 100.0275325678734 366.7850988843065 96.05506513574679 375.57019776861296 92.08259770362021 384.35529665291944"/><path class="marker-source" fill="black" stroke="black" id="v_4721" transform="translate(104,358) scale(1,1) rotate(-245.66835011759892)"/><path class="marker-target" fill="black" stroke="black" id="v_4722" d="M 4 0 L 0 2 L 4 4 z" transform="translate(88.61217498779297,387.17596435546875) scale(1,1) rotate(-65.66835011759892)"/><path class="connection-wrap" id="v_4723" d="M 104 358 C 100.0275325678734 366.7850988843065 96.05506513574679 375.57019776861296 92.08259770362021 384.35529665291944"/><g class="labels" id="v_4724"/><g class="marker-vertices" id="v_4725"/><g class="marker-arrowheads" id="v_4726"><g class="marker-arrowhead-group" transform="translate(109.92264556884766,360.6781005859375) scale(0.5,0.5) rotate(-245.66835011759892)" id="v_4985"><path class="marker-arrowhead" end="source" d="M 26 0 L 0 13 L 26 26 z"/></g><g class="marker-arrowhead-group" transform="translate(84.51187896728516,385.3218994140625) scale(0.5,0.5) rotate(-65.66835011759892)" id="v_4986"><path class="marker-arrowhead" end="target" d="M 26 0 L 0 13 L 26 26 z"/></g></g><g class="link-tools" id="v_4727"><g class="link-tool" id="v_4728" transform="translate(95.75936889648438, 376.223388671875) scale(.5)"><g class="tool-remove" event="remove"><circle r="11"/><path transform="scale(.8) translate(-16, -16)" d="M24.778,21.419 19.276,15.917 24.777,10.415 21.949,7.585 16.447,13.087 10.945,7.585 8.117,10.415 13.618,15.917 8.116,21.419 10.946,24.248 16.447,18.746 21.948,24.248z"/><title>Remove link.</title></g></g></g></g><g id="j_274" class="link" model-id="055e1185-c078-4155-b04d-a681297394f8"><path class="connection" stroke="black" id="v_4736" d="M 103 326 C 98.28071937538401 317.17574982319417 93.56143875076802 308.35149964638833 88.84215812615203 299.5272494695826"/><path class="marker-source" fill="black" stroke="black" id="v_4737" transform="translate(103,326) scale(1,1) rotate(-118.13822932931906)"/><path class="marker-target" fill="black" stroke="black" id="v_4738" d="M 4 0 L 0 2 L 4 4 z" transform="translate(88.7193832397461,295.0567932128906) scale(1,1) rotate(61.8617554036704)"/><path class="connection-wrap" id="v_4739" d="M 103 326 C 98.28071937538401 317.17574982319417 93.56143875076802 308.35149964638833 88.84215812615203 299.5272494695826"/><g class="labels" id="v_4740"/><g class="marker-vertices" id="v_4741"/><g class="marker-arrowheads" id="v_4742"><g class="marker-arrowhead-group" transform="translate(97.26821899414062,329.0653991699219) scale(0.5,0.5) rotate(-118.13822932931906)" id="v_4995"><path class="marker-arrowhead" end="source" d="M 26 0 L 0 13 L 26 26 z"/></g><g class="marker-arrowhead-group" transform="translate(92.68753051757812,292.9346008300781) scale(0.5,0.5) rotate(61.8617554036704)" id="v_4996"><path class="marker-arrowhead" end="target" d="M 26 0 L 0 13 L 26 26 z"/></g></g><g class="link-tools" id="v_4743"><g class="link-tool" id="v_4744" transform="translate(93.56879425048828, 308.3633117675781) scale(.5)"><g class="tool-remove" event="remove"><circle r="11"/><path transform="scale(.8) translate(-16, -16)" d="M24.778,21.419 19.276,15.917 24.777,10.415 21.949,7.585 16.447,13.087 10.945,7.585 8.117,10.415 13.618,15.917 8.116,21.419 10.946,24.248 16.447,18.746 21.948,24.248z"/><title>Remove link.</title></g></g></g></g><g id="j_275" class="link" model-id="7fa7b4a7-a870-48e9-96ca-7da864e0543d"><path class="connection" stroke="black" id="v_4752" d="M 87 296 C 91.75833116048635 304.8263539018488 96.5166623209727 313.6527078036976 101.27499348145902 322.4790617055464"/><path class="marker-source" fill="black" stroke="black" id="v_4753" transform="translate(87,296) scale(1,1) rotate(61.670683730772254)"/><path class="marker-target" fill="black" stroke="black" id="v_4754" d="M 4 0 L 0 2 L 4 4 z" transform="translate(101.41267395019531,326.9490661621094) scale(1,1) rotate(-118.32933003171293)"/><path class="connection-wrap" id="v_4755" d="M 87 296 C 91.75833116048635 304.8263539018488 96.5166623209727 313.6527078036976 101.27499348145902 322.4790617055464"/><g class="labels" id="v_4756"/><g class="marker-vertices" id="v_4757"/><g class="marker-arrowheads" id="v_4758"><g class="marker-arrowhead-group" transform="translate(92.72152709960938,292.9154968261719) scale(0.5,0.5) rotate(61.670683730772254)" id="v_4997"><path class="marker-arrowhead" end="source" d="M 26 0 L 0 13 L 26 26 z"/></g><g class="marker-arrowhead-group" transform="translate(97.45162200927734,329.0845031738281) scale(0.5,0.5) rotate(-118.32933003171293)" id="v_4998"><path class="marker-arrowhead" end="target" d="M 26 0 L 0 13 L 26 26 z"/></g></g><g class="link-tools" id="v_4759"><g class="link-tool" id="v_4760" transform="translate(96.48958587646484, 313.6053466796875) scale(.5)"><g class="tool-remove" event="remove"><circle r="11"/><path transform="scale(.8) translate(-16, -16)" d="M24.778,21.419 19.276,15.917 24.777,10.415 21.949,7.585 16.447,13.087 10.945,7.585 8.117,10.415 13.618,15.917 8.116,21.419 10.946,24.248 16.447,18.746 21.948,24.248z"/><title>Remove link.</title></g></g></g></g><g id="j_276" class="link" model-id="69aede34-4285-4f24-84f7-ffec3a1e58a5"><path class="connection" stroke="black" id="v_4768" d="M 79 296 C 80.14067338420939 325.3343402337902 81.28134676841879 354.66868046758043 82.42202015262816 384.00302070137064"/><path class="marker-source" fill="black" stroke="black" id="v_4769" transform="translate(79,296) scale(1,1) rotate(87.77316270320577)"/><path class="marker-target" fill="black" stroke="black" id="v_4770" d="M 4 0 L 0 2 L 4 4 z" transform="translate(80.5789566040039,388.07769775390625) scale(1,1) rotate(-92.22683729679424)"/><path class="connection-wrap" id="v_4771" d="M 79 296 C 80.14067338420939 325.3343402337902 81.28134676841879 354.66868046758043 82.42202015262816 384.00302070137064"/><g class="labels" id="v_4772"/><g class="marker-vertices" id="v_4773"/><g class="marker-arrowheads" id="v_4774"><g class="marker-arrowhead-group" transform="translate(85.4950942993164,295.7474365234375) scale(0.5,0.5) rotate(87.77316270320577)" id="v_4999"><path class="marker-arrowhead" end="source" d="M 26 0 L 0 13 L 26 26 z"/></g><g class="marker-arrowhead-group" transform="translate(76.08235168457031,388.2525634765625) scale(0.5,0.5) rotate(-92.22683729679424)" id="v_5000"><path class="marker-arrowhead" end="target" d="M 26 0 L 0 13 L 26 26 z"/></g></g><g class="link-tools" id="v_4775"><g class="link-tool" id="v_4776" transform="translate(79.7770767211914, 315.9848937988281) scale(.5)"><g class="tool-remove" event="remove"><circle r="11"/><path transform="scale(.8) translate(-16, -16)" d="M24.778,21.419 19.276,15.917 24.777,10.415 21.949,7.585 16.447,13.087 10.945,7.585 8.117,10.415 13.618,15.917 8.116,21.419 10.946,24.248 16.447,18.746 21.948,24.248z"/><title>Remove link.</title></g></g></g></g><g id="j_277" class="link" model-id="5228509b-e8b0-4cc3-9500-ae0bc54cf9fd"><path class="connection" stroke="black" id="v_4784" d="M 80 264 C 80.60304820612555 255.33011956781039 81.2060964122511 246.66023913562077 81.80914461837665 237.99035870343116"/><path class="marker-source" fill="black" stroke="black" id="v_4785" transform="translate(80,264) scale(1,1) rotate(-86.0211027028696)"/><path class="marker-target" fill="black" stroke="black" id="v_4786" d="M 4 0 L 0 2 L 4 4 z" transform="translate(84.08187866210938,234.13877868652344) scale(1,1) rotate(-266.0211182707235)"/><path class="connection-wrap" id="v_4787" d="M 80 264 C 80.60304820612555 255.33011956781039 81.2060964122511 246.66023913562077 81.80914461837665 237.99035870343116"/><g class="labels" id="v_4788"/><g class="marker-vertices" id="v_4789"/><g class="marker-arrowheads" id="v_4790"><g class="marker-arrowhead-group" transform="translate(73.51566314697266,263.5489501953125) scale(0.5,0.5) rotate(-86.0211027028696)" id="v_5001"><path class="marker-arrowhead" end="source" d="M 26 0 L 0 13 L 26 26 z"/></g><g class="marker-arrowhead-group" transform="translate(88.57103729248047,234.45101928710938) scale(0.5,0.5) rotate(-266.0211182707235)" id="v_5002"><path class="marker-arrowhead" end="target" d="M 26 0 L 0 13 L 26 26 z"/></g></g><g class="link-tools" id="v_4791"><g class="link-tool" id="v_4792" transform="translate(81.38745880126953, 244.04818725585938) scale(.5)"><g class="tool-remove" event="remove"><circle r="11"/><path transform="scale(.8) translate(-16, -16)" d="M24.778,21.419 19.276,15.917 24.777,10.415 21.949,7.585 16.447,13.087 10.945,7.585 8.117,10.415 13.618,15.917 8.116,21.419 10.946,24.248 16.447,18.746 21.948,24.248z"/><title>Remove link.</title></g></g></g></g><g id="j_278" class="link" model-id="ba4ac22b-2b4f-4bd4-9706-6bdd9ed7cf63"><path class="connection" stroke="black" id="v_4800" d="M 385 202 C 370.9393161399759 192.7336977869796 356.87863227995183 183.4673955739592 342.8179484199278 174.20109336093873"/><path class="marker-source" fill="black" stroke="black" id="v_4801" transform="translate(385,202) scale(1,1) rotate(-146.61422771501378)"/><path class="marker-target" fill="black" stroke="black" id="v_4802" d="M 4 0 L 0 2 L 4 4 z" transform="translate(340.57855224609375,170.33001708984375) scale(1,1) rotate(33.3857722849862)"/><path class="connection-wrap" id="v_4803" d="M 385 202 C 370.9393161399759 192.7336977869796 356.87863227995183 183.4673955739592 342.8179484199278 174.20109336093873"/><g class="labels" id="v_4804"/><g class="marker-vertices" id="v_4805"/><g class="marker-arrowheads" id="v_4806"><g class="marker-arrowhead-group" transform="translate(381.4232177734375,207.42739868164062) scale(0.5,0.5) rotate(-146.61422771501378)" id="v_5007"><path class="marker-arrowhead" end="source" d="M 26 0 L 0 13 L 26 26 z"/></g><g class="marker-arrowhead-group" transform="translate(343.0547790527344,166.57260131835938) scale(0.5,0.5) rotate(33.3857722849862)" id="v_5008"><path class="marker-arrowhead" end="target" d="M 26 0 L 0 13 L 26 26 z"/></g></g><g class="link-tools" id="v_4807"><g class="link-tool" id="v_4808" transform="translate(368.30047607421875, 190.99429321289062) scale(.5)"><g class="tool-remove" event="remove"><circle r="11"/><path transform="scale(.8) translate(-16, -16)" d="M24.778,21.419 19.276,15.917 24.777,10.415 21.949,7.585 16.447,13.087 10.945,7.585 8.117,10.415 13.618,15.917 8.116,21.419 10.946,24.248 16.447,18.746 21.948,24.248z"/><title>Remove link.</title></g></g></g></g><g id="j_279" class="link" model-id="30ef4f4d-eeb4-414f-93b5-9f38dcb26354"><path class="connection" stroke="black" id="v_4816" d="M 408 234 C 407.2834617737091 242.67119577027844 406.56692354741824 251.3423915405569 405.85038532112736 260.0135873108353"/><path class="marker-source" fill="black" stroke="black" id="v_4817" transform="translate(408,234) scale(1,1) rotate(-265.2761230146807)"/><path class="marker-target" fill="black" stroke="black" id="v_4818" d="M 4 0 L 0 2 L 4 4 z" transform="translate(403.5277404785156,263.8352966308594) scale(1,1) rotate(-85.27613818621299)"/><path class="connection-wrap" id="v_4819" d="M 408 234 C 407.2834617737091 242.67119577027844 406.56692354741824 251.3423915405569 405.85038532112736 260.0135873108353"/><g class="labels" id="v_4820"/><g class="marker-vertices" id="v_4821"/><g class="marker-arrowheads" id="v_4822"><g class="marker-arrowhead-group" transform="translate(414.4779052734375,234.53529357910156) scale(0.5,0.5) rotate(-265.2761230146807)" id="v_5009"><path class="marker-arrowhead" end="source" d="M 26 0 L 0 13 L 26 26 z"/></g><g class="marker-arrowhead-group" transform="translate(399.0430603027344,263.4646911621094) scale(0.5,0.5) rotate(-85.27613818621299)" id="v_5010"><path class="marker-arrowhead" end="target" d="M 26 0 L 0 13 L 26 26 z"/></g></g><g class="link-tools" id="v_4823"><g class="link-tool" id="v_4824" transform="translate(406.35369873046875, 253.93212890625) scale(.5)"><g class="tool-remove" event="remove"><circle r="11"/><path transform="scale(.8) translate(-16, -16)" d="M24.778,21.419 19.276,15.917 24.777,10.415 21.949,7.585 16.447,13.087 10.945,7.585 8.117,10.415 13.618,15.917 8.116,21.419 10.946,24.248 16.447,18.746 21.948,24.248z"/><title>Remove link.</title></g></g></g></g><g id="j_280" class="link" model-id="58851445-f4f8-4c49-a234-d96b30e46f17"><path class="connection" stroke="black" id="v_4832" d="M 594 358 C 569.1777937107516 367.5310323788538 544.3555874215033 377.0620647577076 519.533381132255 386.5930971365616"/><path class="marker-source" fill="black" stroke="black" id="v_4833" transform="translate(594,358) scale(1,1) rotate(-201.00538678530373)"/><path class="marker-target" fill="black" stroke="black" id="v_4834" d="M 4 0 L 0 2 L 4 4 z" transform="translate(515.082275390625,386.1598205566406) scale(1,1) rotate(-21.005391567529173)"/><path class="connection-wrap" id="v_4835" d="M 594 358 C 569.1777937107516 367.5310323788538 544.3555874215033 377.0620647577076 519.533381132255 386.5930971365616"/><g class="labels" id="v_4836"/><g class="marker-vertices" id="v_4837"/><g class="marker-arrowheads" id="v_4838"><g class="marker-arrowhead-group" transform="translate(596.3299560546875,364.06805419921875) scale(0.5,0.5) rotate(-201.00538678530373)" id="v_5017"><path class="marker-arrowhead" end="source" d="M 26 0 L 0 13 L 26 26 z"/></g><g class="marker-arrowhead-group" transform="translate(513.46923828125,381.9588623046875) scale(0.5,0.5) rotate(-21.005391567529173)" id="v_5018"><path class="marker-arrowhead" end="target" d="M 26 0 L 0 13 L 26 26 z"/></g></g><g class="link-tools" id="v_4839"><g class="link-tool" id="v_4840" transform="translate(575.3291625976562, 365.1694030761719) scale(.5)"><g class="tool-remove" event="remove"><circle r="11"/><path transform="scale(.8) translate(-16, -16)" d="M24.778,21.419 19.276,15.917 24.777,10.415 21.949,7.585 16.447,13.087 10.945,7.585 8.117,10.415 13.618,15.917 8.116,21.419 10.946,24.248 16.447,18.746 21.948,24.248z"/><title>Remove link.</title></g></g></g></g><g id="j_281" class="link" model-id="2cfae62a-e21d-46f5-beae-7de691ff737e"><path class="connection" stroke="black" id="v_4848" d="M 632 358 C 629.9187234240288 366.7032304796799 627.8374468480577 375.40646095935983 625.7561702720866 384.1096914390398"/><path class="marker-source" fill="black" stroke="black" id="v_4849" transform="translate(632,358) scale(1,1) rotate(-256.55096417126833)"/><path class="marker-target" fill="black" stroke="black" id="v_4850" d="M 4 0 L 0 2 L 4 4 z" transform="translate(622.8806762695312,387.5348205566406) scale(1,1) rotate(-76.55095669802138)"/><path class="connection-wrap" id="v_4851" d="M 632 358 C 629.9187234240288 366.7032304796799 627.8374468480577 375.40646095935983 625.7561702720866 384.1096914390398"/><g class="labels" id="v_4852"/><g class="marker-vertices" id="v_4853"/><g class="marker-arrowheads" id="v_4854"><g class="marker-arrowhead-group" transform="translate(638.3217163085938,359.51177978515625) scale(0.5,0.5) rotate(-256.55096417126833)" id="v_5019"><path class="marker-arrowhead" end="source" d="M 26 0 L 0 13 L 26 26 z"/></g><g class="marker-arrowhead-group" transform="translate(618.504150390625,386.48822021484375) scale(0.5,0.5) rotate(-76.55095669802138)" id="v_5020"><path class="marker-arrowhead" end="target" d="M 26 0 L 0 13 L 26 26 z"/></g></g><g class="link-tools" id="v_4855"><g class="link-tool" id="v_4856" transform="translate(627.3494873046875, 377.4518127441406) scale(.5)"><g class="tool-remove" event="remove"><circle r="11"/><path transform="scale(.8) translate(-16, -16)" d="M24.778,21.419 19.276,15.917 24.777,10.415 21.949,7.585 16.447,13.087 10.945,7.585 8.117,10.415 13.618,15.917 8.116,21.419 10.946,24.248 16.447,18.746 21.948,24.248z"/><title>Remove link.</title></g></g></g></g><g id="j_282" class="link" model-id="49e91ec9-8fc8-4721-acab-cda602dc628c"><path class="connection" stroke="black" id="v_4864" d="M 576 326 C 532.2871814938 314.29583315466755 488.5743629875999 302.5916663093351 444.86154448139973 290.88749946400264"/><path class="marker-source" fill="black" stroke="black" id="v_4865" transform="translate(576,326) scale(1,1) rotate(-165.01057437296333)"/><path class="marker-target" fill="black" stroke="black" id="v_4866" d="M 4 0 L 0 2 L 4 4 z" transform="translate(441.5149230957031,287.9209899902344) scale(1,1) rotate(14.989410664907254)"/><path class="connection-wrap" id="v_4867" d="M 576 326 C 532.2871814938 314.29583315466755 488.5743629875999 302.5916663093351 444.86154448139973 290.88749946400264"/><g class="labels" id="v_4868"/><g class="marker-vertices" id="v_4869"/><g class="marker-arrowheads" id="v_4870"><g class="marker-arrowhead-group" transform="translate(572.6376342773438,338.5576477050781) scale(1,1) rotate(-165.01057437296333)" id="v_5021"><path class="marker-arrowhead" end="source" d="M 26 0 L 0 13 L 26 26 z"/></g><g class="marker-arrowhead-group" transform="translate(444.3599548339844,277.2952880859375) scale(1,1) rotate(14.989410664907254)" id="v_5022"><path class="marker-arrowhead" end="target" d="M 26 0 L 0 13 L 26 26 z"/></g></g><g class="link-tools" id="v_4871"><g class="link-tool" id="v_4872" transform="translate(537.3611450195312, 315.6540222167969) "><g class="tool-remove" event="remove"><circle r="11"/><path transform="scale(.8) translate(-16, -16)" d="M24.778,21.419 19.276,15.917 24.777,10.415 21.949,7.585 16.447,13.087 10.945,7.585 8.117,10.415 13.618,15.917 8.116,21.419 10.946,24.248 16.447,18.746 21.948,24.248z"/><title>Remove link.</title>
</g></g></g></g></g></svg>
]]></Attribute_String><Attribute_String roleName="setup">${MODELNAME_DEFAULT},${SVGURI_DEFAULT}</Attribute_String></SvgClient>
</XholonWorkbook>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment