-
Notifications
You must be signed in to change notification settings - Fork 0
/
AllTransactions.html
204 lines (161 loc) · 126 KB
/
AllTransactions.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
<html>
<head>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/vis-network@latest/styles/vis-network.css" type="text/css" />
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/vis-network@latest/dist/vis-network.min.js"> </script>
<center>
<h1></h1>
</center>
<!-- <link rel="stylesheet" href="../node_modules/vis/dist/vis.min.css" type="text/css" />
<script type="text/javascript" src="../node_modules/vis/dist/vis.js"> </script>-->
<style type="text/css">
#mynetwork {
width: 1500px;
height: 1500px;
background-color: #ffffff;
border: 1px solid lightgray;
position: relative;
float: left;
}
#loadingBar {
position:absolute;
top:0px;
left:0px;
width: 1500px;
height: 1500px;
background-color:rgba(200,200,200,0.8);
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-ms-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
opacity:1;
}
#bar {
position:absolute;
top:0px;
left:0px;
width:20px;
height:20px;
margin:auto auto auto auto;
border-radius:11px;
border:2px solid rgba(30,30,30,0.05);
background: rgb(0, 173, 246); /* Old browsers */
box-shadow: 2px 0px 4px rgba(0,0,0,0.4);
}
#border {
position:absolute;
top:10px;
left:10px;
width:500px;
height:23px;
margin:auto auto auto auto;
box-shadow: 0px 0px 4px rgba(0,0,0,0.2);
border-radius:10px;
}
#text {
position:absolute;
top:8px;
left:530px;
width:30px;
height:50px;
margin:auto auto auto auto;
font-size:22px;
color: #000000;
}
div.outerBorder {
position:relative;
top:400px;
width:600px;
height:44px;
margin:auto auto auto auto;
border:8px solid rgba(0,0,0,0.1);
background: rgb(252,252,252); /* Old browsers */
background: -moz-linear-gradient(top, rgba(252,252,252,1) 0%, rgba(237,237,237,1) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(252,252,252,1)), color-stop(100%,rgba(237,237,237,1))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, rgba(252,252,252,1) 0%,rgba(237,237,237,1) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, rgba(252,252,252,1) 0%,rgba(237,237,237,1) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, rgba(252,252,252,1) 0%,rgba(237,237,237,1) 100%); /* IE10+ */
background: linear-gradient(to bottom, rgba(252,252,252,1) 0%,rgba(237,237,237,1) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fcfcfc', endColorstr='#ededed',GradientType=0 ); /* IE6-9 */
border-radius:72px;
box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
}
</style>
</head>
<body>
<div id = "mynetwork"></div>
<div id="loadingBar">
<div class="outerBorder">
<div id="text">0%</div>
<div id="border">
<div id="bar"></div>
</div>
</div>
</div>
<script type="text/javascript">
// initialize global variables.
var edges;
var nodes;
var network;
var container;
var options, data;
// This method is responsible for drawing the graph, returns the drawn network
function drawGraph() {
var container = document.getElementById('mynetwork');
// parsing and collecting nodes and edges from the python
nodes = new vis.DataSet([{"id": "RAcc2", "label": "RAcc2", "shape": "dot", "size": 10}, {"id": "EUAcc0_261", "label": "EUAcc0_261", "shape": "dot", "size": 10}, {"id": "EUAcc1_362", "label": "EUAcc1_362", "shape": "dot", "size": 10}, {"id": "EUAcc0_320", "label": "EUAcc0_320", "shape": "dot", "size": 10}, {"id": "EUAcc1_364", "label": "EUAcc1_364", "shape": "dot", "size": 10}, {"id": "EUAcc2_81", "label": "EUAcc2_81", "shape": "dot", "size": 10}, {"id": "EUAcc1_153", "label": "EUAcc1_153", "shape": "dot", "size": 10}, {"id": "EUAcc2_58", "label": "EUAcc2_58", "shape": "dot", "size": 10}, {"id": "EUAcc1_227", "label": "EUAcc1_227", "shape": "dot", "size": 10}, {"id": "EUAcc2_91", "label": "EUAcc2_91", "shape": "dot", "size": 10}, {"id": "EUAcc2_139", "label": "EUAcc2_139", "shape": "dot", "size": 10}, {"id": "EUAcc1_343", "label": "EUAcc1_343", "shape": "dot", "size": 10}, {"id": "EUAcc0_280", "label": "EUAcc0_280", "shape": "dot", "size": 10}, {"id": "EUAcc2_16", "label": "EUAcc2_16", "shape": "dot", "size": 10}, {"id": "EUAcc3_6", "label": "EUAcc3_6", "shape": "dot", "size": 10}, {"id": "EUAcc0_253", "label": "EUAcc0_253", "shape": "dot", "size": 10}, {"id": "EUAcc0_129", "label": "EUAcc0_129", "shape": "dot", "size": 10}, {"id": "EUAcc0_7", "label": "EUAcc0_7", "shape": "dot", "size": 10}, {"id": "EUAcc1_383", "label": "EUAcc1_383", "shape": "dot", "size": 10}, {"id": "EUAcc1_283", "label": "EUAcc1_283", "shape": "dot", "size": 10}, {"id": "EUAcc1_328", "label": "EUAcc1_328", "shape": "dot", "size": 10}, {"id": "EUAcc2_138", "label": "EUAcc2_138", "shape": "dot", "size": 10}, {"id": "EUAcc0_220", "label": "EUAcc0_220", "shape": "dot", "size": 10}, {"id": "EUAcc2_99", "label": "EUAcc2_99", "shape": "dot", "size": 10}, {"id": "EUAcc2_145", "label": "EUAcc2_145", "shape": "dot", "size": 10}, {"id": "EUAcc2_34", "label": "EUAcc2_34", "shape": "dot", "size": 10}, {"id": "EUAcc1_222", "label": "EUAcc1_222", "shape": "dot", "size": 10}, {"id": "EUAcc0_358", "label": "EUAcc0_358", "shape": "dot", "size": 10}, {"id": "EUAcc1_39", "label": "EUAcc1_39", "shape": "dot", "size": 10}, {"id": "EUAcc1_393", "label": "EUAcc1_393", "shape": "dot", "size": 10}, {"id": "EUAcc0_309", "label": "EUAcc0_309", "shape": "dot", "size": 10}, {"id": "EUAcc1_356", "label": "EUAcc1_356", "shape": "dot", "size": 10}, {"id": "EUAcc1_506", "label": "EUAcc1_506", "shape": "dot", "size": 10}, {"id": "EUAcc3_32", "label": "EUAcc3_32", "shape": "dot", "size": 10}, {"id": "EUAcc1_409", "label": "EUAcc1_409", "shape": "dot", "size": 10}, {"id": "EUAcc2_148", "label": "EUAcc2_148", "shape": "dot", "size": 10}, {"id": "EUAcc1_82", "label": "EUAcc1_82", "shape": "dot", "size": 10}, {"id": "EUAcc2_10", "label": "EUAcc2_10", "shape": "dot", "size": 10}, {"id": "EUAcc1_502", "label": "EUAcc1_502", "shape": "dot", "size": 10}, {"id": "A0", "label": "A0", "shape": "dot", "size": 10}, {"id": "EUAcc0_852", "label": "EUAcc0_852", "shape": "dot", "size": 10}, {"id": "EUAcc1_26", "label": "EUAcc1_26", "shape": "dot", "size": 10}, {"id": "EUAcc1_18", "label": "EUAcc1_18", "shape": "dot", "size": 10}, {"id": "EUAcc0_786", "label": "EUAcc0_786", "shape": "dot", "size": 10}, {"id": "EUAcc0_597", "label": "EUAcc0_597", "shape": "dot", "size": 10}, {"id": "EUAcc2_5", "label": "EUAcc2_5", "shape": "dot", "size": 10}, {"id": "EUAcc1_121", "label": "EUAcc1_121", "shape": "dot", "size": 10}, {"id": "EUAcc0_1127", "label": "EUAcc0_1127", "shape": "dot", "size": 10}, {"id": "EUAcc1_131", "label": "EUAcc1_131", "shape": "dot", "size": 10}, {"id": "RAcc6", "label": "RAcc6", "shape": "dot", "size": 10}, {"id": "EUAcc1_210", "label": "EUAcc1_210", "shape": "dot", "size": 10}, {"id": "EUAcc1_237", "label": "EUAcc1_237", "shape": "dot", "size": 10}, {"id": "EUAcc1_172", "label": "EUAcc1_172", "shape": "dot", "size": 10}, {"id": "EUAcc2_68", "label": "EUAcc2_68", "shape": "dot", "size": 10}, {"id": "EUAcc0_307", "label": "EUAcc0_307", "shape": "dot", "size": 10}, {"id": "EUAcc2_125", "label": "EUAcc2_125", "shape": "dot", "size": 10}, {"id": "EUAcc1_400", "label": "EUAcc1_400", "shape": "dot", "size": 10}, {"id": "EUAcc2_39", "label": "EUAcc2_39", "shape": "dot", "size": 10}, {"id": "EUAcc1_130", "label": "EUAcc1_130", "shape": "dot", "size": 10}, {"id": "EUAcc1_314", "label": "EUAcc1_314", "shape": "dot", "size": 10}, {"id": "EUAcc3_23", "label": "EUAcc3_23", "shape": "dot", "size": 10}, {"id": "EUAcc2_66", "label": "EUAcc2_66", "shape": "dot", "size": 10}, {"id": "EUAcc1_351", "label": "EUAcc1_351", "shape": "dot", "size": 10}, {"id": "EUAcc2_27", "label": "EUAcc2_27", "shape": "dot", "size": 10}, {"id": "EUAcc1_499", "label": "EUAcc1_499", "shape": "dot", "size": 10}, {"id": "EUAcc3_4", "label": "EUAcc3_4", "shape": "dot", "size": 10}, {"id": "EUAcc2_170", "label": "EUAcc2_170", "shape": "dot", "size": 10}, {"id": "EUAcc2_84", "label": "EUAcc2_84", "shape": "dot", "size": 10}, {"id": "EUAcc2_88", "label": "EUAcc2_88", "shape": "dot", "size": 10}, {"id": "EUAcc2_2", "label": "EUAcc2_2", "shape": "dot", "size": 10}, {"id": "EUAcc1_219", "label": "EUAcc1_219", "shape": "dot", "size": 10}, {"id": "EUAcc0_216", "label": "EUAcc0_216", "shape": "dot", "size": 10}, {"id": "EUAcc1_75", "label": "EUAcc1_75", "shape": "dot", "size": 10}, {"id": "EUAcc2_89", "label": "EUAcc2_89", "shape": "dot", "size": 10}, {"id": "EUAcc1_388", "label": "EUAcc1_388", "shape": "dot", "size": 10}, {"id": "EUAcc1_447", "label": "EUAcc1_447", "shape": "dot", "size": 10}, {"id": "EUAcc0_357", "label": "EUAcc0_357", "shape": "dot", "size": 10}, {"id": "EUAcc0_238", "label": "EUAcc0_238", "shape": "dot", "size": 10}, {"id": "EUAcc0_287", "label": "EUAcc0_287", "shape": "dot", "size": 10}, {"id": "EUAcc3_7", "label": "EUAcc3_7", "shape": "dot", "size": 10}, {"id": "EUAcc0_353", "label": "EUAcc0_353", "shape": "dot", "size": 10}, {"id": "EUAcc0_204", "label": "EUAcc0_204", "shape": "dot", "size": 10}, {"id": "EUAcc1_125", "label": "EUAcc1_125", "shape": "dot", "size": 10}, {"id": "EUAcc1_397", "label": "EUAcc1_397", "shape": "dot", "size": 10}, {"id": "EUAcc2_128", "label": "EUAcc2_128", "shape": "dot", "size": 10}, {"id": "EUAcc1_89", "label": "EUAcc1_89", "shape": "dot", "size": 10}, {"id": "RAcc3", "label": "RAcc3", "shape": "dot", "size": 10}, {"id": "EUAcc2_86", "label": "EUAcc2_86", "shape": "dot", "size": 10}, {"id": "EUAcc1_416", "label": "EUAcc1_416", "shape": "dot", "size": 10}, {"id": "EUAcc0_15", "label": "EUAcc0_15", "shape": "dot", "size": 10}, {"id": "EUAcc1_124", "label": "EUAcc1_124", "shape": "dot", "size": 10}, {"id": "EUAcc0_164", "label": "EUAcc0_164", "shape": "dot", "size": 10}, {"id": "EUAcc1_67", "label": "EUAcc1_67", "shape": "dot", "size": 10}, {"id": "EUAcc2_121", "label": "EUAcc2_121", "shape": "dot", "size": 10}, {"id": "EUAcc1_281", "label": "EUAcc1_281", "shape": "dot", "size": 10}, {"id": "EUAcc0_191", "label": "EUAcc0_191", "shape": "dot", "size": 10}, {"id": "EUAcc1_110", "label": "EUAcc1_110", "shape": "dot", "size": 10}, {"id": "EUAcc1_348", "label": "EUAcc1_348", "shape": "dot", "size": 10}, {"id": "EUAcc0_296", "label": "EUAcc0_296", "shape": "dot", "size": 10}, {"id": "EUAcc1_342", "label": "EUAcc1_342", "shape": "dot", "size": 10}, {"id": "EUAcc3_29", "label": "EUAcc3_29", "shape": "dot", "size": 10}, {"id": "EUAcc1_332", "label": "EUAcc1_332", "shape": "dot", "size": 10}, {"id": "EUAcc1_370", "label": "EUAcc1_370", "shape": "dot", "size": 10}, {"id": "EUAcc1_255", "label": "EUAcc1_255", "shape": "dot", "size": 10}, {"id": "EUAcc0_124", "label": "EUAcc0_124", "shape": "dot", "size": 10}, {"id": "EUAcc0_330", "label": "EUAcc0_330", "shape": "dot", "size": 10}, {"id": "EUAcc0_101", "label": "EUAcc0_101", "shape": "dot", "size": 10}, {"id": "EUAcc1_20", "label": "EUAcc1_20", "shape": "dot", "size": 10}, {"id": "EUAcc1_274", "label": "EUAcc1_274", "shape": "dot", "size": 10}, {"id": "EUAcc1_510", "label": "EUAcc1_510", "shape": "dot", "size": 10}, {"id": "EUAcc2_118", "label": "EUAcc2_118", "shape": "dot", "size": 10}, {"id": "EUAcc2_80", "label": "EUAcc2_80", "shape": "dot", "size": 10}, {"id": "EUAcc1_423", "label": "EUAcc1_423", "shape": "dot", "size": 10}, {"id": "EUAcc2_83", "label": "EUAcc2_83", "shape": "dot", "size": 10}, {"id": "EUAcc1_493", "label": "EUAcc1_493", "shape": "dot", "size": 10}, {"id": "EUAcc0_109", "label": "EUAcc0_109", "shape": "dot", "size": 10}, {"id": "EUAcc1_278", "label": "EUAcc1_278", "shape": "dot", "size": 10}, {"id": "EUAcc1_221", "label": "EUAcc1_221", "shape": "dot", "size": 10}, {"id": "EUAcc2_104", "label": "EUAcc2_104", "shape": "dot", "size": 10}, {"id": "EUAcc2_79", "label": "EUAcc2_79", "shape": "dot", "size": 10}, {"id": "EUAcc1_199", "label": "EUAcc1_199", "shape": "dot", "size": 10}, {"id": "EUAcc2_62", "label": "EUAcc2_62", "shape": "dot", "size": 10}, {"id": "EUAcc1_460", "label": "EUAcc1_460", "shape": "dot", "size": 10}, {"id": "EUAcc1_486", "label": "EUAcc1_486", "shape": "dot", "size": 10}, {"id": "EUAcc1_181", "label": "EUAcc1_181", "shape": "dot", "size": 10}, {"id": "EUAcc1_272", "label": "EUAcc1_272", "shape": "dot", "size": 10}, {"id": "EUAcc0_242", "label": "EUAcc0_242", "shape": "dot", "size": 10}, {"id": "EUAcc1_438", "label": "EUAcc1_438", "shape": "dot", "size": 10}, {"id": "RAcc4", "label": "RAcc4", "shape": "dot", "size": 10}, {"id": "EUAcc1_497", "label": "EUAcc1_497", "shape": "dot", "size": 10}, {"id": "EUAcc1_289", "label": "EUAcc1_289", "shape": "dot", "size": 10}, {"id": "EUAcc1_233", "label": "EUAcc1_233", "shape": "dot", "size": 10}, {"id": "EUAcc0_105", "label": "EUAcc0_105", "shape": "dot", "size": 10}, {"id": "EUAcc1_97", "label": "EUAcc1_97", "shape": "dot", "size": 10}, {"id": "EUAcc0_262", "label": "EUAcc0_262", "shape": "dot", "size": 10}, {"id": "EUAcc2_50", "label": "EUAcc2_50", "shape": "dot", "size": 10}, {"id": "EUAcc1_361", "label": "EUAcc1_361", "shape": "dot", "size": 10}, {"id": "EUAcc1_195", "label": "EUAcc1_195", "shape": "dot", "size": 10}, {"id": "EUAcc0_304", "label": "EUAcc0_304", "shape": "dot", "size": 10}, {"id": "EUAcc1_408", "label": "EUAcc1_408", "shape": "dot", "size": 10}, {"id": "EUAcc1_161", "label": "EUAcc1_161", "shape": "dot", "size": 10}, {"id": "EUAcc0_265", "label": "EUAcc0_265", "shape": "dot", "size": 10}, {"id": "EUAcc2_150", "label": "EUAcc2_150", "shape": "dot", "size": 10}, {"id": "EUAcc2_60", "label": "EUAcc2_60", "shape": "dot", "size": 10}, {"id": "EUAcc1_341", "label": "EUAcc1_341", "shape": "dot", "size": 10}, {"id": "EUAcc1_262", "label": "EUAcc1_262", "shape": "dot", "size": 10}, {"id": "EUAcc2_151", "label": "EUAcc2_151", "shape": "dot", "size": 10}, {"id": "EUAcc2_51", "label": "EUAcc2_51", "shape": "dot", "size": 10}, {"id": "EUAcc1_433", "label": "EUAcc1_433", "shape": "dot", "size": 10}, {"id": "EUAcc0_185", "label": "EUAcc0_185", "shape": "dot", "size": 10}, {"id": "EUAcc2_30", "label": "EUAcc2_30", "shape": "dot", "size": 10}, {"id": "EUAcc0_291", "label": "EUAcc0_291", "shape": "dot", "size": 10}, {"id": "EUAcc2_17", "label": "EUAcc2_17", "shape": "dot", "size": 10}, {"id": "EUAcc1_285", "label": "EUAcc1_285", "shape": "dot", "size": 10}, {"id": "EUAcc1_521", "label": "EUAcc1_521", "shape": "dot", "size": 10}, {"id": "EUAcc1_100", "label": "EUAcc1_100", "shape": "dot", "size": 10}, {"id": "EUAcc2_98", "label": "EUAcc2_98", "shape": "dot", "size": 10}, {"id": "EUAcc2_18", "label": "EUAcc2_18", "shape": "dot", "size": 10}, {"id": "EUAcc1_418", "label": "EUAcc1_418", "shape": "dot", "size": 10}, {"id": "EUAcc2_164", "label": "EUAcc2_164", "shape": "dot", "size": 10}, {"id": "EUAcc1_167", "label": "EUAcc1_167", "shape": "dot", "size": 10}, {"id": "EUAcc0_1", "label": "EUAcc0_1", "shape": "dot", "size": 10}, {"id": "EUAcc1_242", "label": "EUAcc1_242", "shape": "dot", "size": 10}, {"id": "EUAcc3_12", "label": "EUAcc3_12", "shape": "dot", "size": 10}, {"id": "EUAcc1_396", "label": "EUAcc1_396", "shape": "dot", "size": 10}, {"id": "EUAcc0_301", "label": "EUAcc0_301", "shape": "dot", "size": 10}, {"id": "EUAcc0_181", "label": "EUAcc0_181", "shape": "dot", "size": 10}, {"id": "EUAcc1_69", "label": "EUAcc1_69", "shape": "dot", "size": 10}, {"id": "EUAcc2_153", "label": "EUAcc2_153", "shape": "dot", "size": 10}, {"id": "EUAcc0_297", "label": "EUAcc0_297", "shape": "dot", "size": 10}, {"id": "EUAcc1_164", "label": "EUAcc1_164", "shape": "dot", "size": 10}, {"id": "EUAcc0_214", "label": "EUAcc0_214", "shape": "dot", "size": 10}, {"id": "EUAcc2_114", "label": "EUAcc2_114", "shape": "dot", "size": 10}, {"id": "EUAcc2_47", "label": "EUAcc2_47", "shape": "dot", "size": 10}, {"id": "EUAcc1_191", "label": "EUAcc1_191", "shape": "dot", "size": 10}, {"id": "EUAcc0_76", "label": "EUAcc0_76", "shape": "dot", "size": 10}, {"id": "EUAcc1_91", "label": "EUAcc1_91", "shape": "dot", "size": 10}, {"id": "EUAcc0_213", "label": "EUAcc0_213", "shape": "dot", "size": 10}, {"id": "EUAcc0_45", "label": "EUAcc0_45", "shape": "dot", "size": 10}, {"id": "RAcc5", "label": "RAcc5", "shape": "dot", "size": 10}, {"id": "EUAcc0_143", "label": "EUAcc0_143", "shape": "dot", "size": 10}, {"id": "EUAcc2_136", "label": "EUAcc2_136", "shape": "dot", "size": 10}, {"id": "EUAcc1_244", "label": "EUAcc1_244", "shape": "dot", "size": 10}, {"id": "EUAcc1_485", "label": "EUAcc1_485", "shape": "dot", "size": 10}, {"id": "EUAcc1_500", "label": "EUAcc1_500", "shape": "dot", "size": 10}, {"id": "EUAcc2_122", "label": "EUAcc2_122", "shape": "dot", "size": 10}, {"id": "EUAcc2_70", "label": "EUAcc2_70", "shape": "dot", "size": 10}, {"id": "EUAcc0_364", "label": "EUAcc0_364", "shape": "dot", "size": 10}, {"id": "EUAcc0_286", "label": "EUAcc0_286", "shape": "dot", "size": 10}, {"id": "EUAcc1_360", "label": "EUAcc1_360", "shape": "dot", "size": 10}, {"id": "EUAcc1_394", "label": "EUAcc1_394", "shape": "dot", "size": 10}, {"id": "EUAcc1_13", "label": "EUAcc1_13", "shape": "dot", "size": 10}, {"id": "EUAcc2_143", "label": "EUAcc2_143", "shape": "dot", "size": 10}, {"id": "EUAcc1_202", "label": "EUAcc1_202", "shape": "dot", "size": 10}, {"id": "EUAcc1_501", "label": "EUAcc1_501", "shape": "dot", "size": 10}, {"id": "EUAcc1_183", "label": "EUAcc1_183", "shape": "dot", "size": 10}, {"id": "EUAcc1_487", "label": "EUAcc1_487", "shape": "dot", "size": 10}, {"id": "EUAcc1_395", "label": "EUAcc1_395", "shape": "dot", "size": 10}, {"id": "EUAcc1_401", "label": "EUAcc1_401", "shape": "dot", "size": 10}, {"id": "EUAcc2_77", "label": "EUAcc2_77", "shape": "dot", "size": 10}, {"id": "EUAcc1_473", "label": "EUAcc1_473", "shape": "dot", "size": 10}, {"id": "EUAcc1_240", "label": "EUAcc1_240", "shape": "dot", "size": 10}, {"id": "EUAcc0_122", "label": "EUAcc0_122", "shape": "dot", "size": 10}, {"id": "EUAcc1_234", "label": "EUAcc1_234", "shape": "dot", "size": 10}, {"id": "EUAcc1_375", "label": "EUAcc1_375", "shape": "dot", "size": 10}, {"id": "EUAcc1_318", "label": "EUAcc1_318", "shape": "dot", "size": 10}, {"id": "EUAcc1_302", "label": "EUAcc1_302", "shape": "dot", "size": 10}, {"id": "EUAcc2_8", "label": "EUAcc2_8", "shape": "dot", "size": 10}, {"id": "EUAcc1_387", "label": "EUAcc1_387", "shape": "dot", "size": 10}, {"id": "EUAcc1_95", "label": "EUAcc1_95", "shape": "dot", "size": 10}, {"id": "EUAcc0_918", "label": "EUAcc0_918", "shape": "dot", "size": 10}, {"id": "EUAcc1_83", "label": "EUAcc1_83", "shape": "dot", "size": 10}, {"id": "EUAcc0_906", "label": "EUAcc0_906", "shape": "dot", "size": 10}, {"id": "EUAcc2_130", "label": "EUAcc2_130", "shape": "dot", "size": 10}, {"id": "EUAcc0_526", "label": "EUAcc0_526", "shape": "dot", "size": 10}, {"id": "EUAcc1_217", "label": "EUAcc1_217", "shape": "dot", "size": 10}, {"id": "EUAcc0_759", "label": "EUAcc0_759", "shape": "dot", "size": 10}, {"id": "RAcc1", "label": "RAcc1", "shape": "dot", "size": 10}, {"id": "EUAcc1_254", "label": "EUAcc1_254", "shape": "dot", "size": 10}, {"id": "EUAcc1_339", "label": "EUAcc1_339", "shape": "dot", "size": 10}, {"id": "EUAcc0_318", "label": "EUAcc0_318", "shape": "dot", "size": 10}, {"id": "EUAcc1_212", "label": "EUAcc1_212", "shape": "dot", "size": 10}, {"id": "EUAcc1_264", "label": "EUAcc1_264", "shape": "dot", "size": 10}, {"id": "EUAcc0_132", "label": "EUAcc0_132", "shape": "dot", "size": 10}, {"id": "EUAcc1_160", "label": "EUAcc1_160", "shape": "dot", "size": 10}, {"id": "EUAcc0_290", "label": "EUAcc0_290", "shape": "dot", "size": 10}, {"id": "EUAcc0_2", "label": "EUAcc0_2", "shape": "dot", "size": 10}, {"id": "EUAcc0_199", "label": "EUAcc0_199", "shape": "dot", "size": 10}, {"id": "EUAcc2_117", "label": "EUAcc2_117", "shape": "dot", "size": 10}, {"id": "EUAcc0_18", "label": "EUAcc0_18", "shape": "dot", "size": 10}, {"id": "EUAcc1_329", "label": "EUAcc1_329", "shape": "dot", "size": 10}, {"id": "EUAcc1_288", "label": "EUAcc1_288", "shape": "dot", "size": 10}, {"id": "EUAcc1_206", "label": "EUAcc1_206", "shape": "dot", "size": 10}, {"id": "EUAcc3_35", "label": "EUAcc3_35", "shape": "dot", "size": 10}, {"id": "EUAcc1_228", "label": "EUAcc1_228", "shape": "dot", "size": 10}, {"id": "EUAcc2_33", "label": "EUAcc2_33", "shape": "dot", "size": 10}, {"id": "EUAcc1_516", "label": "EUAcc1_516", "shape": "dot", "size": 10}, {"id": "EUAcc1_482", "label": "EUAcc1_482", "shape": "dot", "size": 10}, {"id": "EUAcc0_49", "label": "EUAcc0_49", "shape": "dot", "size": 10}, {"id": "EUAcc1_180", "label": "EUAcc1_180", "shape": "dot", "size": 10}, {"id": "EUAcc1_117", "label": "EUAcc1_117", "shape": "dot", "size": 10}, {"id": "EUAcc1_204", "label": "EUAcc1_204", "shape": "dot", "size": 10}, {"id": "EUAcc2_9", "label": "EUAcc2_9", "shape": "dot", "size": 10}, {"id": "EUAcc2_120", "label": "EUAcc2_120", "shape": "dot", "size": 10}, {"id": "EUAcc2_59", "label": "EUAcc2_59", "shape": "dot", "size": 10}, {"id": "EUAcc1_381", "label": "EUAcc1_381", "shape": "dot", "size": 10}, {"id": "EUAcc0_1002", "label": "EUAcc0_1002", "shape": "dot", "size": 10}, {"id": "EUAcc1_476", "label": "EUAcc1_476", "shape": "dot", "size": 10}, {"id": "EUAcc0_903", "label": "EUAcc0_903", "shape": "dot", "size": 10}, {"id": "EUAcc0_450", "label": "EUAcc0_450", "shape": "dot", "size": 10}, {"id": "EUAcc0_500", "label": "EUAcc0_500", "shape": "dot", "size": 10}, {"id": "EUAcc0_683", "label": "EUAcc0_683", "shape": "dot", "size": 10}, {"id": "EUAcc0_892", "label": "EUAcc0_892", "shape": "dot", "size": 10}, {"id": "EUAcc0_99", "label": "EUAcc0_99", "shape": "dot", "size": 10}, {"id": "EUAcc0_833", "label": "EUAcc0_833", "shape": "dot", "size": 10}, {"id": "EUAcc3_10", "label": "EUAcc3_10", "shape": "dot", "size": 10}, {"id": "EUAcc0_1180", "label": "EUAcc0_1180", "shape": "dot", "size": 10}, {"id": "EUAcc1_428", "label": "EUAcc1_428", "shape": "dot", "size": 10}, {"id": "EUAcc0_306", "label": "EUAcc0_306", "shape": "dot", "size": 10}, {"id": "EUAcc1_344", "label": "EUAcc1_344", "shape": "dot", "size": 10}, {"id": "EUAcc1_138", "label": "EUAcc1_138", "shape": "dot", "size": 10}, {"id": "EUAcc1_8", "label": "EUAcc1_8", "shape": "dot", "size": 10}, {"id": "MAcc1", "label": "MAcc1", "shape": "dot", "size": 10}, {"id": "EUAcc0_147", "label": "EUAcc0_147", "shape": "dot", "size": 10}, {"id": "EUAcc1_111", "label": "EUAcc1_111", "shape": "dot", "size": 10}, {"id": "EUAcc1_38", "label": "EUAcc1_38", "shape": "dot", "size": 10}, {"id": "EUAcc0_67", "label": "EUAcc0_67", "shape": "dot", "size": 10}, {"id": "EUAcc2_95", "label": "EUAcc2_95", "shape": "dot", "size": 10}, {"id": "EUAcc0_750", "label": "EUAcc0_750", "shape": "dot", "size": 10}, {"id": "EUAcc0_24", "label": "EUAcc0_24", "shape": "dot", "size": 10}, {"id": "EUAcc0_1071", "label": "EUAcc0_1071", "shape": "dot", "size": 10}, {"id": "EUAcc0_536", "label": "EUAcc0_536", "shape": "dot", "size": 10}, {"id": "EUAcc0_961", "label": "EUAcc0_961", "shape": "dot", "size": 10}, {"id": "EUAcc0_966", "label": "EUAcc0_966", "shape": "dot", "size": 10}, {"id": "EUAcc1_451", "label": "EUAcc1_451", "shape": "dot", "size": 10}, {"id": "EUAcc0_90", "label": "EUAcc0_90", "shape": "dot", "size": 10}, {"id": "EUAcc0_110", "label": "EUAcc0_110", "shape": "dot", "size": 10}, {"id": "EUAcc0_660", "label": "EUAcc0_660", "shape": "dot", "size": 10}, {"id": "EUAcc0_838", "label": "EUAcc0_838", "shape": "dot", "size": 10}, {"id": "EUAcc0_1166", "label": "EUAcc0_1166", "shape": "dot", "size": 10}, {"id": "EUAcc2_94", "label": "EUAcc2_94", "shape": "dot", "size": 10}, {"id": "EUAcc0_106", "label": "EUAcc0_106", "shape": "dot", "size": 10}, {"id": "EUAcc1_492", "label": "EUAcc1_492", "shape": "dot", "size": 10}, {"id": "EUAcc0_1108", "label": "EUAcc0_1108", "shape": "dot", "size": 10}, {"id": "EUAcc0_821", "label": "EUAcc0_821", "shape": "dot", "size": 10}, {"id": "EUAcc2_26", "label": "EUAcc2_26", "shape": "dot", "size": 10}, {"id": "EUAcc0_883", "label": "EUAcc0_883", "shape": "dot", "size": 10}, {"id": "EUAcc0_1195", "label": "EUAcc0_1195", "shape": "dot", "size": 10}, {"id": "EUAcc2_12", "label": "EUAcc2_12", "shape": "dot", "size": 10}, {"id": "EUAcc2_107", "label": "EUAcc2_107", "shape": "dot", "size": 10}, {"id": "EUAcc0_1009", "label": "EUAcc0_1009", "shape": "dot", "size": 10}, {"id": "EUAcc0_1146", "label": "EUAcc0_1146", "shape": "dot", "size": 10}, {"id": "EUAcc1_112", "label": "EUAcc1_112", "shape": "dot", "size": 10}, {"id": "EUAcc0_397", "label": "EUAcc0_397", "shape": "dot", "size": 10}, {"id": "EUAcc2_105", "label": "EUAcc2_105", "shape": "dot", "size": 10}, {"id": "EUAcc1_494", "label": "EUAcc1_494", "shape": "dot", "size": 10}, {"id": "EUAcc0_751", "label": "EUAcc0_751", "shape": "dot", "size": 10}, {"id": "EUAcc2_131", "label": "EUAcc2_131", "shape": "dot", "size": 10}, {"id": "EUAcc0_992", "label": "EUAcc0_992", "shape": "dot", "size": 10}, {"id": "EUAcc2_123", "label": "EUAcc2_123", "shape": "dot", "size": 10}, {"id": "EUAcc0_533", "label": "EUAcc0_533", "shape": "dot", "size": 10}, {"id": "EUAcc1_34", "label": "EUAcc1_34", "shape": "dot", "size": 10}, {"id": "EUAcc0_898", "label": "EUAcc0_898", "shape": "dot", "size": 10}, {"id": "EUAcc0_1231", "label": "EUAcc0_1231", "shape": "dot", "size": 10}, {"id": "EUAcc0_881", "label": "EUAcc0_881", "shape": "dot", "size": 10}, {"id": "EUAcc2_76", "label": "EUAcc2_76", "shape": "dot", "size": 10}, {"id": "EUAcc0_562", "label": "EUAcc0_562", "shape": "dot", "size": 10}, {"id": "EUAcc1_59", "label": "EUAcc1_59", "shape": "dot", "size": 10}, {"id": "EUAcc3_21", "label": "EUAcc3_21", "shape": "dot", "size": 10}, {"id": "EUAcc1_123", "label": "EUAcc1_123", "shape": "dot", "size": 10}, {"id": "EUAcc0_706", "label": "EUAcc0_706", "shape": "dot", "size": 10}, {"id": "EUAcc0_684", "label": "EUAcc0_684", "shape": "dot", "size": 10}, {"id": "EUAcc0_652", "label": "EUAcc0_652", "shape": "dot", "size": 10}, {"id": "EUAcc1_513", "label": "EUAcc1_513", "shape": "dot", "size": 10}, {"id": "EUAcc1_45", "label": "EUAcc1_45", "shape": "dot", "size": 10}, {"id": "EUAcc0_1183", "label": "EUAcc0_1183", "shape": "dot", "size": 10}, {"id": "EUAcc1_450", "label": "EUAcc1_450", "shape": "dot", "size": 10}, {"id": "EUAcc1_60", "label": "EUAcc1_60", "shape": "dot", "size": 10}, {"id": "EUAcc0_228", "label": "EUAcc0_228", "shape": "dot", "size": 10}, {"id": "EUAcc1_192", "label": "EUAcc1_192", "shape": "dot", "size": 10}, {"id": "EUAcc0_1171", "label": "EUAcc0_1171", "shape": "dot", "size": 10}, {"id": "EUAcc2_149", "label": "EUAcc2_149", "shape": "dot", "size": 10}, {"id": "EUAcc1_126", "label": "EUAcc1_126", "shape": "dot", "size": 10}, {"id": "EUAcc0_284", "label": "EUAcc0_284", "shape": "dot", "size": 10}, {"id": "EUAcc0_408", "label": "EUAcc0_408", "shape": "dot", "size": 10}, {"id": "EUAcc1_7", "label": "EUAcc1_7", "shape": "dot", "size": 10}, {"id": "EUAcc1_58", "label": "EUAcc1_58", "shape": "dot", "size": 10}, {"id": "EUAcc1_403", "label": "EUAcc1_403", "shape": "dot", "size": 10}, {"id": "EUAcc2_111", "label": "EUAcc2_111", "shape": "dot", "size": 10}, {"id": "EUAcc2_127", "label": "EUAcc2_127", "shape": "dot", "size": 10}, {"id": "EUAcc0_437", "label": "EUAcc0_437", "shape": "dot", "size": 10}, {"id": "EUAcc0_613", "label": "EUAcc0_613", "shape": "dot", "size": 10}, {"id": "EUAcc0_1021", "label": "EUAcc0_1021", "shape": "dot", "size": 10}, {"id": "EUAcc1_420", "label": "EUAcc1_420", "shape": "dot", "size": 10}, {"id": "EUAcc2_25", "label": "EUAcc2_25", "shape": "dot", "size": 10}, {"id": "EUAcc0_771", "label": "EUAcc0_771", "shape": "dot", "size": 10}, {"id": "EUAcc0_194", "label": "EUAcc0_194", "shape": "dot", "size": 10}, {"id": "EUAcc0_1193", "label": "EUAcc0_1193", "shape": "dot", "size": 10}, {"id": "EUAcc0_991", "label": "EUAcc0_991", "shape": "dot", "size": 10}, {"id": "EUAcc0_805", "label": "EUAcc0_805", "shape": "dot", "size": 10}, {"id": "EUAcc0_621", "label": "EUAcc0_621", "shape": "dot", "size": 10}, {"id": "EUAcc0_348", "label": "EUAcc0_348", "shape": "dot", "size": 10}, {"id": "EUAcc0_501", "label": "EUAcc0_501", "shape": "dot", "size": 10}, {"id": "EUAcc1_258", "label": "EUAcc1_258", "shape": "dot", "size": 10}, {"id": "EUAcc1_76", "label": "EUAcc1_76", "shape": "dot", "size": 10}, {"id": "EUAcc2_45", "label": "EUAcc2_45", "shape": "dot", "size": 10}, {"id": "EUAcc1_452", "label": "EUAcc1_452", "shape": "dot", "size": 10}, {"id": "EUAcc0_1104", "label": "EUAcc0_1104", "shape": "dot", "size": 10}, {"id": "EUAcc0_1212", "label": "EUAcc0_1212", "shape": "dot", "size": 10}, {"id": "EUAcc0_973", "label": "EUAcc0_973", "shape": "dot", "size": 10}, {"id": "EUAcc2_21", "label": "EUAcc2_21", "shape": "dot", "size": 10}, {"id": "EUAcc0_608", "label": "EUAcc0_608", "shape": "dot", "size": 10}, {"id": "EUAcc0_1114", "label": "EUAcc0_1114", "shape": "dot", "size": 10}, {"id": "EUAcc1_10", "label": "EUAcc1_10", "shape": "dot", "size": 10}, {"id": "EUAcc0_1087", "label": "EUAcc0_1087", "shape": "dot", "size": 10}, {"id": "EUAcc2_100", "label": "EUAcc2_100", "shape": "dot", "size": 10}, {"id": "EUAcc0_117", "label": "EUAcc0_117", "shape": "dot", "size": 10}, {"id": "EUAcc0_439", "label": "EUAcc0_439", "shape": "dot", "size": 10}, {"id": "EUAcc2_152", "label": "EUAcc2_152", "shape": "dot", "size": 10}, {"id": "EUAcc0_218", "label": "EUAcc0_218", "shape": "dot", "size": 10}, {"id": "EUAcc0_514", "label": "EUAcc0_514", "shape": "dot", "size": 10}, {"id": "EUAcc1_320", "label": "EUAcc1_320", "shape": "dot", "size": 10}, {"id": "EUAcc1_196", "label": "EUAcc1_196", "shape": "dot", "size": 10}, {"id": "EUAcc1_439", "label": "EUAcc1_439", "shape": "dot", "size": 10}, {"id": "EUAcc2_135", "label": "EUAcc2_135", "shape": "dot", "size": 10}, {"id": "EUAcc0_1175", "label": "EUAcc0_1175", "shape": "dot", "size": 10}, {"id": "EUAcc1_88", "label": "EUAcc1_88", "shape": "dot", "size": 10}, {"id": "EUAcc1_177", "label": "EUAcc1_177", "shape": "dot", "size": 10}, {"id": "EUAcc0_1042", "label": "EUAcc0_1042", "shape": "dot", "size": 10}, {"id": "EUAcc0_687", "label": "EUAcc0_687", "shape": "dot", "size": 10}, {"id": "EUAcc0_558", "label": "EUAcc0_558", "shape": "dot", "size": 10}, {"id": "EUAcc1_391", "label": "EUAcc1_391", "shape": "dot", "size": 10}, {"id": "EUAcc0_390", "label": "EUAcc0_390", "shape": "dot", "size": 10}, {"id": "EUAcc0_6", "label": "EUAcc0_6", "shape": "dot", "size": 10}, {"id": "EUAcc0_352", "label": "EUAcc0_352", "shape": "dot", "size": 10}, {"id": "EUAcc0_384", "label": "EUAcc0_384", "shape": "dot", "size": 10}, {"id": "EUAcc0_355", "label": "EUAcc0_355", "shape": "dot", "size": 10}, {"id": "EUAcc1_312", "label": "EUAcc1_312", "shape": "dot", "size": 10}, {"id": "EUAcc0_1010", "label": "EUAcc0_1010", "shape": "dot", "size": 10}, {"id": "EUAcc0_70", "label": "EUAcc0_70", "shape": "dot", "size": 10}, {"id": "EUAcc0_186", "label": "EUAcc0_186", "shape": "dot", "size": 10}, {"id": "EUAcc1_6", "label": "EUAcc1_6", "shape": "dot", "size": 10}, {"id": "EUAcc0_784", "label": "EUAcc0_784", "shape": "dot", "size": 10}, {"id": "EUAcc0_519", "label": "EUAcc0_519", "shape": "dot", "size": 10}, {"id": "EUAcc0_418", "label": "EUAcc0_418", "shape": "dot", "size": 10}, {"id": "EUAcc0_34", "label": "EUAcc0_34", "shape": "dot", "size": 10}, {"id": "EUAcc1_48", "label": "EUAcc1_48", "shape": "dot", "size": 10}, {"id": "EUAcc2_137", "label": "EUAcc2_137", "shape": "dot", "size": 10}, {"id": "EUAcc0_681", "label": "EUAcc0_681", "shape": "dot", "size": 10}, {"id": "EUAcc2_67", "label": "EUAcc2_67", "shape": "dot", "size": 10}, {"id": "EUAcc0_426", "label": "EUAcc0_426", "shape": "dot", "size": 10}, {"id": "EUAcc1_155", "label": "EUAcc1_155", "shape": "dot", "size": 10}, {"id": "EUAcc0_1150", "label": "EUAcc0_1150", "shape": "dot", "size": 10}, {"id": "EUAcc1_322", "label": "EUAcc1_322", "shape": "dot", "size": 10}, {"id": "EUAcc2_1", "label": "EUAcc2_1", "shape": "dot", "size": 10}, {"id": "EUAcc0_1165", "label": "EUAcc0_1165", "shape": "dot", "size": 10}, {"id": "EUAcc1_185", "label": "EUAcc1_185", "shape": "dot", "size": 10}, {"id": "EUAcc0_133", "label": "EUAcc0_133", "shape": "dot", "size": 10}, {"id": "EUAcc0_118", "label": "EUAcc0_118", "shape": "dot", "size": 10}, {"id": "EUAcc1_156", "label": "EUAcc1_156", "shape": "dot", "size": 10}, {"id": "EUAcc2_55", "label": "EUAcc2_55", "shape": "dot", "size": 10}, {"id": "EUAcc0_1259", "label": "EUAcc0_1259", "shape": "dot", "size": 10}, {"id": "EUAcc1_14", "label": "EUAcc1_14", "shape": "dot", "size": 10}, {"id": "EUAcc0_584", "label": "EUAcc0_584", "shape": "dot", "size": 10}, {"id": "EUAcc0_573", "label": "EUAcc0_573", "shape": "dot", "size": 10}, {"id": "EUAcc0_591", "label": "EUAcc0_591", "shape": "dot", "size": 10}, {"id": "EUAcc0_144", "label": "EUAcc0_144", "shape": "dot", "size": 10}, {"id": "EUAcc1_211", "label": "EUAcc1_211", "shape": "dot", "size": 10}, {"id": "EUAcc1_0", "label": "EUAcc1_0", "shape": "dot", "size": 10}, {"id": "EUAcc0_649", "label": "EUAcc0_649", "shape": "dot", "size": 10}, {"id": "EUAcc0_1173", "label": "EUAcc0_1173", "shape": "dot", "size": 10}, {"id": "EUAcc0_691", "label": "EUAcc0_691", "shape": "dot", "size": 10}, {"id": "EUAcc1_376", "label": "EUAcc1_376", "shape": "dot", "size": 10}, {"id": "EUAcc0_344", "label": "EUAcc0_344", "shape": "dot", "size": 10}, {"id": "EUAcc0_645", "label": "EUAcc0_645", "shape": "dot", "size": 10}, {"id": "EUAcc0_1080", "label": "EUAcc0_1080", "shape": "dot", "size": 10}, {"id": "EUAcc0_542", "label": "EUAcc0_542", "shape": "dot", "size": 10}, {"id": "EUAcc0_1134", "label": "EUAcc0_1134", "shape": "dot", "size": 10}, {"id": "EUAcc0_604", "label": "EUAcc0_604", "shape": "dot", "size": 10}, {"id": "EUAcc0_770", "label": "EUAcc0_770", "shape": "dot", "size": 10}, {"id": "EUAcc1_87", "label": "EUAcc1_87", "shape": "dot", "size": 10}, {"id": "EUAcc0_566", "label": "EUAcc0_566", "shape": "dot", "size": 10}, {"id": "EUAcc0_678", "label": "EUAcc0_678", "shape": "dot", "size": 10}, {"id": "EUAcc1_92", "label": "EUAcc1_92", "shape": "dot", "size": 10}, {"id": "EUAcc2_116", "label": "EUAcc2_116", "shape": "dot", "size": 10}, {"id": "EUAcc1_261", "label": "EUAcc1_261", "shape": "dot", "size": 10}, {"id": "EUAcc0_431", "label": "EUAcc0_431", "shape": "dot", "size": 10}, {"id": "EUAcc0_939", "label": "EUAcc0_939", "shape": "dot", "size": 10}, {"id": "EUAcc0_163", "label": "EUAcc0_163", "shape": "dot", "size": 10}, {"id": "EUAcc1_84", "label": "EUAcc1_84", "shape": "dot", "size": 10}, {"id": "EUAcc1_323", "label": "EUAcc1_323", "shape": "dot", "size": 10}, {"id": "EUAcc1_367", "label": "EUAcc1_367", "shape": "dot", "size": 10}, {"id": "EUAcc0_936", "label": "EUAcc0_936", "shape": "dot", "size": 10}, {"id": "EUAcc0_538", "label": "EUAcc0_538", "shape": "dot", "size": 10}, {"id": "EUAcc2_43", "label": "EUAcc2_43", "shape": "dot", "size": 10}, {"id": "EUAcc0_523", "label": "EUAcc0_523", "shape": "dot", "size": 10}, {"id": "EUAcc0_981", "label": "EUAcc0_981", "shape": "dot", "size": 10}, {"id": "EUAcc1_200", "label": "EUAcc1_200", "shape": "dot", "size": 10}, {"id": "EUAcc0_701", "label": "EUAcc0_701", "shape": "dot", "size": 10}, {"id": "EUAcc0_550", "label": "EUAcc0_550", "shape": "dot", "size": 10}, {"id": "EUAcc0_1093", "label": "EUAcc0_1093", "shape": "dot", "size": 10}, {"id": "EUAcc0_83", "label": "EUAcc0_83", "shape": "dot", "size": 10}, {"id": "EUAcc0_744", "label": "EUAcc0_744", "shape": "dot", "size": 10}, {"id": "EUAcc0_140", "label": "EUAcc0_140", "shape": "dot", "size": 10}, {"id": "EUAcc0_1227", "label": "EUAcc0_1227", "shape": "dot", "size": 10}, {"id": "EUAcc0_407", "label": "EUAcc0_407", "shape": "dot", "size": 10}, {"id": "EUAcc0_861", "label": "EUAcc0_861", "shape": "dot", "size": 10}, {"id": "EUAcc0_791", "label": "EUAcc0_791", "shape": "dot", "size": 10}, {"id": "EUAcc0_659", "label": "EUAcc0_659", "shape": "dot", "size": 10}, {"id": "EUAcc0_43", "label": "EUAcc0_43", "shape": "dot", "size": 10}, {"id": "EUAcc0_761", "label": "EUAcc0_761", "shape": "dot", "size": 10}, {"id": "EUAcc0_104", "label": "EUAcc0_104", "shape": "dot", "size": 10}, {"id": "EUAcc0_1045", "label": "EUAcc0_1045", "shape": "dot", "size": 10}, {"id": "EUAcc3_30", "label": "EUAcc3_30", "shape": "dot", "size": 10}, {"id": "EUAcc0_808", "label": "EUAcc0_808", "shape": "dot", "size": 10}, {"id": "EUAcc0_485", "label": "EUAcc0_485", "shape": "dot", "size": 10}, {"id": "EUAcc2_64", "label": "EUAcc2_64", "shape": "dot", "size": 10}, {"id": "EUAcc2_19", "label": "EUAcc2_19", "shape": "dot", "size": 10}, {"id": "EUAcc1_415", "label": "EUAcc1_415", "shape": "dot", "size": 10}, {"id": "EUAcc2_11", "label": "EUAcc2_11", "shape": "dot", "size": 10}, {"id": "EUAcc0_1168", "label": "EUAcc0_1168", "shape": "dot", "size": 10}, {"id": "EUAcc1_118", "label": "EUAcc1_118", "shape": "dot", "size": 10}, {"id": "EUAcc0_343", "label": "EUAcc0_343", "shape": "dot", "size": 10}, {"id": "EUAcc0_456", "label": "EUAcc0_456", "shape": "dot", "size": 10}, {"id": "EUAcc3_25", "label": "EUAcc3_25", "shape": "dot", "size": 10}, {"id": "EUAcc2_14", "label": "EUAcc2_14", "shape": "dot", "size": 10}, {"id": "EUAcc1_287", "label": "EUAcc1_287", "shape": "dot", "size": 10}, {"id": "EUAcc1_333", "label": "EUAcc1_333", "shape": "dot", "size": 10}, {"id": "EUAcc2_92", "label": "EUAcc2_92", "shape": "dot", "size": 10}, {"id": "EUAcc0_1201", "label": "EUAcc0_1201", "shape": "dot", "size": 10}, {"id": "EUAcc0_107", "label": "EUAcc0_107", "shape": "dot", "size": 10}, {"id": "EUAcc0_180", "label": "EUAcc0_180", "shape": "dot", "size": 10}, {"id": "EUAcc0_300", "label": "EUAcc0_300", "shape": "dot", "size": 10}, {"id": "EUAcc1_317", "label": "EUAcc1_317", "shape": "dot", "size": 10}, {"id": "EUAcc1_135", "label": "EUAcc1_135", "shape": "dot", "size": 10}, {"id": "EUAcc0_794", "label": "EUAcc0_794", "shape": "dot", "size": 10}, {"id": "EUAcc1_52", "label": "EUAcc1_52", "shape": "dot", "size": 10}, {"id": "EUAcc0_227", "label": "EUAcc0_227", "shape": "dot", "size": 10}, {"id": "EUAcc2_74", "label": "EUAcc2_74", "shape": "dot", "size": 10}, {"id": "EUAcc1_78", "label": "EUAcc1_78", "shape": "dot", "size": 10}, {"id": "EUAcc0_964", "label": "EUAcc0_964", "shape": "dot", "size": 10}, {"id": "EUAcc2_147", "label": "EUAcc2_147", "shape": "dot", "size": 10}, {"id": "EUAcc1_12", "label": "EUAcc1_12", "shape": "dot", "size": 10}, {"id": "EUAcc2_90", "label": "EUAcc2_90", "shape": "dot", "size": 10}, {"id": "EUAcc0_142", "label": "EUAcc0_142", "shape": "dot", "size": 10}, {"id": "EUAcc2_157", "label": "EUAcc2_157", "shape": "dot", "size": 10}, {"id": "EUAcc1_480", "label": "EUAcc1_480", "shape": "dot", "size": 10}, {"id": "EUAcc0_336", "label": "EUAcc0_336", "shape": "dot", "size": 10}, {"id": "EUAcc0_546", "label": "EUAcc0_546", "shape": "dot", "size": 10}, {"id": "EUAcc1_378", "label": "EUAcc1_378", "shape": "dot", "size": 10}, {"id": "EUAcc0_1144", "label": "EUAcc0_1144", "shape": "dot", "size": 10}, {"id": "EUAcc2_109", "label": "EUAcc2_109", "shape": "dot", "size": 10}, {"id": "EUAcc1_389", "label": "EUAcc1_389", "shape": "dot", "size": 10}, {"id": "EUAcc0_1247", "label": "EUAcc0_1247", "shape": "dot", "size": 10}, {"id": "EUAcc0_443", "label": "EUAcc0_443", "shape": "dot", "size": 10}, {"id": "EUAcc0_974", "label": "EUAcc0_974", "shape": "dot", "size": 10}, {"id": "EUAcc1_504", "label": "EUAcc1_504", "shape": "dot", "size": 10}, {"id": "EUAcc1_201", "label": "EUAcc1_201", "shape": "dot", "size": 10}, {"id": "EUAcc0_449", "label": "EUAcc0_449", "shape": "dot", "size": 10}, {"id": "EUAcc0_198", "label": "EUAcc0_198", "shape": "dot", "size": 10}, {"id": "EUAcc0_596", "label": "EUAcc0_596", "shape": "dot", "size": 10}, {"id": "EUAcc1_300", "label": "EUAcc1_300", "shape": "dot", "size": 10}, {"id": "EUAcc0_840", "label": "EUAcc0_840", "shape": "dot", "size": 10}, {"id": "EUAcc1_435", "label": "EUAcc1_435", "shape": "dot", "size": 10}, {"id": "EUAcc3_15", "label": "EUAcc3_15", "shape": "dot", "size": 10}, {"id": "EUAcc1_334", "label": "EUAcc1_334", "shape": "dot", "size": 10}, {"id": "EUAcc0_430", "label": "EUAcc0_430", "shape": "dot", "size": 10}, {"id": "EUAcc0_1209", "label": "EUAcc0_1209", "shape": "dot", "size": 10}, {"id": "EUAcc0_806", "label": "EUAcc0_806", "shape": "dot", "size": 10}, {"id": "EUAcc2_110", "label": "EUAcc2_110", "shape": "dot", "size": 10}, {"id": "EUAcc0_402", "label": "EUAcc0_402", "shape": "dot", "size": 10}, {"id": "EUAcc0_799", "label": "EUAcc0_799", "shape": "dot", "size": 10}, {"id": "EUAcc0_212", "label": "EUAcc0_212", "shape": "dot", "size": 10}, {"id": "EUAcc0_677", "label": "EUAcc0_677", "shape": "dot", "size": 10}, {"id": "EUAcc1_248", "label": "EUAcc1_248", "shape": "dot", "size": 10}, {"id": "EUAcc1_80", "label": "EUAcc1_80", "shape": "dot", "size": 10}, {"id": "EUAcc0_616", "label": "EUAcc0_616", "shape": "dot", "size": 10}, {"id": "EUAcc1_238", "label": "EUAcc1_238", "shape": "dot", "size": 10}, {"id": "EUAcc1_65", "label": "EUAcc1_65", "shape": "dot", "size": 10}, {"id": "EUAcc1_386", "label": "EUAcc1_386", "shape": "dot", "size": 10}, {"id": "EUAcc1_291", "label": "EUAcc1_291", "shape": "dot", "size": 10}, {"id": "EUAcc0_922", "label": "EUAcc0_922", "shape": "dot", "size": 10}, {"id": "EUAcc0_310", "label": "EUAcc0_310", "shape": "dot", "size": 10}, {"id": "EUAcc1_496", "label": "EUAcc1_496", "shape": "dot", "size": 10}, {"id": "EUAcc0_244", "label": "EUAcc0_244", "shape": "dot", "size": 10}, {"id": "EUAcc0_800", "label": "EUAcc0_800", "shape": "dot", "size": 10}, {"id": "EUAcc3_26", "label": "EUAcc3_26", "shape": "dot", "size": 10}, {"id": "EUAcc1_32", "label": "EUAcc1_32", "shape": "dot", "size": 10}, {"id": "EUAcc0_682", "label": "EUAcc0_682", "shape": "dot", "size": 10}, {"id": "EUAcc0_271", "label": "EUAcc0_271", "shape": "dot", "size": 10}, {"id": "EUAcc0_1015", "label": "EUAcc0_1015", "shape": "dot", "size": 10}, {"id": "EUAcc0_1121", "label": "EUAcc0_1121", "shape": "dot", "size": 10}, {"id": "EUAcc1_522", "label": "EUAcc1_522", "shape": "dot", "size": 10}, {"id": "EUAcc0_785", "label": "EUAcc0_785", "shape": "dot", "size": 10}, {"id": "EUAcc0_555", "label": "EUAcc0_555", "shape": "dot", "size": 10}, {"id": "EUAcc0_1194", "label": "EUAcc0_1194", "shape": "dot", "size": 10}, {"id": "EUAcc0_323", "label": "EUAcc0_323", "shape": "dot", "size": 10}, {"id": "EUAcc0_812", "label": "EUAcc0_812", "shape": "dot", "size": 10}, {"id": "EUAcc0_654", "label": "EUAcc0_654", "shape": "dot", "size": 10}, {"id": "EUAcc0_617", "label": "EUAcc0_617", "shape": "dot", "size": 10}, {"id": "EUAcc0_860", "label": "EUAcc0_860", "shape": "dot", "size": 10}, {"id": "EUAcc2_41", "label": "EUAcc2_41", "shape": "dot", "size": 10}, {"id": "EUAcc0_857", "label": "EUAcc0_857", "shape": "dot", "size": 10}, {"id": "EUAcc1_151", "label": "EUAcc1_151", "shape": "dot", "size": 10}, {"id": "EUAcc1_215", "label": "EUAcc1_215", "shape": "dot", "size": 10}, {"id": "EUAcc0_230", "label": "EUAcc0_230", "shape": "dot", "size": 10}, {"id": "EUAcc0_823", "label": "EUAcc0_823", "shape": "dot", "size": 10}, {"id": "EUAcc1_33", "label": "EUAcc1_33", "shape": "dot", "size": 10}, {"id": "EUAcc0_319", "label": "EUAcc0_319", "shape": "dot", "size": 10}, {"id": "EUAcc1_359", "label": "EUAcc1_359", "shape": "dot", "size": 10}, {"id": "EUAcc0_452", "label": "EUAcc0_452", "shape": "dot", "size": 10}, {"id": "EUAcc0_102", "label": "EUAcc0_102", "shape": "dot", "size": 10}, {"id": "EUAcc0_1200", "label": "EUAcc0_1200", "shape": "dot", "size": 10}, {"id": "EUAcc0_1132", "label": "EUAcc0_1132", "shape": "dot", "size": 10}, {"id": "EUAcc1_25", "label": "EUAcc1_25", "shape": "dot", "size": 10}, {"id": "EUAcc0_820", "label": "EUAcc0_820", "shape": "dot", "size": 10}, {"id": "EUAcc0_996", "label": "EUAcc0_996", "shape": "dot", "size": 10}, {"id": "EUAcc2_124", "label": "EUAcc2_124", "shape": "dot", "size": 10}, {"id": "EUAcc1_256", "label": "EUAcc1_256", "shape": "dot", "size": 10}, {"id": "EUAcc1_517", "label": "EUAcc1_517", "shape": "dot", "size": 10}, {"id": "EUAcc0_915", "label": "EUAcc0_915", "shape": "dot", "size": 10}, {"id": "EUAcc1_5", "label": "EUAcc1_5", "shape": "dot", "size": 10}, {"id": "MAcc2", "label": "MAcc2", "shape": "dot", "size": 10}, {"id": "EUAcc2_3", "label": "EUAcc2_3", "shape": "dot", "size": 10}, {"id": "EUAcc2_155", "label": "EUAcc2_155", "shape": "dot", "size": 10}, {"id": "EUAcc0_1153", "label": "EUAcc0_1153", "shape": "dot", "size": 10}, {"id": "EUAcc0_910", "label": "EUAcc0_910", "shape": "dot", "size": 10}, {"id": "EUAcc0_85", "label": "EUAcc0_85", "shape": "dot", "size": 10}, {"id": "EUAcc2_167", "label": "EUAcc2_167", "shape": "dot", "size": 10}, {"id": "EUAcc0_64", "label": "EUAcc0_64", "shape": "dot", "size": 10}, {"id": "EUAcc0_716", "label": "EUAcc0_716", "shape": "dot", "size": 10}, {"id": "EUAcc1_419", "label": "EUAcc1_419", "shape": "dot", "size": 10}, {"id": "EUAcc0_131", "label": "EUAcc0_131", "shape": "dot", "size": 10}, {"id": "EUAcc1_514", "label": "EUAcc1_514", "shape": "dot", "size": 10}, {"id": "EUAcc0_1035", "label": "EUAcc0_1035", "shape": "dot", "size": 10}, {"id": "EUAcc0_399", "label": "EUAcc0_399", "shape": "dot", "size": 10}, {"id": "EUAcc1_4", "label": "EUAcc1_4", "shape": "dot", "size": 10}, {"id": "EUAcc0_748", "label": "EUAcc0_748", "shape": "dot", "size": 10}, {"id": "EUAcc0_969", "label": "EUAcc0_969", "shape": "dot", "size": 10}, {"id": "EUAcc1_139", "label": "EUAcc1_139", "shape": "dot", "size": 10}, {"id": "EUAcc1_15", "label": "EUAcc1_15", "shape": "dot", "size": 10}, {"id": "EUAcc0_707", "label": "EUAcc0_707", "shape": "dot", "size": 10}, {"id": "EUAcc0_711", "label": "EUAcc0_711", "shape": "dot", "size": 10}, {"id": "EUAcc0_1094", "label": "EUAcc0_1094", "shape": "dot", "size": 10}, {"id": "EUAcc0_1117", "label": "EUAcc0_1117", "shape": "dot", "size": 10}, {"id": "EUAcc1_472", "label": "EUAcc1_472", "shape": "dot", "size": 10}, {"id": "EUAcc0_278", "label": "EUAcc0_278", "shape": "dot", "size": 10}, {"id": "EUAcc1_417", "label": "EUAcc1_417", "shape": "dot", "size": 10}, {"id": "EUAcc0_603", "label": "EUAcc0_603", "shape": "dot", "size": 10}, {"id": "EUAcc3_5", "label": "EUAcc3_5", "shape": "dot", "size": 10}, {"id": "EUAcc0_160", "label": "EUAcc0_160", "shape": "dot", "size": 10}, {"id": "EUAcc0_871", "label": "EUAcc0_871", "shape": "dot", "size": 10}, {"id": "EUAcc2_65", "label": "EUAcc2_65", "shape": "dot", "size": 10}, {"id": "EUAcc0_836", "label": "EUAcc0_836", "shape": "dot", "size": 10}, {"id": "EUAcc0_435", "label": "EUAcc0_435", "shape": "dot", "size": 10}, {"id": "EUAcc2_48", "label": "EUAcc2_48", "shape": "dot", "size": 10}, {"id": "EUAcc3_28", "label": "EUAcc3_28", "shape": "dot", "size": 10}, {"id": "EUAcc0_699", "label": "EUAcc0_699", "shape": "dot", "size": 10}, {"id": "EUAcc0_928", "label": "EUAcc0_928", "shape": "dot", "size": 10}, {"id": "EUAcc1_102", "label": "EUAcc1_102", "shape": "dot", "size": 10}, {"id": "EUAcc0_471", "label": "EUAcc0_471", "shape": "dot", "size": 10}, {"id": "EUAcc2_106", "label": "EUAcc2_106", "shape": "dot", "size": 10}, {"id": "EUAcc0_722", "label": "EUAcc0_722", "shape": "dot", "size": 10}, {"id": "EUAcc1_297", "label": "EUAcc1_297", "shape": "dot", "size": 10}, {"id": "EUAcc1_27", "label": "EUAcc1_27", "shape": "dot", "size": 10}, {"id": "EUAcc1_512", "label": "EUAcc1_512", "shape": "dot", "size": 10}, {"id": "EUAcc0_774", "label": "EUAcc0_774", "shape": "dot", "size": 10}, {"id": "EUAcc0_1177", "label": "EUAcc0_1177", "shape": "dot", "size": 10}, {"id": "EUAcc3_31", "label": "EUAcc3_31", "shape": "dot", "size": 10}, {"id": "EUAcc0_631", "label": "EUAcc0_631", "shape": "dot", "size": 10}, {"id": "EUAcc0_625", "label": "EUAcc0_625", "shape": "dot", "size": 10}, {"id": "EUAcc1_483", "label": "EUAcc1_483", "shape": "dot", "size": 10}, {"id": "EUAcc0_535", "label": "EUAcc0_535", "shape": "dot", "size": 10}, {"id": "EUAcc1_475", "label": "EUAcc1_475", "shape": "dot", "size": 10}, {"id": "EUAcc0_972", "label": "EUAcc0_972", "shape": "dot", "size": 10}, {"id": "EUAcc1_410", "label": "EUAcc1_410", "shape": "dot", "size": 10}, {"id": "EUAcc1_23", "label": "EUAcc1_23", "shape": "dot", "size": 10}, {"id": "EUAcc2_52", "label": "EUAcc2_52", "shape": "dot", "size": 10}, {"id": "EUAcc0_644", "label": "EUAcc0_644", "shape": "dot", "size": 10}, {"id": "EUAcc0_1078", "label": "EUAcc0_1078", "shape": "dot", "size": 10}, {"id": "EUAcc0_386", "label": "EUAcc0_386", "shape": "dot", "size": 10}, {"id": "EUAcc1_357", "label": "EUAcc1_357", "shape": "dot", "size": 10}, {"id": "EUAcc1_340", "label": "EUAcc1_340", "shape": "dot", "size": 10}, {"id": "EUAcc0_913", "label": "EUAcc0_913", "shape": "dot", "size": 10}, {"id": "EUAcc0_1223", "label": "EUAcc0_1223", "shape": "dot", "size": 10}, {"id": "EUAcc0_503", "label": "EUAcc0_503", "shape": "dot", "size": 10}, {"id": "EUAcc0_1074", "label": "EUAcc0_1074", "shape": "dot", "size": 10}, {"id": "EUAcc0_40", "label": "EUAcc0_40", "shape": "dot", "size": 10}, {"id": "EUAcc0_1017", "label": "EUAcc0_1017", "shape": "dot", "size": 10}, {"id": "EUAcc1_413", "label": "EUAcc1_413", "shape": "dot", "size": 10}, {"id": "EUAcc0_1060", "label": "EUAcc0_1060", "shape": "dot", "size": 10}, {"id": "EUAcc2_102", "label": "EUAcc2_102", "shape": "dot", "size": 10}, {"id": "EUAcc0_753", "label": "EUAcc0_753", "shape": "dot", "size": 10}, {"id": "EUAcc3_18", "label": "EUAcc3_18", "shape": "dot", "size": 10}, {"id": "EUAcc1_157", "label": "EUAcc1_157", "shape": "dot", "size": 10}, {"id": "EUAcc1_245", "label": "EUAcc1_245", "shape": "dot", "size": 10}, {"id": "EUAcc0_338", "label": "EUAcc0_338", "shape": "dot", "size": 10}, {"id": "EUAcc0_655", "label": "EUAcc0_655", "shape": "dot", "size": 10}, {"id": "EUAcc1_70", "label": "EUAcc1_70", "shape": "dot", "size": 10}, {"id": "EUAcc1_57", "label": "EUAcc1_57", "shape": "dot", "size": 10}, {"id": "EUAcc0_1160", "label": "EUAcc0_1160", "shape": "dot", "size": 10}, {"id": "EUAcc1_146", "label": "EUAcc1_146", "shape": "dot", "size": 10}, {"id": "EUAcc2_37", "label": "EUAcc2_37", "shape": "dot", "size": 10}, {"id": "EUAcc0_656", "label": "EUAcc0_656", "shape": "dot", "size": 10}, {"id": "EUAcc0_65", "label": "EUAcc0_65", "shape": "dot", "size": 10}, {"id": "EUAcc0_931", "label": "EUAcc0_931", "shape": "dot", "size": 10}, {"id": "EUAcc0_58", "label": "EUAcc0_58", "shape": "dot", "size": 10}, {"id": "EUAcc0_505", "label": "EUAcc0_505", "shape": "dot", "size": 10}, {"id": "EUAcc2_63", "label": "EUAcc2_63", "shape": "dot", "size": 10}, {"id": "EUAcc1_104", "label": "EUAcc1_104", "shape": "dot", "size": 10}, {"id": "EUAcc0_48", "label": "EUAcc0_48", "shape": "dot", "size": 10}, {"id": "EUAcc1_286", "label": "EUAcc1_286", "shape": "dot", "size": 10}, {"id": "EUAcc0_1102", "label": "EUAcc0_1102", "shape": "dot", "size": 10}, {"id": "EUAcc0_1203", "label": "EUAcc0_1203", "shape": "dot", "size": 10}, {"id": "EUAcc0_1018", "label": "EUAcc0_1018", "shape": "dot", "size": 10}, {"id": "EUAcc2_72", "label": "EUAcc2_72", "shape": "dot", "size": 10}, {"id": "EUAcc1_325", "label": "EUAcc1_325", "shape": "dot", "size": 10}, {"id": "EUAcc2_108", "label": "EUAcc2_108", "shape": "dot", "size": 10}, {"id": "EUAcc3_9", "label": "EUAcc3_9", "shape": "dot", "size": 10}, {"id": "EUAcc0_128", "label": "EUAcc0_128", "shape": "dot", "size": 10}, {"id": "EUAcc0_590", "label": "EUAcc0_590", "shape": "dot", "size": 10}, {"id": "EUAcc0_1253", "label": "EUAcc0_1253", "shape": "dot", "size": 10}, {"id": "EUAcc0_727", "label": "EUAcc0_727", "shape": "dot", "size": 10}, {"id": "EUAcc0_1239", "label": "EUAcc0_1239", "shape": "dot", "size": 10}, {"id": "EUAcc0_1145", "label": "EUAcc0_1145", "shape": "dot", "size": 10}, {"id": "EUAcc3_33", "label": "EUAcc3_33", "shape": "dot", "size": 10}, {"id": "EUAcc0_209", "label": "EUAcc0_209", "shape": "dot", "size": 10}, {"id": "EUAcc0_1039", "label": "EUAcc0_1039", "shape": "dot", "size": 10}, {"id": "EUAcc0_326", "label": "EUAcc0_326", "shape": "dot", "size": 10}, {"id": "EUAcc1_252", "label": "EUAcc1_252", "shape": "dot", "size": 10}, {"id": "EUAcc0_1112", "label": "EUAcc0_1112", "shape": "dot", "size": 10}, {"id": "EUAcc0_765", "label": "EUAcc0_765", "shape": "dot", "size": 10}, {"id": "EUAcc3_19", "label": "EUAcc3_19", "shape": "dot", "size": 10}, {"id": "EUAcc1_190", "label": "EUAcc1_190", "shape": "dot", "size": 10}, {"id": "EUAcc1_490", "label": "EUAcc1_490", "shape": "dot", "size": 10}, {"id": "EUAcc0_200", "label": "EUAcc0_200", "shape": "dot", "size": 10}, {"id": "EUAcc0_983", "label": "EUAcc0_983", "shape": "dot", "size": 10}, {"id": "EUAcc1_31", "label": "EUAcc1_31", "shape": "dot", "size": 10}, {"id": "EUAcc0_729", "label": "EUAcc0_729", "shape": "dot", "size": 10}, {"id": "EUAcc3_0", "label": "EUAcc3_0", "shape": "dot", "size": 10}, {"id": "EUAcc0_826", "label": "EUAcc0_826", "shape": "dot", "size": 10}, {"id": "EUAcc1_2", "label": "EUAcc1_2", "shape": "dot", "size": 10}, {"id": "EUAcc0_897", "label": "EUAcc0_897", "shape": "dot", "size": 10}, {"id": "EUAcc0_50", "label": "EUAcc0_50", "shape": "dot", "size": 10}, {"id": "EUAcc1_371", "label": "EUAcc1_371", "shape": "dot", "size": 10}, {"id": "EUAcc0_1052", "label": "EUAcc0_1052", "shape": "dot", "size": 10}, {"id": "EUAcc0_1208", "label": "EUAcc0_1208", "shape": "dot", "size": 10}, {"id": "EUAcc0_171", "label": "EUAcc0_171", "shape": "dot", "size": 10}, {"id": "EUAcc0_423", "label": "EUAcc0_423", "shape": "dot", "size": 10}, {"id": "EUAcc0_669", "label": "EUAcc0_669", "shape": "dot", "size": 10}, {"id": "EUAcc2_158", "label": "EUAcc2_158", "shape": "dot", "size": 10}, {"id": "EUAcc0_518", "label": "EUAcc0_518", "shape": "dot", "size": 10}, {"id": "EUAcc0_1011", "label": "EUAcc0_1011", "shape": "dot", "size": 10}, {"id": "EUAcc1_19", "label": "EUAcc1_19", "shape": "dot", "size": 10}, {"id": "EUAcc0_250", "label": "EUAcc0_250", "shape": "dot", "size": 10}, {"id": "EUAcc0_878", "label": "EUAcc0_878", "shape": "dot", "size": 10}, {"id": "EUAcc1_98", "label": "EUAcc1_98", "shape": "dot", "size": 10}, {"id": "EUAcc0_795", "label": "EUAcc0_795", "shape": "dot", "size": 10}, {"id": "EUAcc2_57", "label": "EUAcc2_57", "shape": "dot", "size": 10}, {"id": "EUAcc2_73", "label": "EUAcc2_73", "shape": "dot", "size": 10}, {"id": "EUAcc0_1235", "label": "EUAcc0_1235", "shape": "dot", "size": 10}, {"id": "EUAcc0_970", "label": "EUAcc0_970", "shape": "dot", "size": 10}, {"id": "EUAcc0_578", "label": "EUAcc0_578", "shape": "dot", "size": 10}, {"id": "EUAcc0_57", "label": "EUAcc0_57", "shape": "dot", "size": 10}, {"id": "EUAcc2_71", "label": "EUAcc2_71", "shape": "dot", "size": 10}, {"id": "EUAcc0_714", "label": "EUAcc0_714", "shape": "dot", "size": 10}, {"id": "EUAcc0_755", "label": "EUAcc0_755", "shape": "dot", "size": 10}, {"id": "EUAcc0_406", "label": "EUAcc0_406", "shape": "dot", "size": 10}, {"id": "EUAcc0_395", "label": "EUAcc0_395", "shape": "dot", "size": 10}, {"id": "EUAcc0_12", "label": "EUAcc0_12", "shape": "dot", "size": 10}, {"id": "EUAcc0_339", "label": "EUAcc0_339", "shape": "dot", "size": 10}, {"id": "EUAcc0_231", "label": "EUAcc0_231", "shape": "dot", "size": 10}, {"id": "EUAcc0_530", "label": "EUAcc0_530", "shape": "dot", "size": 10}, {"id": "EUAcc0_1232", "label": "EUAcc0_1232", "shape": "dot", "size": 10}, {"id": "EUAcc1_442", "label": "EUAcc1_442", "shape": "dot", "size": 10}, {"id": "EUAcc0_865", "label": "EUAcc0_865", "shape": "dot", "size": 10}, {"id": "EUAcc0_308", "label": "EUAcc0_308", "shape": "dot", "size": 10}, {"id": "EUAcc2_40", "label": "EUAcc2_40", "shape": "dot", "size": 10}, {"id": "EUAcc3_2", "label": "EUAcc3_2", "shape": "dot", "size": 10}, {"id": "EUAcc2_115", "label": "EUAcc2_115", "shape": "dot", "size": 10}, {"id": "EUAcc0_855", "label": "EUAcc0_855", "shape": "dot", "size": 10}, {"id": "EUAcc0_815", "label": "EUAcc0_815", "shape": "dot", "size": 10}, {"id": "EUAcc0_303", "label": "EUAcc0_303", "shape": "dot", "size": 10}, {"id": "EUAcc0_950", "label": "EUAcc0_950", "shape": "dot", "size": 10}, {"id": "EUAcc0_841", "label": "EUAcc0_841", "shape": "dot", "size": 10}, {"id": "EUAcc1_194", "label": "EUAcc1_194", "shape": "dot", "size": 10}, {"id": "EUAcc0_1178", "label": "EUAcc0_1178", "shape": "dot", "size": 10}, {"id": "EUAcc1_17", "label": "EUAcc1_17", "shape": "dot", "size": 10}, {"id": "EUAcc0_1027", "label": "EUAcc0_1027", "shape": "dot", "size": 10}, {"id": "EUAcc0_463", "label": "EUAcc0_463", "shape": "dot", "size": 10}, {"id": "EUAcc0_1179", "label": "EUAcc0_1179", "shape": "dot", "size": 10}, {"id": "EUAcc1_458", "label": "EUAcc1_458", "shape": "dot", "size": 10}, {"id": "EUAcc1_422", "label": "EUAcc1_422", "shape": "dot", "size": 10}, {"id": "EUAcc0_752", "label": "EUAcc0_752", "shape": "dot", "size": 10}, {"id": "EUAcc0_1101", "label": "EUAcc0_1101", "shape": "dot", "size": 10}, {"id": "EUAcc0_1185", "label": "EUAcc0_1185", "shape": "dot", "size": 10}, {"id": "EUAcc2_163", "label": "EUAcc2_163", "shape": "dot", "size": 10}, {"id": "EUAcc0_93", "label": "EUAcc0_93", "shape": "dot", "size": 10}, {"id": "EUAcc1_471", "label": "EUAcc1_471", "shape": "dot", "size": 10}, {"id": "EUAcc1_284", "label": "EUAcc1_284", "shape": "dot", "size": 10}, {"id": "EUAcc0_733", "label": "EUAcc0_733", "shape": "dot", "size": 10}, {"id": "EUAcc2_82", "label": "EUAcc2_82", "shape": "dot", "size": 10}, {"id": "EUAcc0_895", "label": "EUAcc0_895", "shape": "dot", "size": 10}, {"id": "EUAcc3_14", "label": "EUAcc3_14", "shape": "dot", "size": 10}, {"id": "EUAcc0_962", "label": "EUAcc0_962", "shape": "dot", "size": 10}, {"id": "EUAcc0_949", "label": "EUAcc0_949", "shape": "dot", "size": 10}, {"id": "EUAcc0_516", "label": "EUAcc0_516", "shape": "dot", "size": 10}, {"id": "EUAcc0_1050", "label": "EUAcc0_1050", "shape": "dot", "size": 10}, {"id": "EUAcc0_205", "label": "EUAcc0_205", "shape": "dot", "size": 10}, {"id": "EUAcc0_360", "label": "EUAcc0_360", "shape": "dot", "size": 10}, {"id": "EUAcc0_828", "label": "EUAcc0_828", "shape": "dot", "size": 10}, {"id": "EUAcc1_307", "label": "EUAcc1_307", "shape": "dot", "size": 10}, {"id": "EUAcc1_406", "label": "EUAcc1_406", "shape": "dot", "size": 10}, {"id": "EUAcc0_268", "label": "EUAcc0_268", "shape": "dot", "size": 10}, {"id": "EUAcc1_46", "label": "EUAcc1_46", "shape": "dot", "size": 10}, {"id": "EUAcc2_166", "label": "EUAcc2_166", "shape": "dot", "size": 10}, {"id": "EUAcc1_22", "label": "EUAcc1_22", "shape": "dot", "size": 10}, {"id": "EUAcc0_623", "label": "EUAcc0_623", "shape": "dot", "size": 10}, {"id": "EUAcc3_3", "label": "EUAcc3_3", "shape": "dot", "size": 10}, {"id": "EUAcc0_47", "label": "EUAcc0_47", "shape": "dot", "size": 10}, {"id": "EUAcc0_233", "label": "EUAcc0_233", "shape": "dot", "size": 10}, {"id": "EUAcc0_997", "label": "EUAcc0_997", "shape": "dot", "size": 10}]);
edges = new vis.DataSet([{"from": "RAcc2", "label": 131926.49, "to": "EUAcc0_261", "weight": 131926.49}, {"from": "RAcc2", "label": 182548.74, "to": "EUAcc1_362", "weight": 182548.74}, {"from": "RAcc2", "label": 102262.16, "to": "EUAcc0_320", "weight": 102262.16}, {"from": "RAcc2", "label": 44727.52, "to": "EUAcc1_364", "weight": 44727.52}, {"from": "RAcc2", "label": 31393.33, "to": "EUAcc2_81", "weight": 31393.33}, {"from": "RAcc2", "label": 182011.94, "to": "EUAcc1_153", "weight": 182011.94}, {"from": "RAcc2", "label": 5016.91, "to": "EUAcc2_58", "weight": 5016.91}, {"from": "RAcc2", "label": 143779.05, "to": "EUAcc1_227", "weight": 143779.05}, {"from": "RAcc2", "label": 104245.91, "to": "EUAcc2_91", "weight": 104245.91}, {"from": "RAcc2", "label": 70867.43, "to": "EUAcc2_139", "weight": 70867.43}, {"from": "RAcc2", "label": 92315.19, "to": "EUAcc1_343", "weight": 92315.19}, {"from": "RAcc2", "label": 158672.34, "to": "EUAcc0_280", "weight": 158672.34}, {"from": "RAcc2", "label": 9741.6, "to": "EUAcc2_16", "weight": 9741.6}, {"from": "RAcc2", "label": 45775.71, "to": "EUAcc3_6", "weight": 45775.71}, {"from": "RAcc2", "label": 49256.71, "to": "EUAcc0_253", "weight": 49256.71}, {"from": "RAcc2", "label": 129149.96, "to": "EUAcc0_129", "weight": 129149.96}, {"from": "RAcc2", "label": 56321.99, "to": "EUAcc0_7", "weight": 56321.99}, {"from": "RAcc2", "label": 187150.76, "to": "EUAcc1_383", "weight": 187150.76}, {"from": "RAcc2", "label": 184141.29, "to": "EUAcc1_283", "weight": 184141.29}, {"from": "RAcc2", "label": 59970.16, "to": "EUAcc1_328", "weight": 59970.16}, {"from": "RAcc2", "label": 70630.27, "to": "EUAcc2_138", "weight": 70630.27}, {"from": "RAcc2", "label": 98655.55, "to": "EUAcc0_220", "weight": 98655.55}, {"from": "RAcc2", "label": 60429.05, "to": "EUAcc2_99", "weight": 60429.05}, {"from": "RAcc2", "label": 31810.5, "to": "EUAcc2_145", "weight": 31810.5}, {"from": "RAcc2", "label": 49738.34, "to": "EUAcc2_34", "weight": 49738.34}, {"from": "RAcc2", "label": 101377.98, "to": "EUAcc1_222", "weight": 101377.98}, {"from": "RAcc2", "label": 169517.81, "to": "EUAcc0_358", "weight": 169517.81}, {"from": "RAcc2", "label": 91868.01, "to": "EUAcc1_39", "weight": 91868.01}, {"from": "RAcc2", "label": 257517.43, "to": "EUAcc1_393", "weight": 257517.43}, {"from": "RAcc2", "label": 51047.09, "to": "EUAcc0_309", "weight": 51047.09}, {"from": "RAcc2", "label": 65209.49, "to": "EUAcc1_356", "weight": 65209.49}, {"from": "RAcc2", "label": 185172.66, "to": "EUAcc1_506", "weight": 185172.66}, {"from": "RAcc2", "label": 111783.84, "to": "EUAcc3_32", "weight": 111783.84}, {"from": "RAcc2", "label": 119194.49, "to": "EUAcc1_409", "weight": 119194.49}, {"from": "RAcc2", "label": 49187.34, "to": "EUAcc2_148", "weight": 49187.34}, {"from": "RAcc2", "label": 172741.66, "to": "EUAcc1_82", "weight": 172741.66}, {"from": "RAcc2", "label": 57250.12, "to": "EUAcc2_10", "weight": 57250.12}, {"from": "EUAcc1_502", "label": 2054.46, "to": "A0", "weight": 2054.46}, {"from": "EUAcc1_362", "label": 127500.59, "to": "EUAcc0_852", "weight": 127500.59}, {"from": "EUAcc1_26", "label": 6101.22, "to": "A0", "weight": 6101.22}, {"from": "EUAcc1_18", "label": 2102.6, "to": "A0", "weight": 2102.6}, {"from": "EUAcc0_786", "label": 1631.09, "to": "A0", "weight": 1631.09}, {"from": "EUAcc0_597", "label": 5198.7, "to": "A0", "weight": 5198.7}, {"from": "EUAcc2_5", "label": 217857.28, "to": "EUAcc1_121", "weight": 217857.28}, {"from": "EUAcc2_5", "label": 108333.95, "to": "EUAcc0_1127", "weight": 108333.95}, {"from": "EUAcc2_5", "label": 582.94, "to": "A0", "weight": 582.94}, {"from": "EUAcc1_131", "label": 314643.58, "to": "RAcc6", "weight": 314643.58}, {"from": "RAcc6", "label": 145924.27, "to": "EUAcc1_210", "weight": 145924.27}, {"from": "RAcc6", "label": 100712.75, "to": "EUAcc1_237", "weight": 100712.75}, {"from": "RAcc6", "label": 62600.0, "to": "EUAcc1_172", "weight": 62600.0}, {"from": "RAcc6", "label": 178490.44, "to": "EUAcc2_68", "weight": 178490.44}, {"from": "RAcc6", "label": 108173.48, "to": "EUAcc0_307", "weight": 108173.48}, {"from": "RAcc6", "label": 64789.47, "to": "EUAcc2_125", "weight": 64789.47}, {"from": "RAcc6", "label": 51354.25, "to": "EUAcc1_400", "weight": 51354.25}, {"from": "RAcc6", "label": 44353.88, "to": "EUAcc2_39", "weight": 44353.88}, {"from": "RAcc6", "label": 47646.36, "to": "EUAcc1_130", "weight": 47646.36}, {"from": "RAcc6", "label": 70564.4, "to": "EUAcc1_314", "weight": 70564.4}, {"from": "RAcc6", "label": 192923.88, "to": "EUAcc3_23", "weight": 192923.88}, {"from": "RAcc6", "label": 150604.63, "to": "EUAcc2_66", "weight": 150604.63}, {"from": "RAcc6", "label": 45186.32, "to": "EUAcc1_351", "weight": 45186.32}, {"from": "RAcc6", "label": 44881.04, "to": "EUAcc2_27", "weight": 44881.04}, {"from": "RAcc6", "label": 31323.84, "to": "EUAcc1_499", "weight": 31323.84}, {"from": "RAcc6", "label": 11380.99, "to": "EUAcc3_4", "weight": 11380.99}, {"from": "RAcc6", "label": 127349.16, "to": "EUAcc2_170", "weight": 127349.16}, {"from": "RAcc6", "label": 66434.84, "to": "EUAcc2_84", "weight": 66434.84}, {"from": "RAcc6", "label": 109476.29, "to": "EUAcc2_88", "weight": 109476.29}, {"from": "RAcc6", "label": 128558.61, "to": "EUAcc2_2", "weight": 128558.61}, {"from": "RAcc6", "label": 93237.94, "to": "EUAcc1_219", "weight": 93237.94}, {"from": "RAcc6", "label": 80742.09, "to": "EUAcc0_216", "weight": 80742.09}, {"from": "RAcc6", "label": 35298.43, "to": "EUAcc1_75", "weight": 35298.43}, {"from": "RAcc6", "label": 55484.06, "to": "EUAcc2_89", "weight": 55484.06}, {"from": "RAcc6", "label": 238090.23, "to": "EUAcc1_388", "weight": 238090.23}, {"from": "RAcc6", "label": 46590.64, "to": "EUAcc1_447", "weight": 46590.64}, {"from": "RAcc6", "label": 168202.29, "to": "EUAcc0_357", "weight": 168202.29}, {"from": "RAcc6", "label": 41268.84, "to": "EUAcc0_238", "weight": 41268.84}, {"from": "RAcc6", "label": 9729.2, "to": "EUAcc0_287", "weight": 9729.2}, {"from": "RAcc6", "label": 225269.54, "to": "EUAcc3_7", "weight": 225269.54}, {"from": "RAcc6", "label": 16186.73, "to": "EUAcc0_353", "weight": 16186.73}, {"from": "RAcc6", "label": 85489.26, "to": "EUAcc0_204", "weight": 85489.26}, {"from": "RAcc6", "label": 1212.62, "to": "EUAcc1_125", "weight": 1212.62}, {"from": "RAcc6", "label": 95920.13, "to": "EUAcc1_397", "weight": 95920.13}, {"from": "RAcc6", "label": 185801.39, "to": "EUAcc2_128", "weight": 185801.39}, {"from": "RAcc6", "label": 52570.0, "to": "EUAcc1_89", "weight": 52570.0}, {"from": "RAcc3", "label": 100475.45, "to": "EUAcc2_86", "weight": 100475.45}, {"from": "RAcc3", "label": 111050.34, "to": "EUAcc1_416", "weight": 111050.34}, {"from": "RAcc3", "label": 179443.08, "to": "EUAcc0_15", "weight": 179443.08}, {"from": "RAcc3", "label": 104007.36, "to": "EUAcc1_124", "weight": 104007.36}, {"from": "RAcc3", "label": 88768.78, "to": "EUAcc0_164", "weight": 88768.78}, {"from": "RAcc3", "label": 467744.9, "to": "EUAcc1_67", "weight": 467744.9}, {"from": "RAcc3", "label": 359606.69, "to": "EUAcc2_121", "weight": 359606.69}, {"from": "RAcc3", "label": 122754.99, "to": "EUAcc1_281", "weight": 122754.99}, {"from": "RAcc3", "label": 95480.05, "to": "EUAcc0_191", "weight": 95480.05}, {"from": "RAcc3", "label": 55693.34, "to": "EUAcc1_110", "weight": 55693.34}, {"from": "RAcc3", "label": 78389.32, "to": "EUAcc1_348", "weight": 78389.32}, {"from": "RAcc3", "label": 163716.14, "to": "EUAcc0_296", "weight": 163716.14}, {"from": "RAcc3", "label": 173224.75, "to": "EUAcc1_342", "weight": 173224.75}, {"from": "RAcc3", "label": 12367.72, "to": "EUAcc3_29", "weight": 12367.72}, {"from": "RAcc3", "label": 96366.78, "to": "EUAcc1_332", "weight": 96366.78}, {"from": "RAcc3", "label": 285212.48, "to": "EUAcc1_370", "weight": 285212.48}, {"from": "RAcc3", "label": 183421.82, "to": "EUAcc1_255", "weight": 183421.82}, {"from": "RAcc3", "label": 261010.57, "to": "EUAcc0_124", "weight": 261010.57}, {"from": "RAcc3", "label": 152237.78, "to": "EUAcc0_330", "weight": 152237.78}, {"from": "RAcc3", "label": 49954.76, "to": "EUAcc0_101", "weight": 49954.76}, {"from": "RAcc3", "label": 285431.6, "to": "EUAcc1_20", "weight": 285431.6}, {"from": "RAcc3", "label": 153790.0, "to": "EUAcc1_274", "weight": 153790.0}, {"from": "RAcc3", "label": 116688.79, "to": "EUAcc1_510", "weight": 116688.79}, {"from": "RAcc3", "label": 50710.62, "to": "EUAcc2_118", "weight": 50710.62}, {"from": "RAcc3", "label": 51314.16, "to": "EUAcc2_80", "weight": 51314.16}, {"from": "RAcc3", "label": 128174.39, "to": "EUAcc1_423", "weight": 128174.39}, {"from": "RAcc3", "label": 17481.56, "to": "EUAcc2_83", "weight": 17481.56}, {"from": "RAcc3", "label": 56015.49, "to": "EUAcc1_493", "weight": 56015.49}, {"from": "RAcc3", "label": 133415.36, "to": "EUAcc0_109", "weight": 133415.36}, {"from": "RAcc3", "label": 21965.92, "to": "EUAcc1_278", "weight": 21965.92}, {"from": "RAcc3", "label": 8120.5, "to": "EUAcc1_221", "weight": 8120.5}, {"from": "RAcc3", "label": 77590.24, "to": "EUAcc2_104", "weight": 77590.24}, {"from": "RAcc3", "label": 185006.62, "to": "EUAcc2_79", "weight": 185006.62}, {"from": "RAcc3", "label": 22033.4, "to": "EUAcc1_199", "weight": 22033.4}, {"from": "RAcc3", "label": 31704.95, "to": "EUAcc2_62", "weight": 31704.95}, {"from": "RAcc3", "label": 149943.46, "to": "EUAcc1_460", "weight": 149943.46}, {"from": "RAcc3", "label": 131053.8, "to": "EUAcc1_486", "weight": 131053.8}, {"from": "RAcc3", "label": 24004.86, "to": "EUAcc1_181", "weight": 24004.86}, {"from": "RAcc3", "label": 59313.52, "to": "EUAcc1_272", "weight": 59313.52}, {"from": "RAcc3", "label": 126086.12, "to": "EUAcc0_242", "weight": 126086.12}, {"from": "RAcc3", "label": 308663.94, "to": "EUAcc1_438", "weight": 308663.94}, {"from": "RAcc3", "label": 149089.9, "to": "EUAcc1_362", "weight": 149089.9}, {"from": "EUAcc2_86", "label": 2867.77, "to": "A0", "weight": 2867.77}, {"from": "RAcc4", "label": 232019.51, "to": "EUAcc1_497", "weight": 232019.51}, {"from": "RAcc4", "label": 33575.15, "to": "EUAcc1_289", "weight": 33575.15}, {"from": "RAcc4", "label": 202013.28, "to": "EUAcc1_233", "weight": 202013.28}, {"from": "RAcc4", "label": 39077.04, "to": "EUAcc0_105", "weight": 39077.04}, {"from": "RAcc4", "label": 235215.74, "to": "EUAcc1_97", "weight": 235215.74}, {"from": "RAcc4", "label": 188298.97, "to": "EUAcc0_262", "weight": 188298.97}, {"from": "RAcc4", "label": 334995.12, "to": "EUAcc2_50", "weight": 334995.12}, {"from": "RAcc4", "label": 242721.57, "to": "EUAcc1_361", "weight": 242721.57}, {"from": "RAcc4", "label": 107016.61, "to": "EUAcc1_195", "weight": 107016.61}, {"from": "RAcc4", "label": 9711.12, "to": "EUAcc0_304", "weight": 9711.12}, {"from": "RAcc4", "label": 21262.86, "to": "EUAcc1_408", "weight": 21262.86}, {"from": "RAcc4", "label": 93044.92, "to": "EUAcc1_161", "weight": 93044.92}, {"from": "RAcc4", "label": 93669.26, "to": "EUAcc0_265", "weight": 93669.26}, {"from": "RAcc4", "label": 47145.94, "to": "EUAcc2_150", "weight": 47145.94}, {"from": "RAcc4", "label": 340011.95, "to": "EUAcc2_60", "weight": 340011.95}, {"from": "RAcc4", "label": 379267.17, "to": "EUAcc1_341", "weight": 379267.17}, {"from": "RAcc4", "label": 385205.89, "to": "EUAcc1_262", "weight": 385205.89}, {"from": "RAcc4", "label": 166709.59, "to": "EUAcc2_151", "weight": 166709.59}, {"from": "RAcc4", "label": 89037.53, "to": "EUAcc2_51", "weight": 89037.53}, {"from": "RAcc4", "label": 38221.79, "to": "EUAcc1_433", "weight": 38221.79}, {"from": "RAcc4", "label": 115370.97, "to": "EUAcc0_185", "weight": 115370.97}, {"from": "RAcc4", "label": 10330.5, "to": "EUAcc2_30", "weight": 10330.5}, {"from": "RAcc4", "label": 31725.32, "to": "EUAcc0_291", "weight": 31725.32}, {"from": "RAcc4", "label": 48109.88, "to": "EUAcc2_17", "weight": 48109.88}, {"from": "RAcc4", "label": 86190.97, "to": "EUAcc1_285", "weight": 86190.97}, {"from": "RAcc4", "label": 73721.61, "to": "EUAcc1_521", "weight": 73721.61}, {"from": "RAcc4", "label": 272606.64, "to": "EUAcc1_100", "weight": 272606.64}, {"from": "RAcc4", "label": 62562.3, "to": "EUAcc2_98", "weight": 62562.3}, {"from": "RAcc4", "label": 103714.15, "to": "EUAcc2_18", "weight": 103714.15}, {"from": "RAcc4", "label": 245605.75, "to": "EUAcc1_418", "weight": 245605.75}, {"from": "RAcc4", "label": 76099.77, "to": "EUAcc2_164", "weight": 76099.77}, {"from": "RAcc4", "label": 150885.06, "to": "EUAcc1_167", "weight": 150885.06}, {"from": "RAcc4", "label": 8067.95, "to": "EUAcc0_1", "weight": 8067.95}, {"from": "RAcc4", "label": 74317.15, "to": "EUAcc1_242", "weight": 74317.15}, {"from": "RAcc4", "label": 226669.41, "to": "EUAcc3_12", "weight": 226669.41}, {"from": "RAcc4", "label": 54973.56, "to": "EUAcc1_396", "weight": 54973.56}, {"from": "RAcc4", "label": 90842.68, "to": "EUAcc0_301", "weight": 90842.68}, {"from": "RAcc4", "label": 89821.5, "to": "EUAcc0_220", "weight": 89821.5}, {"from": "RAcc4", "label": 189017.09, "to": "EUAcc0_181", "weight": 189017.09}, {"from": "RAcc4", "label": 48957.87, "to": "EUAcc1_69", "weight": 48957.87}, {"from": "RAcc4", "label": 75320.38, "to": "EUAcc2_153", "weight": 75320.38}, {"from": "RAcc4", "label": 208157.96, "to": "EUAcc0_297", "weight": 208157.96}, {"from": "RAcc4", "label": 256656.82, "to": "EUAcc1_164", "weight": 256656.82}, {"from": "RAcc4", "label": 182556.46, "to": "EUAcc0_214", "weight": 182556.46}, {"from": "RAcc4", "label": 10978.29, "to": "EUAcc2_114", "weight": 10978.29}, {"from": "RAcc4", "label": 160921.09, "to": "EUAcc2_47", "weight": 160921.09}, {"from": "RAcc4", "label": 13630.56, "to": "EUAcc1_191", "weight": 13630.56}, {"from": "RAcc4", "label": 83481.09, "to": "EUAcc0_76", "weight": 83481.09}, {"from": "EUAcc1_497", "label": 959.72, "to": "A0", "weight": 959.72}, {"from": "EUAcc1_91", "label": 157137.75, "to": "EUAcc0_213", "weight": 157137.75}, {"from": "EUAcc1_91", "label": 97258.27, "to": "EUAcc0_45", "weight": 97258.27}, {"from": "RAcc5", "label": 228085.86, "to": "EUAcc0_143", "weight": 228085.86}, {"from": "RAcc5", "label": 275794.0, "to": "EUAcc2_136", "weight": 275794.0}, {"from": "RAcc5", "label": 188430.3, "to": "EUAcc1_244", "weight": 188430.3}, {"from": "RAcc5", "label": 209762.67, "to": "EUAcc1_485", "weight": 209762.67}, {"from": "RAcc5", "label": 99651.66, "to": "EUAcc1_195", "weight": 99651.66}, {"from": "RAcc5", "label": 166313.28, "to": "EUAcc1_500", "weight": 166313.28}, {"from": "RAcc5", "label": 118623.68, "to": "EUAcc2_122", "weight": 118623.68}, {"from": "RAcc5", "label": 21262.09, "to": "EUAcc2_70", "weight": 21262.09}, {"from": "RAcc5", "label": 83417.57, "to": "EUAcc1_131", "weight": 83417.57}, {"from": "RAcc5", "label": 352135.09, "to": "EUAcc0_364", "weight": 352135.09}, {"from": "RAcc5", "label": 38445.29, "to": "EUAcc0_286", "weight": 38445.29}, {"from": "RAcc5", "label": 68560.73, "to": "EUAcc1_360", "weight": 68560.73}, {"from": "RAcc5", "label": 175674.36, "to": "EUAcc1_394", "weight": 175674.36}, {"from": "RAcc5", "label": 213672.5, "to": "EUAcc1_13", "weight": 213672.5}, {"from": "RAcc5", "label": 30945.83, "to": "EUAcc2_143", "weight": 30945.83}, {"from": "RAcc5", "label": 49764.96, "to": "EUAcc1_202", "weight": 49764.96}, {"from": "RAcc5", "label": 78592.86, "to": "EUAcc1_501", "weight": 78592.86}, {"from": "RAcc5", "label": 238200.02, "to": "EUAcc2_47", "weight": 238200.02}, {"from": "RAcc5", "label": 339829.94, "to": "EUAcc1_183", "weight": 339829.94}, {"from": "RAcc5", "label": 21956.71, "to": "EUAcc1_343", "weight": 21956.71}, {"from": "RAcc5", "label": 75929.73, "to": "EUAcc1_487", "weight": 75929.73}, {"from": "RAcc5", "label": 44504.98, "to": "EUAcc1_395", "weight": 44504.98}, {"from": "RAcc5", "label": 1357.14, "to": "EUAcc1_401", "weight": 1357.14}, {"from": "RAcc5", "label": 163420.36, "to": "EUAcc2_77", "weight": 163420.36}, {"from": "RAcc5", "label": 56059.82, "to": "EUAcc1_473", "weight": 56059.82}, {"from": "RAcc5", "label": 87423.17, "to": "EUAcc1_240", "weight": 87423.17}, {"from": "RAcc5", "label": 126220.75, "to": "EUAcc0_122", "weight": 126220.75}, {"from": "RAcc5", "label": 268421.89, "to": "EUAcc1_234", "weight": 268421.89}, {"from": "RAcc5", "label": 46414.55, "to": "EUAcc1_375", "weight": 46414.55}, {"from": "RAcc5", "label": 33436.68, "to": "EUAcc1_318", "weight": 33436.68}, {"from": "RAcc5", "label": 36452.55, "to": "EUAcc1_302", "weight": 36452.55}, {"from": "RAcc5", "label": 177548.39, "to": "EUAcc2_8", "weight": 177548.39}, {"from": "EUAcc1_387", "label": 852.1, "to": "A0", "weight": 852.1}, {"from": "EUAcc1_95", "label": 5859.1, "to": "A0", "weight": 5859.1}, {"from": "EUAcc0_918", "label": 920.56, "to": "A0", "weight": 920.56}, {"from": "EUAcc1_83", "label": 75914.76, "to": "RAcc5", "weight": 75914.76}, {"from": "EUAcc1_364", "label": 12654.99, "to": "EUAcc1_272", "weight": 12654.99}, {"from": "EUAcc1_364", "label": 76054.94, "to": "EUAcc1_328", "weight": 76054.94}, {"from": "EUAcc2_81", "label": 4265.73, "to": "A0", "weight": 4265.73}, {"from": "EUAcc0_906", "label": 1749.3, "to": "A0", "weight": 1749.3}, {"from": "EUAcc2_130", "label": 77040.17, "to": "RAcc5", "weight": 77040.17}, {"from": "EUAcc2_130", "label": 763.15, "to": "A0", "weight": 763.15}, {"from": "EUAcc0_526", "label": 404.93, "to": "A0", "weight": 404.93}, {"from": "EUAcc1_217", "label": 72273.52, "to": "EUAcc0_759", "weight": 72273.52}, {"from": "RAcc1", "label": 1782.94, "to": "EUAcc1_254", "weight": 1782.94}, {"from": "RAcc1", "label": 66355.34, "to": "EUAcc1_339", "weight": 66355.34}, {"from": "RAcc1", "label": 117338.67, "to": "EUAcc0_318", "weight": 117338.67}, {"from": "RAcc1", "label": 57443.47, "to": "EUAcc1_212", "weight": 57443.47}, {"from": "RAcc1", "label": 88481.67, "to": "EUAcc1_264", "weight": 88481.67}, {"from": "RAcc1", "label": 167521.28, "to": "EUAcc0_132", "weight": 167521.28}, {"from": "RAcc1", "label": 86623.24, "to": "EUAcc1_160", "weight": 86623.24}, {"from": "RAcc1", "label": 74072.08, "to": "EUAcc0_290", "weight": 74072.08}, {"from": "RAcc1", "label": 37421.35, "to": "EUAcc0_2", "weight": 37421.35}, {"from": "RAcc1", "label": 59358.28, "to": "EUAcc0_199", "weight": 59358.28}, {"from": "RAcc1", "label": 54935.38, "to": "EUAcc1_447", "weight": 54935.38}, {"from": "RAcc1", "label": 7082.24, "to": "EUAcc2_117", "weight": 7082.24}, {"from": "RAcc1", "label": 110259.19, "to": "EUAcc0_18", "weight": 110259.19}, {"from": "RAcc1", "label": 283582.47, "to": "EUAcc1_329", "weight": 283582.47}, {"from": "RAcc1", "label": 107794.33, "to": "EUAcc1_288", "weight": 107794.33}, {"from": "RAcc1", "label": 94685.38, "to": "EUAcc1_206", "weight": 94685.38}, {"from": "RAcc1", "label": 105183.83, "to": "EUAcc3_35", "weight": 105183.83}, {"from": "RAcc1", "label": 170465.44, "to": "EUAcc1_228", "weight": 170465.44}, {"from": "RAcc1", "label": 59854.5, "to": "EUAcc2_33", "weight": 59854.5}, {"from": "RAcc1", "label": 17675.73, "to": "EUAcc2_70", "weight": 17675.73}, {"from": "RAcc1", "label": 57402.93, "to": "EUAcc1_516", "weight": 57402.93}, {"from": "RAcc1", "label": 216730.97, "to": "EUAcc1_482", "weight": 216730.97}, {"from": "RAcc1", "label": 117663.89, "to": "EUAcc0_49", "weight": 117663.89}, {"from": "RAcc1", "label": 140300.11, "to": "EUAcc1_180", "weight": 140300.11}, {"from": "RAcc1", "label": 71585.14, "to": "EUAcc1_274", "weight": 71585.14}, {"from": "RAcc1", "label": 169310.8, "to": "EUAcc1_117", "weight": 169310.8}, {"from": "RAcc1", "label": 113006.4, "to": "EUAcc1_204", "weight": 113006.4}, {"from": "RAcc1", "label": 123047.71, "to": "EUAcc2_9", "weight": 123047.71}, {"from": "RAcc1", "label": 176416.06, "to": "EUAcc2_120", "weight": 176416.06}, {"from": "RAcc1", "label": 441031.82, "to": "EUAcc2_59", "weight": 441031.82}, {"from": "EUAcc1_381", "label": 2341.5, "to": "A0", "weight": 2341.5}, {"from": "EUAcc0_1002", "label": 906.85, "to": "A0", "weight": 906.85}, {"from": "EUAcc1_476", "label": 4806.38, "to": "A0", "weight": 4806.38}, {"from": "EUAcc0_903", "label": 576.87, "to": "A0", "weight": 576.87}, {"from": "EUAcc0_450", "label": 9864.37, "to": "A0", "weight": 9864.37}, {"from": "EUAcc0_500", "label": 3770.46, "to": "A0", "weight": 3770.46}, {"from": "EUAcc0_683", "label": 1883.09, "to": "A0", "weight": 1883.09}, {"from": "EUAcc0_892", "label": 1284.54, "to": "A0", "weight": 1284.54}, {"from": "EUAcc0_99", "label": 7704.14, "to": "A0", "weight": 7704.14}, {"from": "EUAcc0_99", "label": 15117.3, "to": "EUAcc0_833", "weight": 15117.3}, {"from": "EUAcc3_10", "label": 48162.83, "to": "EUAcc0_1180", "weight": 48162.83}, {"from": "EUAcc3_10", "label": 6674.47, "to": "A0", "weight": 6674.47}, {"from": "EUAcc0_1180", "label": 3834.1, "to": "A0", "weight": 3834.1}, {"from": "EUAcc1_428", "label": 884.84, "to": "A0", "weight": 884.84}, {"from": "EUAcc0_306", "label": 112.11, "to": "A0", "weight": 112.11}, {"from": "EUAcc1_344", "label": 1222.83, "to": "A0", "weight": 1222.83}, {"from": "EUAcc1_138", "label": 7203.14, "to": "EUAcc0_500", "weight": 7203.14}, {"from": "EUAcc1_138", "label": 67749.25, "to": "RAcc4", "weight": 67749.25}, {"from": "EUAcc1_138", "label": 154967.88, "to": "RAcc5", "weight": 154967.88}, {"from": "EUAcc1_8", "label": 88266.98, "to": "MAcc1", "weight": 88266.98}, {"from": "EUAcc1_8", "label": 139759.03, "to": "EUAcc0_1", "weight": 139759.03}, {"from": "EUAcc0_147", "label": 137272.11, "to": "RAcc6", "weight": 137272.11}, {"from": "EUAcc1_111", "label": 86020.13, "to": "RAcc1", "weight": 86020.13}, {"from": "EUAcc1_111", "label": 18106.73, "to": "RAcc4", "weight": 18106.73}, {"from": "EUAcc1_111", "label": 114321.39, "to": "RAcc2", "weight": 114321.39}, {"from": "EUAcc1_38", "label": 15227.57, "to": "EUAcc0_67", "weight": 15227.57}, {"from": "EUAcc2_136", "label": 888.48, "to": "A0", "weight": 888.48}, {"from": "EUAcc2_95", "label": 102342.48, "to": "EUAcc0_750", "weight": 102342.48}, {"from": "EUAcc2_95", "label": 3542.7, "to": "A0", "weight": 3542.7}, {"from": "EUAcc0_24", "label": 85663.77, "to": "EUAcc0_1071", "weight": 85663.77}, {"from": "EUAcc0_536", "label": 1886.23, "to": "A0", "weight": 1886.23}, {"from": "EUAcc0_961", "label": 929.78, "to": "A0", "weight": 929.78}, {"from": "EUAcc1_153", "label": 861.76, "to": "A0", "weight": 861.76}, {"from": "EUAcc0_966", "label": 3156.83, "to": "A0", "weight": 3156.83}, {"from": "EUAcc0_966", "label": 17817.49, "to": "RAcc5", "weight": 17817.49}, {"from": "EUAcc0_966", "label": 29504.94, "to": "RAcc4", "weight": 29504.94}, {"from": "EUAcc0_966", "label": 23876.27, "to": "RAcc1", "weight": 23876.27}, {"from": "EUAcc1_451", "label": 1361.19, "to": "A0", "weight": 1361.19}, {"from": "EUAcc0_90", "label": 128517.0, "to": "EUAcc0_110", "weight": 128517.0}, {"from": "EUAcc0_660", "label": 801.51, "to": "A0", "weight": 801.51}, {"from": "EUAcc0_838", "label": 7325.74, "to": "A0", "weight": 7325.74}, {"from": "EUAcc0_1166", "label": 1843.26, "to": "A0", "weight": 1843.26}, {"from": "EUAcc2_94", "label": 1952.33, "to": "A0", "weight": 1952.33}, {"from": "EUAcc2_94", "label": 23456.96, "to": "EUAcc0_106", "weight": 23456.96}, {"from": "EUAcc1_492", "label": 1946.93, "to": "A0", "weight": 1946.93}, {"from": "EUAcc0_1108", "label": 955.69, "to": "A0", "weight": 955.69}, {"from": "EUAcc2_58", "label": 288998.23, "to": "RAcc6", "weight": 288998.23}, {"from": "EUAcc0_821", "label": 3677.82, "to": "A0", "weight": 3677.82}, {"from": "EUAcc0_821", "label": 31156.06, "to": "RAcc3", "weight": 31156.06}, {"from": "EUAcc0_821", "label": 4959.27, "to": "RAcc5", "weight": 4959.27}, {"from": "EUAcc0_821", "label": 5165.91, "to": "RAcc2", "weight": 5165.91}, {"from": "EUAcc1_237", "label": 1137.01, "to": "A0", "weight": 1137.01}, {"from": "EUAcc2_26", "label": 203128.87, "to": "EUAcc0_883", "weight": 203128.87}, {"from": "EUAcc0_1195", "label": 382.14, "to": "A0", "weight": 382.14}, {"from": "EUAcc2_12", "label": 330382.84, "to": "RAcc5", "weight": 330382.84}, {"from": "EUAcc2_12", "label": 1268.85, "to": "A0", "weight": 1268.85}, {"from": "EUAcc1_283", "label": 2385.06, "to": "A0", "weight": 2385.06}, {"from": "EUAcc2_107", "label": 5984.16, "to": "A0", "weight": 5984.16}, {"from": "EUAcc2_107", "label": 109391.67, "to": "EUAcc0_1009", "weight": 109391.67}, {"from": "EUAcc1_485", "label": 341.7, "to": "A0", "weight": 341.7}, {"from": "EUAcc0_1146", "label": 4824.92, "to": "A0", "weight": 4824.92}, {"from": "EUAcc1_112", "label": 66492.79, "to": "EUAcc0_397", "weight": 66492.79}, {"from": "EUAcc1_112", "label": 1515.61, "to": "A0", "weight": 1515.61}, {"from": "EUAcc1_112", "label": 130600.33, "to": "EUAcc1_278", "weight": 130600.33}, {"from": "EUAcc2_105", "label": 47020.5, "to": "EUAcc1_494", "weight": 47020.5}, {"from": "EUAcc2_105", "label": 47769.62, "to": "EUAcc0_751", "weight": 47769.62}, {"from": "EUAcc2_105", "label": 7945.25, "to": "A0", "weight": 7945.25}, {"from": "EUAcc2_131", "label": 3497.53, "to": "A0", "weight": 3497.53}, {"from": "EUAcc0_992", "label": 4233.82, "to": "A0", "weight": 4233.82}, {"from": "EUAcc2_123", "label": 38407.82, "to": "EUAcc0_533", "weight": 38407.82}, {"from": "EUAcc1_34", "label": 183458.92, "to": "EUAcc0_898", "weight": 183458.92}, {"from": "EUAcc0_1231", "label": 1481.43, "to": "A0", "weight": 1481.43}, {"from": "EUAcc0_881", "label": 729.11, "to": "A0", "weight": 729.11}, {"from": "EUAcc2_76", "label": 10698.92, "to": "A0", "weight": 10698.92}, {"from": "EUAcc0_562", "label": 603.12, "to": "A0", "weight": 603.12}, {"from": "EUAcc1_59", "label": 2880.05, "to": "A0", "weight": 2880.05}, {"from": "EUAcc1_59", "label": 88331.56, "to": "EUAcc3_21", "weight": 88331.56}, {"from": "EUAcc1_219", "label": 3515.59, "to": "A0", "weight": 3515.59}, {"from": "EUAcc1_123", "label": 88014.46, "to": "RAcc2", "weight": 88014.46}, {"from": "EUAcc1_123", "label": 4414.08, "to": "A0", "weight": 4414.08}, {"from": "EUAcc0_706", "label": 1336.43, "to": "A0", "weight": 1336.43}, {"from": "EUAcc0_751", "label": 3653.72, "to": "A0", "weight": 3653.72}, {"from": "EUAcc0_684", "label": 4563.17, "to": "A0", "weight": 4563.17}, {"from": "EUAcc0_652", "label": 2493.4, "to": "A0", "weight": 2493.4}, {"from": "EUAcc1_513", "label": 4152.3, "to": "A0", "weight": 4152.3}, {"from": "EUAcc1_45", "label": 16036.02, "to": "EUAcc1_240", "weight": 16036.02}, {"from": "EUAcc1_45", "label": 2877.93, "to": "EUAcc0_1183", "weight": 2877.93}, {"from": "EUAcc1_450", "label": 3633.74, "to": "A0", "weight": 3633.74}, {"from": "EUAcc1_60", "label": 0.28, "to": "EUAcc0_228", "weight": 0.28}, {"from": "EUAcc0_228", "label": 2140.53, "to": "A0", "weight": 2140.53}, {"from": "EUAcc1_192", "label": 2572.96, "to": "A0", "weight": 2572.96}, {"from": "EUAcc0_1171", "label": 2059.49, "to": "A0", "weight": 2059.49}, {"from": "EUAcc2_84", "label": 169689.35, "to": "RAcc4", "weight": 169689.35}, {"from": "EUAcc2_149", "label": 32644.25, "to": "EUAcc1_126", "weight": 32644.25}, {"from": "EUAcc2_149", "label": 3302.26, "to": "A0", "weight": 3302.26}, {"from": "EUAcc2_149", "label": 31336.48, "to": "EUAcc0_284", "weight": 31336.48}, {"from": "EUAcc1_126", "label": 55302.36, "to": "EUAcc0_408", "weight": 55302.36}, {"from": "EUAcc1_7", "label": 1448.91, "to": "A0", "weight": 1448.91}, {"from": "EUAcc1_58", "label": 5373.79, "to": "RAcc1", "weight": 5373.79}, {"from": "EUAcc1_403", "label": 5619.97, "to": "A0", "weight": 5619.97}, {"from": "EUAcc2_111", "label": 5551.43, "to": "A0", "weight": 5551.43}, {"from": "EUAcc2_111", "label": 130145.48, "to": "EUAcc2_127", "weight": 130145.48}, {"from": "EUAcc2_111", "label": 104939.94, "to": "EUAcc0_437", "weight": 104939.94}, {"from": "EUAcc2_111", "label": 98287.7, "to": "EUAcc0_613", "weight": 98287.7}, {"from": "EUAcc0_1021", "label": 6485.41, "to": "A0", "weight": 6485.41}, {"from": "EUAcc1_420", "label": 5714.37, "to": "A0", "weight": 5714.37}, {"from": "EUAcc2_25", "label": 48305.49, "to": "EUAcc0_771", "weight": 48305.49}, {"from": "EUAcc0_194", "label": 1991.55, "to": "A0", "weight": 1991.55}, {"from": "EUAcc1_199", "label": 4526.05, "to": "A0", "weight": 4526.05}, {"from": "EUAcc0_1193", "label": 2417.15, "to": "A0", "weight": 2417.15}, {"from": "EUAcc0_991", "label": 8560.52, "to": "A0", "weight": 8560.52}, {"from": "EUAcc0_805", "label": 4711.73, "to": "A0", "weight": 4711.73}, {"from": "EUAcc0_621", "label": 1494.7, "to": "A0", "weight": 1494.7}, {"from": "EUAcc0_348", "label": 8857.69, "to": "A0", "weight": 8857.69}, {"from": "EUAcc0_501", "label": 938.41, "to": "A0", "weight": 938.41}, {"from": "EUAcc1_258", "label": 21217.98, "to": "EUAcc0_185", "weight": 21217.98}, {"from": "EUAcc1_76", "label": 73327.36, "to": "RAcc4", "weight": 73327.36}, {"from": "EUAcc2_45", "label": 5927.87, "to": "A0", "weight": 5927.87}, {"from": "EUAcc1_452", "label": 1560.26, "to": "A0", "weight": 1560.26}, {"from": "EUAcc0_1104", "label": 628.74, "to": "A0", "weight": 628.74}, {"from": "EUAcc1_423", "label": 3890.6, "to": "A0", "weight": 3890.6}, {"from": "EUAcc0_1212", "label": 1683.31, "to": "A0", "weight": 1683.31}, {"from": "EUAcc0_973", "label": 853.88, "to": "A0", "weight": 853.88}, {"from": "EUAcc2_21", "label": 31884.24, "to": "EUAcc0_608", "weight": 31884.24}, {"from": "EUAcc2_21", "label": 177696.36, "to": "EUAcc0_1114", "weight": 177696.36}, {"from": "EUAcc2_21", "label": 720.69, "to": "A0", "weight": 720.69}, {"from": "EUAcc0_608", "label": 15562.51, "to": "RAcc3", "weight": 15562.51}, {"from": "EUAcc0_608", "label": 10221.56, "to": "RAcc6", "weight": 10221.56}, {"from": "EUAcc0_608", "label": 20907.67, "to": "RAcc5", "weight": 20907.67}, {"from": "EUAcc1_342", "label": 524.23, "to": "A0", "weight": 524.23}, {"from": "EUAcc2_139", "label": 2593.4, "to": "A0", "weight": 2593.4}, {"from": "EUAcc1_272", "label": 1407.35, "to": "A0", "weight": 1407.35}, {"from": "EUAcc1_10", "label": 51902.7, "to": "EUAcc0_1087", "weight": 51902.7}, {"from": "EUAcc0_1087", "label": 3205.34, "to": "A0", "weight": 3205.34}, {"from": "EUAcc2_100", "label": 75784.71, "to": "EUAcc0_117", "weight": 75784.71}, {"from": "EUAcc0_439", "label": 1725.4, "to": "A0", "weight": 1725.4}, {"from": "EUAcc2_152", "label": 65917.83, "to": "EUAcc0_218", "weight": 65917.83}, {"from": "EUAcc0_514", "label": 25.7, "to": "A0", "weight": 25.7}, {"from": "EUAcc2_39", "label": 7076.47, "to": "A0", "weight": 7076.47}, {"from": "EUAcc1_320", "label": 1929.22, "to": "A0", "weight": 1929.22}, {"from": "EUAcc1_196", "label": 91203.5, "to": "EUAcc1_439", "weight": 91203.5}, {"from": "EUAcc2_135", "label": 16382.69, "to": "EUAcc0_1175", "weight": 16382.69}, {"from": "EUAcc2_135", "label": 6821.94, "to": "RAcc2", "weight": 6821.94}, {"from": "EUAcc2_135", "label": 21997.27, "to": "RAcc3", "weight": 21997.27}, {"from": "EUAcc2_135", "label": 26140.62, "to": "RAcc1", "weight": 26140.62}, {"from": "EUAcc1_88", "label": 279026.89, "to": "EUAcc0_353", "weight": 279026.89}, {"from": "EUAcc1_177", "label": 9623.62, "to": "A0", "weight": 9623.62}, {"from": "EUAcc0_1042", "label": 1045.92, "to": "A0", "weight": 1045.92}, {"from": "EUAcc2_104", "label": 81301.97, "to": "EUAcc0_687", "weight": 81301.97}, {"from": "EUAcc2_104", "label": 144018.29, "to": "EUAcc0_558", "weight": 144018.29}, {"from": "EUAcc2_104", "label": 87593.1, "to": "EUAcc1_391", "weight": 87593.1}, {"from": "EUAcc0_390", "label": 4041.8, "to": "A0", "weight": 4041.8}, {"from": "EUAcc0_6", "label": 256772.26, "to": "RAcc2", "weight": 256772.26}, {"from": "EUAcc0_352", "label": 1803.86, "to": "A0", "weight": 1803.86}, {"from": "EUAcc0_384", "label": 2555.85, "to": "A0", "weight": 2555.85}, {"from": "EUAcc0_355", "label": 5761.26, "to": "A0", "weight": 5761.26}, {"from": "EUAcc1_312", "label": 56857.54, "to": "EUAcc0_1010", "weight": 56857.54}, {"from": "EUAcc0_70", "label": 178739.43, "to": "RAcc3", "weight": 178739.43}, {"from": "EUAcc0_186", "label": 376.21, "to": "A0", "weight": 376.21}, {"from": "EUAcc1_6", "label": 6077.54, "to": "A0", "weight": 6077.54}, {"from": "EUAcc0_784", "label": 484.54, "to": "A0", "weight": 484.54}, {"from": "EUAcc0_519", "label": 3320.25, "to": "A0", "weight": 3320.25}, {"from": "EUAcc0_418", "label": 649.49, "to": "A0", "weight": 649.49}, {"from": "EUAcc0_34", "label": 1524.17, "to": "A0", "weight": 1524.17}, {"from": "EUAcc2_127", "label": 2318.62, "to": "RAcc1", "weight": 2318.62}, {"from": "EUAcc2_127", "label": 12354.54, "to": "RAcc5", "weight": 12354.54}, {"from": "EUAcc2_127", "label": 6210.2, "to": "RAcc3", "weight": 6210.2}, {"from": "EUAcc1_48", "label": 473874.2, "to": "RAcc6", "weight": 473874.2}, {"from": "EUAcc2_137", "label": 2604.67, "to": "A0", "weight": 2604.67}, {"from": "EUAcc0_681", "label": 1023.64, "to": "A0", "weight": 1023.64}, {"from": "EUAcc2_67", "label": 290041.38, "to": "RAcc2", "weight": 290041.38}, {"from": "EUAcc2_150", "label": 50060.95, "to": "EUAcc0_7", "weight": 50060.95}, {"from": "EUAcc2_150", "label": 49142.62, "to": "EUAcc0_426", "weight": 49142.62}, {"from": "EUAcc1_155", "label": 9484.46, "to": "EUAcc0_1150", "weight": 9484.46}, {"from": "EUAcc0_1150", "label": 3221.51, "to": "A0", "weight": 3221.51}, {"from": "EUAcc1_322", "label": 1648.76, "to": "A0", "weight": 1648.76}, {"from": "EUAcc2_1", "label": 56871.74, "to": "RAcc2", "weight": 56871.74}, {"from": "EUAcc2_1", "label": 56538.27, "to": "RAcc6", "weight": 56538.27}, {"from": "EUAcc0_1165", "label": 4466.54, "to": "A0", "weight": 4466.54}, {"from": "EUAcc1_185", "label": 653.75, "to": "A0", "weight": 653.75}, {"from": "EUAcc0_133", "label": 323375.98, "to": "RAcc5", "weight": 323375.98}, {"from": "EUAcc0_118", "label": 46079.25, "to": "EUAcc0_906", "weight": 46079.25}, {"from": "EUAcc0_118", "label": 91719.37, "to": "EUAcc1_156", "weight": 91719.37}, {"from": "EUAcc2_55", "label": 1950.31, "to": "A0", "weight": 1950.31}, {"from": "EUAcc1_156", "label": 119458.72, "to": "EUAcc0_1259", "weight": 119458.72}, {"from": "EUAcc1_14", "label": 12423.02, "to": "MAcc1", "weight": 12423.02}, {"from": "EUAcc0_584", "label": 3987.06, "to": "A0", "weight": 3987.06}, {"from": "EUAcc0_573", "label": 1176.4, "to": "A0", "weight": 1176.4}, {"from": "EUAcc0_591", "label": 4515.11, "to": "A0", "weight": 4515.11}, {"from": "EUAcc0_144", "label": 3272.88, "to": "A0", "weight": 3272.88}, {"from": "EUAcc1_341", "label": 36024.26, "to": "EUAcc1_211", "weight": 36024.26}, {"from": "EUAcc1_0", "label": 1980.62, "to": "A0", "weight": 1980.62}, {"from": "EUAcc0_649", "label": 461.32, "to": "A0", "weight": 461.32}, {"from": "EUAcc1_262", "label": 54680.39, "to": "EUAcc0_1173", "weight": 54680.39}, {"from": "EUAcc1_262", "label": 131280.53, "to": "EUAcc1_233", "weight": 131280.53}, {"from": "EUAcc0_691", "label": 2738.0, "to": "A0", "weight": 2738.0}, {"from": "EUAcc2_27", "label": 1033.81, "to": "A0", "weight": 1033.81}, {"from": "EUAcc1_376", "label": 42469.93, "to": "EUAcc0_344", "weight": 42469.93}, {"from": "EUAcc0_645", "label": 1807.76, "to": "A0", "weight": 1807.76}, {"from": "EUAcc0_1080", "label": 4476.6, "to": "A0", "weight": 4476.6}, {"from": "EUAcc0_542", "label": 1049.2, "to": "A0", "weight": 1049.2}, {"from": "EUAcc0_1134", "label": 2009.18, "to": "A0", "weight": 2009.18}, {"from": "EUAcc0_604", "label": 1594.74, "to": "A0", "weight": 1594.74}, {"from": "EUAcc0_770", "label": 1122.48, "to": "A0", "weight": 1122.48}, {"from": "EUAcc2_77", "label": 1742.42, "to": "A0", "weight": 1742.42}, {"from": "EUAcc1_87", "label": 4140.52, "to": "A0", "weight": 4140.52}, {"from": "EUAcc0_566", "label": 1740.16, "to": "A0", "weight": 1740.16}, {"from": "EUAcc0_678", "label": 295.66, "to": "A0", "weight": 295.66}, {"from": "EUAcc1_92", "label": 6458.3, "to": "A0", "weight": 6458.3}, {"from": "EUAcc2_116", "label": 102460.55, "to": "EUAcc1_261", "weight": 102460.55}, {"from": "EUAcc2_51", "label": 1004.19, "to": "A0", "weight": 1004.19}, {"from": "EUAcc3_23", "label": 291669.29, "to": "RAcc2", "weight": 291669.29}, {"from": "EUAcc3_23", "label": 110120.81, "to": "EUAcc0_431", "weight": 110120.81}, {"from": "EUAcc0_939", "label": 4782.44, "to": "A0", "weight": 4782.44}, {"from": "EUAcc0_163", "label": 2398.02, "to": "A0", "weight": 2398.02}, {"from": "EUAcc1_84", "label": 21890.26, "to": "EUAcc1_100", "weight": 21890.26}, {"from": "EUAcc3_6", "label": 946.37, "to": "A0", "weight": 946.37}, {"from": "EUAcc2_66", "label": 1065.59, "to": "A0", "weight": 1065.59}, {"from": "EUAcc1_323", "label": 4681.29, "to": "A0", "weight": 4681.29}, {"from": "EUAcc1_367", "label": 1286.92, "to": "A0", "weight": 1286.92}, {"from": "EUAcc0_833", "label": 2081.73, "to": "A0", "weight": 2081.73}, {"from": "EUAcc0_833", "label": 14966.13, "to": "RAcc4", "weight": 14966.13}, {"from": "EUAcc0_936", "label": 7871.84, "to": "A0", "weight": 7871.84}, {"from": "EUAcc0_538", "label": 3893.07, "to": "A0", "weight": 3893.07}, {"from": "EUAcc2_43", "label": 352791.35, "to": "RAcc3", "weight": 352791.35}, {"from": "EUAcc0_523", "label": 5783.19, "to": "A0", "weight": 5783.19}, {"from": "EUAcc0_981", "label": 2309.37, "to": "A0", "weight": 2309.37}, {"from": "EUAcc1_200", "label": 125175.28, "to": "EUAcc0_701", "weight": 125175.28}, {"from": "EUAcc0_364", "label": 16874.24, "to": "RAcc1", "weight": 16874.24}, {"from": "EUAcc0_364", "label": 6211.38, "to": "RAcc4", "weight": 6211.38}, {"from": "EUAcc1_89", "label": 20764.57, "to": "EUAcc2_16", "weight": 20764.57}, {"from": "EUAcc0_550", "label": 3278.87, "to": "A0", "weight": 3278.87}, {"from": "EUAcc0_1093", "label": 1196.24, "to": "A0", "weight": 1196.24}, {"from": "EUAcc0_83", "label": 5280.19, "to": "A0", "weight": 5280.19}, {"from": "EUAcc0_744", "label": 3479.0, "to": "A0", "weight": 3479.0}, {"from": "EUAcc0_140", "label": 181013.53, "to": "RAcc6", "weight": 181013.53}, {"from": "EUAcc0_1227", "label": 1114.14, "to": "A0", "weight": 1114.14}, {"from": "EUAcc0_407", "label": 1510.38, "to": "A0", "weight": 1510.38}, {"from": "EUAcc0_861", "label": 2152.46, "to": "A0", "weight": 2152.46}, {"from": "EUAcc0_791", "label": 2881.43, "to": "A0", "weight": 2881.43}, {"from": "EUAcc0_659", "label": 897.57, "to": "A0", "weight": 897.57}, {"from": "EUAcc0_43", "label": 74764.36, "to": "RAcc4", "weight": 74764.36}, {"from": "EUAcc0_761", "label": 3309.12, "to": "A0", "weight": 3309.12}, {"from": "EUAcc0_104", "label": 1314.48, "to": "A0", "weight": 1314.48}, {"from": "EUAcc0_1045", "label": 1175.44, "to": "A0", "weight": 1175.44}, {"from": "EUAcc3_30", "label": 99157.47, "to": "RAcc1", "weight": 99157.47}, {"from": "EUAcc3_30", "label": 2158.41, "to": "A0", "weight": 2158.41}, {"from": "EUAcc0_808", "label": 2533.77, "to": "A0", "weight": 2533.77}, {"from": "EUAcc0_485", "label": 4227.01, "to": "A0", "weight": 4227.01}, {"from": "EUAcc2_64", "label": 57948.93, "to": "RAcc4", "weight": 57948.93}, {"from": "EUAcc2_19", "label": 1625.05, "to": "RAcc2", "weight": 1625.05}, {"from": "EUAcc2_9", "label": 8757.86, "to": "MAcc1", "weight": 8757.86}, {"from": "EUAcc1_415", "label": 4980.98, "to": "A0", "weight": 4980.98}, {"from": "EUAcc2_11", "label": 81080.77, "to": "EUAcc0_1168", "weight": 81080.77}, {"from": "EUAcc1_118", "label": 1436.44, "to": "A0", "weight": 1436.44}, {"from": "EUAcc0_343", "label": 1904.2, "to": "A0", "weight": 1904.2}, {"from": "EUAcc0_456", "label": 4198.1, "to": "A0", "weight": 4198.1}, {"from": "EUAcc3_25", "label": 23846.36, "to": "RAcc2", "weight": 23846.36}, {"from": "EUAcc2_14", "label": 1802.12, "to": "A0", "weight": 1802.12}, {"from": "EUAcc1_287", "label": 13927.56, "to": "EUAcc1_333", "weight": 13927.56}, {"from": "EUAcc2_92", "label": 13847.84, "to": "EUAcc0_1201", "weight": 13847.84}, {"from": "EUAcc2_92", "label": 15096.98, "to": "EUAcc0_107", "weight": 15096.98}, {"from": "EUAcc0_180", "label": 3590.75, "to": "A0", "weight": 3590.75}, {"from": "EUAcc0_180", "label": 12548.68, "to": "RAcc2", "weight": 12548.68}, {"from": "EUAcc0_180", "label": 7148.95, "to": "RAcc1", "weight": 7148.95}, {"from": "EUAcc0_180", "label": 4145.06, "to": "RAcc6", "weight": 4145.06}, {"from": "EUAcc0_180", "label": 19134.3, "to": "RAcc3", "weight": 19134.3}, {"from": "EUAcc0_300", "label": 2508.02, "to": "A0", "weight": 2508.02}, {"from": "EUAcc1_317", "label": 243.85, "to": "A0", "weight": 243.85}, {"from": "EUAcc1_135", "label": 6666.41, "to": "A0", "weight": 6666.41}, {"from": "EUAcc1_135", "label": 37237.25, "to": "EUAcc0_794", "weight": 37237.25}, {"from": "EUAcc1_52", "label": 76026.58, "to": "EUAcc0_227", "weight": 76026.58}, {"from": "EUAcc2_74", "label": 1574.7, "to": "A0", "weight": 1574.7}, {"from": "EUAcc1_78", "label": 2106.44, "to": "A0", "weight": 2106.44}, {"from": "EUAcc0_964", "label": 284.01, "to": "A0", "weight": 284.01}, {"from": "EUAcc2_147", "label": 1847.34, "to": "A0", "weight": 1847.34}, {"from": "EUAcc1_12", "label": 137892.27, "to": "RAcc4", "weight": 137892.27}, {"from": "EUAcc2_90", "label": 2743.66, "to": "A0", "weight": 2743.66}, {"from": "EUAcc3_4", "label": 1666.38, "to": "EUAcc0_604", "weight": 1666.38}, {"from": "EUAcc3_4", "label": 191820.28, "to": "EUAcc0_142", "weight": 191820.28}, {"from": "EUAcc2_157", "label": 1454.68, "to": "A0", "weight": 1454.68}, {"from": "EUAcc1_480", "label": 1864.15, "to": "A0", "weight": 1864.15}, {"from": "EUAcc0_336", "label": 5363.03, "to": "A0", "weight": 5363.03}, {"from": "EUAcc0_336", "label": 9474.07, "to": "RAcc2", "weight": 9474.07}, {"from": "EUAcc0_336", "label": 11654.65, "to": "RAcc4", "weight": 11654.65}, {"from": "EUAcc0_336", "label": 4290.85, "to": "RAcc5", "weight": 4290.85}, {"from": "EUAcc0_546", "label": 1596.3, "to": "A0", "weight": 1596.3}, {"from": "EUAcc1_378", "label": 1330.93, "to": "A0", "weight": 1330.93}, {"from": "EUAcc0_1144", "label": 666.64, "to": "A0", "weight": 666.64}, {"from": "EUAcc2_109", "label": 1210.9, "to": "A0", "weight": 1210.9}, {"from": "EUAcc2_109", "label": 226499.11, "to": "RAcc4", "weight": 226499.11}, {"from": "EUAcc1_389", "label": 78793.97, "to": "EUAcc0_1247", "weight": 78793.97}, {"from": "EUAcc0_443", "label": 4591.88, "to": "A0", "weight": 4591.88}, {"from": "EUAcc2_17", "label": 70689.16, "to": "RAcc6", "weight": 70689.16}, {"from": "EUAcc0_974", "label": 2715.54, "to": "A0", "weight": 2715.54}, {"from": "EUAcc1_504", "label": 1453.93, "to": "A0", "weight": 1453.93}, {"from": "EUAcc1_201", "label": 1654.49, "to": "A0", "weight": 1654.49}, {"from": "EUAcc0_449", "label": 2721.54, "to": "A0", "weight": 2721.54}, {"from": "EUAcc1_164", "label": 27139.27, "to": "EUAcc1_172", "weight": 27139.27}, {"from": "EUAcc0_198", "label": 2853.56, "to": "A0", "weight": 2853.56}, {"from": "EUAcc0_596", "label": 92.96, "to": "A0", "weight": 92.96}, {"from": "EUAcc1_300", "label": 5194.06, "to": "EUAcc0_840", "weight": 5194.06}, {"from": "EUAcc0_840", "label": 9101.52, "to": "A0", "weight": 9101.52}, {"from": "EUAcc1_435", "label": 3160.57, "to": "A0", "weight": 3160.57}, {"from": "EUAcc3_15", "label": 1010.09, "to": "A0", "weight": 1010.09}, {"from": "EUAcc3_15", "label": 583467.84, "to": "RAcc6", "weight": 583467.84}, {"from": "EUAcc1_334", "label": 1917.01, "to": "A0", "weight": 1917.01}, {"from": "EUAcc0_430", "label": 4694.82, "to": "A0", "weight": 4694.82}, {"from": "EUAcc1_370", "label": 90889.3, "to": "EUAcc0_1209", "weight": 90889.3}, {"from": "EUAcc0_806", "label": 4227.85, "to": "A0", "weight": 4227.85}, {"from": "EUAcc2_110", "label": 808.52, "to": "RAcc3", "weight": 808.52}, {"from": "EUAcc2_110", "label": 3317.2, "to": "A0", "weight": 3317.2}, {"from": "EUAcc0_402", "label": 2320.69, "to": "A0", "weight": 2320.69}, {"from": "EUAcc0_799", "label": 2745.16, "to": "A0", "weight": 2745.16}, {"from": "EUAcc0_212", "label": 456.98, "to": "A0", "weight": 456.98}, {"from": "EUAcc0_677", "label": 980.25, "to": "A0", "weight": 980.25}, {"from": "EUAcc1_248", "label": 2380.07, "to": "A0", "weight": 2380.07}, {"from": "EUAcc1_80", "label": 250.54, "to": "A0", "weight": 250.54}, {"from": "EUAcc0_616", "label": 1671.22, "to": "A0", "weight": 1671.22}, {"from": "EUAcc1_238", "label": 4504.48, "to": "A0", "weight": 4504.48}, {"from": "EUAcc1_65", "label": 1141.28, "to": "A0", "weight": 1141.28}, {"from": "EUAcc1_386", "label": 102150.59, "to": "EUAcc1_291", "weight": 102150.59}, {"from": "EUAcc1_69", "label": 197562.32, "to": "EUAcc0_922", "weight": 197562.32}, {"from": "EUAcc0_310", "label": 4182.78, "to": "A0", "weight": 4182.78}, {"from": "EUAcc2_99", "label": 2907.35, "to": "A0", "weight": 2907.35}, {"from": "EUAcc1_255", "label": 29098.21, "to": "RAcc4", "weight": 29098.21}, {"from": "EUAcc1_255", "label": 36830.44, "to": "RAcc6", "weight": 36830.44}, {"from": "EUAcc1_255", "label": 3762.09, "to": "RAcc1", "weight": 3762.09}, {"from": "EUAcc1_255", "label": 6034.69, "to": "RAcc5", "weight": 6034.69}, {"from": "EUAcc1_496", "label": 2907.88, "to": "A0", "weight": 2907.88}, {"from": "EUAcc0_244", "label": 4990.84, "to": "A0", "weight": 4990.84}, {"from": "EUAcc0_800", "label": 7236.51, "to": "A0", "weight": 7236.51}, {"from": "EUAcc3_26", "label": 113705.61, "to": "EUAcc1_32", "weight": 113705.61}, {"from": "EUAcc2_33", "label": 1046.41, "to": "A0", "weight": 1046.41}, {"from": "EUAcc2_33", "label": 24854.84, "to": "EUAcc0_682", "weight": 24854.84}, {"from": "EUAcc1_521", "label": 24648.35, "to": "RAcc2", "weight": 24648.35}, {"from": "EUAcc1_521", "label": 16798.35, "to": "RAcc1", "weight": 16798.35}, {"from": "EUAcc1_521", "label": 3984.4, "to": "RAcc6", "weight": 3984.4}, {"from": "EUAcc1_521", "label": 156.58, "to": "RAcc5", "weight": 156.58}, {"from": "EUAcc0_271", "label": 1015.46, "to": "A0", "weight": 1015.46}, {"from": "EUAcc2_2", "label": 60336.5, "to": "RAcc5", "weight": 60336.5}, {"from": "EUAcc2_2", "label": 10533.05, "to": "RAcc2", "weight": 10533.05}, {"from": "EUAcc2_2", "label": 2030.19, "to": "RAcc1", "weight": 2030.19}, {"from": "EUAcc2_2", "label": 41878.26, "to": "RAcc3", "weight": 41878.26}, {"from": "EUAcc2_148", "label": 7524.28, "to": "A0", "weight": 7524.28}, {"from": "EUAcc0_1015", "label": 1580.49, "to": "A0", "weight": 1580.49}, {"from": "EUAcc0_1121", "label": 2360.77, "to": "A0", "weight": 2360.77}, {"from": "EUAcc1_522", "label": 4063.53, "to": "A0", "weight": 4063.53}, {"from": "EUAcc0_785", "label": 2552.42, "to": "A0", "weight": 2552.42}, {"from": "EUAcc0_555", "label": 37377.82, "to": "RAcc3", "weight": 37377.82}, {"from": "EUAcc0_555", "label": 12865.19, "to": "RAcc4", "weight": 12865.19}, {"from": "EUAcc0_555", "label": 16792.09, "to": "RAcc2", "weight": 16792.09}, {"from": "EUAcc0_1194", "label": 3122.08, "to": "A0", "weight": 3122.08}, {"from": "EUAcc0_323", "label": 37535.23, "to": "RAcc5", "weight": 37535.23}, {"from": "EUAcc0_323", "label": 20349.89, "to": "RAcc4", "weight": 20349.89}, {"from": "EUAcc0_323", "label": 11896.59, "to": "RAcc2", "weight": 11896.59}, {"from": "EUAcc0_323", "label": 1850.89, "to": "RAcc6", "weight": 1850.89}, {"from": "EUAcc0_812", "label": 9461.79, "to": "RAcc3", "weight": 9461.79}, {"from": "EUAcc0_812", "label": 19224.51, "to": "RAcc1", "weight": 19224.51}, {"from": "EUAcc0_812", "label": 18611.05, "to": "RAcc4", "weight": 18611.05}, {"from": "EUAcc0_812", "label": 4728.09, "to": "RAcc5", "weight": 4728.09}, {"from": "EUAcc0_654", "label": 3725.58, "to": "RAcc3", "weight": 3725.58}, {"from": "EUAcc0_654", "label": 7070.91, "to": "RAcc5", "weight": 7070.91}, {"from": "EUAcc0_654", "label": 7080.28, "to": "RAcc2", "weight": 7080.28}, {"from": "EUAcc0_654", "label": 10585.13, "to": "RAcc6", "weight": 10585.13}, {"from": "EUAcc0_617", "label": 1571.16, "to": "RAcc5", "weight": 1571.16}, {"from": "EUAcc0_617", "label": 23824.3, "to": "RAcc2", "weight": 23824.3}, {"from": "EUAcc0_617", "label": 6221.89, "to": "RAcc6", "weight": 6221.89}, {"from": "EUAcc0_860", "label": 7198.27, "to": "A0", "weight": 7198.27}, {"from": "EUAcc1_234", "label": 251042.96, "to": "RAcc2", "weight": 251042.96}, {"from": "EUAcc2_41", "label": 20983.33, "to": "RAcc1", "weight": 20983.33}, {"from": "EUAcc2_41", "label": 13214.23, "to": "RAcc2", "weight": 13214.23}, {"from": "EUAcc2_41", "label": 1892.14, "to": "RAcc5", "weight": 1892.14}, {"from": "EUAcc2_41", "label": 8717.59, "to": "RAcc3", "weight": 8717.59}, {"from": "EUAcc0_857", "label": 6715.49, "to": "RAcc1", "weight": 6715.49}, {"from": "EUAcc0_857", "label": 15526.94, "to": "RAcc6", "weight": 15526.94}, {"from": "EUAcc0_857", "label": 9840.29, "to": "RAcc4", "weight": 9840.29}, {"from": "EUAcc1_151", "label": 99363.51, "to": "RAcc5", "weight": 99363.51}, {"from": "EUAcc1_215", "label": 2434.16, "to": "A0", "weight": 2434.16}, {"from": "EUAcc0_230", "label": 28842.32, "to": "RAcc4", "weight": 28842.32}, {"from": "EUAcc0_230", "label": 9788.09, "to": "RAcc6", "weight": 9788.09}, {"from": "EUAcc0_230", "label": 4410.17, "to": "RAcc5", "weight": 4410.17}, {"from": "EUAcc0_823", "label": 3368.56, "to": "RAcc5", "weight": 3368.56}, {"from": "EUAcc0_823", "label": 24202.43, "to": "RAcc3", "weight": 24202.43}, {"from": "EUAcc0_823", "label": 1912.58, "to": "RAcc1", "weight": 1912.58}, {"from": "EUAcc0_823", "label": 10556.11, "to": "RAcc6", "weight": 10556.11}, {"from": "EUAcc1_33", "label": 3955.17, "to": "A0", "weight": 3955.17}, {"from": "EUAcc0_319", "label": 5242.88, "to": "A0", "weight": 5242.88}, {"from": "EUAcc1_359", "label": 944.81, "to": "A0", "weight": 944.81}, {"from": "EUAcc0_452", "label": 16100.92, "to": "RAcc4", "weight": 16100.92}, {"from": "EUAcc0_452", "label": 2494.33, "to": "RAcc5", "weight": 2494.33}, {"from": "EUAcc0_452", "label": 15362.54, "to": "RAcc3", "weight": 15362.54}, {"from": "EUAcc0_1183", "label": 2849.15, "to": "RAcc6", "weight": 2849.15}, {"from": "EUAcc2_153", "label": 5947.08, "to": "RAcc3", "weight": 5947.08}, {"from": "EUAcc2_153", "label": 22903.88, "to": "RAcc2", "weight": 22903.88}, {"from": "EUAcc2_153", "label": 93331.89, "to": "EUAcc0_1042", "weight": 93331.89}, {"from": "EUAcc1_274", "label": 1171.35, "to": "A0", "weight": 1171.35}, {"from": "EUAcc0_106", "label": 16588.55, "to": "A0", "weight": 16588.55}, {"from": "EUAcc0_102", "label": 6118.91, "to": "RAcc5", "weight": 6118.91}, {"from": "EUAcc0_102", "label": 23078.37, "to": "RAcc3", "weight": 23078.37}, {"from": "EUAcc0_102", "label": 16106.24, "to": "RAcc4", "weight": 16106.24}, {"from": "EUAcc0_1200", "label": 28694.47, "to": "RAcc5", "weight": 28694.47}, {"from": "EUAcc0_1200", "label": 30477.88, "to": "RAcc2", "weight": 30477.88}, {"from": "EUAcc0_1200", "label": 11730.73, "to": "RAcc4", "weight": 11730.73}, {"from": "EUAcc0_1200", "label": 11401.41, "to": "RAcc6", "weight": 11401.41}, {"from": "EUAcc0_1132", "label": 1616.91, "to": "A0", "weight": 1616.91}, {"from": "EUAcc1_25", "label": 243567.75, "to": "RAcc6", "weight": 243567.75}, {"from": "EUAcc0_820", "label": 640.96, "to": "A0", "weight": 640.96}, {"from": "EUAcc0_996", "label": 3995.01, "to": "A0", "weight": 3995.01}, {"from": "EUAcc2_124", "label": 3856.7, "to": "RAcc3", "weight": 3856.7}, {"from": "EUAcc2_124", "label": 9101.14, "to": "RAcc4", "weight": 9101.14}, {"from": "EUAcc2_124", "label": 14637.94, "to": "RAcc2", "weight": 14637.94}, {"from": "EUAcc1_256", "label": 39304.49, "to": "EUAcc1_517", "weight": 39304.49}, {"from": "EUAcc0_915", "label": 6940.25, "to": "A0", "weight": 6940.25}, {"from": "EUAcc1_5", "label": 29451.88, "to": "MAcc2", "weight": 29451.88}, {"from": "EUAcc2_3", "label": 259614.55, "to": "RAcc6", "weight": 259614.55}, {"from": "EUAcc2_155", "label": 1927.1, "to": "A0", "weight": 1927.1}, {"from": "EUAcc2_155", "label": 298545.08, "to": "RAcc3", "weight": 298545.08}, {"from": "EUAcc0_1153", "label": 45.49, "to": "A0", "weight": 45.49}, {"from": "EUAcc0_910", "label": 2339.38, "to": "A0", "weight": 2339.38}, {"from": "EUAcc0_85", "label": 1936.61, "to": "A0", "weight": 1936.61}, {"from": "EUAcc2_167", "label": 110127.16, "to": "EUAcc0_64", "weight": 110127.16}, {"from": "EUAcc0_716", "label": 3809.31, "to": "A0", "weight": 3809.31}, {"from": "EUAcc1_419", "label": 850.49, "to": "A0", "weight": 850.49}, {"from": "EUAcc0_131", "label": 99221.45, "to": "RAcc5", "weight": 99221.45}, {"from": "EUAcc1_514", "label": 1242.36, "to": "A0", "weight": 1242.36}, {"from": "EUAcc0_1035", "label": 3265.99, "to": "A0", "weight": 3265.99}, {"from": "EUAcc0_399", "label": 1232.83, "to": "A0", "weight": 1232.83}, {"from": "EUAcc1_4", "label": 5678.64, "to": "EUAcc0_748", "weight": 5678.64}, {"from": "EUAcc0_748", "label": 5621.85, "to": "RAcc2", "weight": 5621.85}, {"from": "EUAcc0_748", "label": 29175.62, "to": "RAcc4", "weight": 29175.62}, {"from": "EUAcc0_969", "label": 7732.23, "to": "A0", "weight": 7732.23}, {"from": "EUAcc1_139", "label": 146700.55, "to": "RAcc6", "weight": 146700.55}, {"from": "EUAcc1_15", "label": 32220.74, "to": "RAcc5", "weight": 32220.74}, {"from": "EUAcc0_707", "label": 2802.35, "to": "A0", "weight": 2802.35}, {"from": "EUAcc0_711", "label": 705.92, "to": "A0", "weight": 705.92}, {"from": "EUAcc0_1094", "label": 2724.52, "to": "A0", "weight": 2724.52}, {"from": "EUAcc0_1117", "label": 1288.67, "to": "A0", "weight": 1288.67}, {"from": "EUAcc1_472", "label": 3382.42, "to": "A0", "weight": 3382.42}, {"from": "EUAcc0_278", "label": 1474.18, "to": "A0", "weight": 1474.18}, {"from": "EUAcc1_417", "label": 1014.82, "to": "A0", "weight": 1014.82}, {"from": "EUAcc0_603", "label": 4830.53, "to": "A0", "weight": 4830.53}, {"from": "EUAcc3_5", "label": 846.02, "to": "A0", "weight": 846.02}, {"from": "EUAcc3_5", "label": 160603.59, "to": "EUAcc0_160", "weight": 160603.59}, {"from": "EUAcc0_871", "label": 3920.04, "to": "A0", "weight": 3920.04}, {"from": "EUAcc2_65", "label": 2982.09, "to": "A0", "weight": 2982.09}, {"from": "EUAcc0_836", "label": 4037.84, "to": "A0", "weight": 4037.84}, {"from": "EUAcc0_435", "label": 849.41, "to": "A0", "weight": 849.41}, {"from": "EUAcc2_48", "label": 2308.42, "to": "A0", "weight": 2308.42}, {"from": "EUAcc3_28", "label": 93793.23, "to": "EUAcc0_699", "weight": 93793.23}, {"from": "EUAcc0_928", "label": 502.32, "to": "A0", "weight": 502.32}, {"from": "EUAcc1_102", "label": 16272.81, "to": "EUAcc0_471", "weight": 16272.81}, {"from": "EUAcc2_106", "label": 1111.69, "to": "A0", "weight": 1111.69}, {"from": "EUAcc0_722", "label": 29470.32, "to": "EUAcc0_748", "weight": 29470.32}, {"from": "EUAcc1_183", "label": 51679.94, "to": "EUAcc1_297", "weight": 51679.94}, {"from": "EUAcc1_27", "label": 107296.84, "to": "MAcc1", "weight": 107296.84}, {"from": "EUAcc1_117", "label": 3547.93, "to": "A0", "weight": 3547.93}, {"from": "EUAcc1_512", "label": 1096.99, "to": "A0", "weight": 1096.99}, {"from": "EUAcc0_774", "label": 2890.99, "to": "A0", "weight": 2890.99}, {"from": "EUAcc0_1177", "label": 107.44, "to": "A0", "weight": 107.44}, {"from": "EUAcc3_31", "label": 409859.53, "to": "RAcc4", "weight": 409859.53}, {"from": "EUAcc3_31", "label": 62920.01, "to": "EUAcc0_631", "weight": 62920.01}, {"from": "EUAcc0_625", "label": 347.95, "to": "A0", "weight": 347.95}, {"from": "EUAcc1_483", "label": 22845.02, "to": "RAcc2", "weight": 22845.02}, {"from": "EUAcc1_483", "label": 8471.81, "to": "RAcc3", "weight": 8471.81}, {"from": "EUAcc1_483", "label": 22119.59, "to": "RAcc5", "weight": 22119.59}, {"from": "EUAcc1_483", "label": 8036.53, "to": "RAcc1", "weight": 8036.53}, {"from": "EUAcc2_8", "label": 11005.17, "to": "EUAcc0_535", "weight": 11005.17}, {"from": "EUAcc1_475", "label": 9929.59, "to": "A0", "weight": 9929.59}, {"from": "EUAcc0_972", "label": 25517.36, "to": "RAcc2", "weight": 25517.36}, {"from": "EUAcc0_972", "label": 22088.85, "to": "RAcc1", "weight": 22088.85}, {"from": "EUAcc0_972", "label": 30239.23, "to": "RAcc5", "weight": 30239.23}, {"from": "EUAcc1_410", "label": 3791.83, "to": "A0", "weight": 3791.83}, {"from": "EUAcc1_23", "label": 21253.05, "to": "RAcc1", "weight": 21253.05}, {"from": "EUAcc1_23", "label": 3093.83, "to": "RAcc6", "weight": 3093.83}, {"from": "EUAcc1_23", "label": 9377.85, "to": "RAcc5", "weight": 9377.85}, {"from": "EUAcc1_23", "label": 27229.61, "to": "RAcc4", "weight": 27229.61}, {"from": "EUAcc1_23", "label": 123923.44, "to": "MAcc1", "weight": 123923.44}, {"from": "EUAcc2_52", "label": 40427.04, "to": "EUAcc0_644", "weight": 40427.04}, {"from": "EUAcc2_52", "label": 1087.05, "to": "A0", "weight": 1087.05}, {"from": "EUAcc2_52", "label": 44889.59, "to": "EUAcc0_871", "weight": 44889.59}, {"from": "EUAcc1_486", "label": 11678.2, "to": "RAcc6", "weight": 11678.2}, {"from": "EUAcc1_486", "label": 24378.26, "to": "RAcc1", "weight": 24378.26}, {"from": "EUAcc1_486", "label": 12377.52, "to": "RAcc4", "weight": 12377.52}, {"from": "EUAcc1_486", "label": 653.93, "to": "A0", "weight": 653.93}, {"from": "EUAcc0_1078", "label": 612.11, "to": "A0", "weight": 612.11}, {"from": "EUAcc0_386", "label": 645.67, "to": "A0", "weight": 645.67}, {"from": "EUAcc1_357", "label": 39070.77, "to": "EUAcc1_340", "weight": 39070.77}, {"from": "EUAcc0_913", "label": 479.93, "to": "A0", "weight": 479.93}, {"from": "EUAcc0_1223", "label": 2599.16, "to": "RAcc4", "weight": 2599.16}, {"from": "EUAcc0_1223", "label": 21734.25, "to": "RAcc6", "weight": 21734.25}, {"from": "EUAcc0_1223", "label": 6330.65, "to": "RAcc1", "weight": 6330.65}, {"from": "EUAcc0_503", "label": 1451.77, "to": "A0", "weight": 1451.77}, {"from": "EUAcc0_1074", "label": 2475.22, "to": "A0", "weight": 2475.22}, {"from": "EUAcc0_40", "label": 2768.88, "to": "A0", "weight": 2768.88}, {"from": "EUAcc0_1017", "label": 24972.47, "to": "RAcc3", "weight": 24972.47}, {"from": "EUAcc0_1017", "label": 12734.73, "to": "RAcc6", "weight": 12734.73}, {"from": "EUAcc0_1017", "label": 21576.45, "to": "RAcc4", "weight": 21576.45}, {"from": "EUAcc1_413", "label": 866.43, "to": "A0", "weight": 866.43}, {"from": "EUAcc0_1060", "label": 3527.09, "to": "RAcc1", "weight": 3527.09}, {"from": "EUAcc0_1060", "label": 11710.27, "to": "RAcc5", "weight": 11710.27}, {"from": "EUAcc0_1060", "label": 25246.43, "to": "RAcc3", "weight": 25246.43}, {"from": "EUAcc2_102", "label": 1293.36, "to": "A0", "weight": 1293.36}, {"from": "EUAcc1_409", "label": 8978.15, "to": "RAcc1", "weight": 8978.15}, {"from": "EUAcc1_409", "label": 31720.48, "to": "RAcc6", "weight": 31720.48}, {"from": "EUAcc1_409", "label": 10501.56, "to": "RAcc4", "weight": 10501.56}, {"from": "EUAcc0_753", "label": 3391.56, "to": "A0", "weight": 3391.56}, {"from": "EUAcc3_18", "label": 2863.36, "to": "A0", "weight": 2863.36}, {"from": "EUAcc3_18", "label": 5504.4, "to": "EUAcc0_1183", "weight": 5504.4}, {"from": "EUAcc1_157", "label": 1837.22, "to": "A0", "weight": 1837.22}, {"from": "EUAcc1_157", "label": 110659.9, "to": "RAcc1", "weight": 110659.9}, {"from": "EUAcc1_245", "label": 3108.21, "to": "RAcc2", "weight": 3108.21}, {"from": "EUAcc1_245", "label": 3520.67, "to": "RAcc3", "weight": 3520.67}, {"from": "EUAcc0_338", "label": 2486.09, "to": "A0", "weight": 2486.09}, {"from": "EUAcc0_655", "label": 18311.81, "to": "RAcc5", "weight": 18311.81}, {"from": "EUAcc0_655", "label": 24751.34, "to": "RAcc1", "weight": 24751.34}, {"from": "EUAcc1_70", "label": 253.19, "to": "RAcc4", "weight": 253.19}, {"from": "EUAcc1_70", "label": 4108.3, "to": "RAcc5", "weight": 4108.3}, {"from": "EUAcc1_70", "label": 18542.98, "to": "RAcc2", "weight": 18542.98}, {"from": "EUAcc1_70", "label": 10882.42, "to": "RAcc6", "weight": 10882.42}, {"from": "EUAcc1_57", "label": 175467.33, "to": "EUAcc0_1160", "weight": 175467.33}, {"from": "EUAcc1_146", "label": 117559.62, "to": "EUAcc2_37", "weight": 117559.62}, {"from": "EUAcc0_656", "label": 21186.91, "to": "RAcc5", "weight": 21186.91}, {"from": "EUAcc0_656", "label": 6958.17, "to": "RAcc1", "weight": 6958.17}, {"from": "EUAcc0_65", "label": 3026.55, "to": "A0", "weight": 3026.55}, {"from": "EUAcc0_931", "label": 16437.05, "to": "RAcc6", "weight": 16437.05}, {"from": "EUAcc0_931", "label": 9479.92, "to": "RAcc4", "weight": 9479.92}, {"from": "EUAcc0_931", "label": 412.94, "to": "RAcc2", "weight": 412.94}, {"from": "EUAcc0_58", "label": 870.9, "to": "A0", "weight": 870.9}, {"from": "EUAcc0_505", "label": 2302.17, "to": "A0", "weight": 2302.17}, {"from": "EUAcc2_63", "label": 30535.2, "to": "EUAcc1_104", "weight": 30535.2}, {"from": "EUAcc0_48", "label": 28.37, "to": "A0", "weight": 28.37}, {"from": "EUAcc1_286", "label": 1648.4, "to": "A0", "weight": 1648.4}, {"from": "EUAcc0_1102", "label": 10192.09, "to": "A0", "weight": 10192.09}, {"from": "EUAcc1_397", "label": 1814.17, "to": "A0", "weight": 1814.17}, {"from": "EUAcc0_1203", "label": 2094.84, "to": "A0", "weight": 2094.84}, {"from": "EUAcc0_1018", "label": 7179.86, "to": "A0", "weight": 7179.86}, {"from": "EUAcc2_72", "label": 2612.51, "to": "A0", "weight": 2612.51}, {"from": "EUAcc1_325", "label": 165303.1, "to": "EUAcc0_972", "weight": 165303.1}, {"from": "EUAcc2_108", "label": 2881.43, "to": "A0", "weight": 2881.43}, {"from": "EUAcc3_9", "label": 124106.09, "to": "EUAcc2_121", "weight": 124106.09}, {"from": "EUAcc3_9", "label": 197209.88, "to": "EUAcc1_217", "weight": 197209.88}, {"from": "EUAcc0_128", "label": 145667.33, "to": "RAcc4", "weight": 145667.33}, {"from": "EUAcc0_590", "label": 4063.65, "to": "A0", "weight": 4063.65}, {"from": "EUAcc0_1253", "label": 307.21, "to": "A0", "weight": 307.21}, {"from": "EUAcc0_727", "label": 260.67, "to": "A0", "weight": 260.67}, {"from": "EUAcc0_1239", "label": 5987.04, "to": "A0", "weight": 5987.04}, {"from": "EUAcc1_493", "label": 3146.95, "to": "A0", "weight": 3146.95}, {"from": "EUAcc0_1145", "label": 4098.33, "to": "A0", "weight": 4098.33}, {"from": "EUAcc3_33", "label": 234343.84, "to": "RAcc6", "weight": 234343.84}, {"from": "EUAcc0_209", "label": 6519.13, "to": "A0", "weight": 6519.13}, {"from": "EUAcc0_1039", "label": 407.32, "to": "A0", "weight": 407.32}, {"from": "EUAcc0_326", "label": 1279.94, "to": "A0", "weight": 1279.94}, {"from": "EUAcc1_252", "label": 2411.22, "to": "A0", "weight": 2411.22}, {"from": "EUAcc0_1112", "label": 3404.78, "to": "A0", "weight": 3404.78}, {"from": "EUAcc0_765", "label": 6940.94, "to": "A0", "weight": 6940.94}, {"from": "EUAcc3_19", "label": 8238.24, "to": "A0", "weight": 8238.24}, {"from": "EUAcc1_190", "label": 4137.35, "to": "A0", "weight": 4137.35}, {"from": "EUAcc2_114", "label": 27300.47, "to": "EUAcc1_490", "weight": 27300.47}, {"from": "EUAcc0_200", "label": 2054.45, "to": "A0", "weight": 2054.45}, {"from": "EUAcc0_983", "label": 1403.65, "to": "A0", "weight": 1403.65}, {"from": "EUAcc1_31", "label": 1407.0, "to": "A0", "weight": 1407.0}, {"from": "EUAcc0_729", "label": 2247.73, "to": "A0", "weight": 2247.73}, {"from": "EUAcc3_0", "label": 96252.38, "to": "MAcc2", "weight": 96252.38}, {"from": "EUAcc0_826", "label": 3697.41, "to": "A0", "weight": 3697.41}, {"from": "EUAcc1_2", "label": 140093.74, "to": "MAcc2", "weight": 140093.74}, {"from": "EUAcc0_897", "label": 1335.39, "to": "A0", "weight": 1335.39}, {"from": "EUAcc0_50", "label": 202049.93, "to": "RAcc5", "weight": 202049.93}, {"from": "EUAcc1_371", "label": 125840.8, "to": "EUAcc0_1160", "weight": 125840.8}, {"from": "EUAcc0_1052", "label": 341.78, "to": "A0", "weight": 341.78}, {"from": "EUAcc0_1208", "label": 6622.88, "to": "A0", "weight": 6622.88}, {"from": "EUAcc0_171", "label": 3864.68, "to": "A0", "weight": 3864.68}, {"from": "EUAcc0_423", "label": 380.18, "to": "A0", "weight": 380.18}, {"from": "EUAcc0_669", "label": 2936.17, "to": "A0", "weight": 2936.17}, {"from": "EUAcc2_158", "label": 7489.87, "to": "A0", "weight": 7489.87}, {"from": "EUAcc0_518", "label": 2171.18, "to": "A0", "weight": 2171.18}, {"from": "EUAcc0_1011", "label": 6419.39, "to": "A0", "weight": 6419.39}, {"from": "EUAcc1_19", "label": 8712.44, "to": "MAcc2", "weight": 8712.44}, {"from": "EUAcc0_250", "label": 2601.71, "to": "A0", "weight": 2601.71}, {"from": "EUAcc0_878", "label": 441.28, "to": "A0", "weight": 441.28}, {"from": "EUAcc1_98", "label": 120386.49, "to": "EUAcc0_795", "weight": 120386.49}, {"from": "EUAcc2_57", "label": 390212.91, "to": "RAcc5", "weight": 390212.91}, {"from": "EUAcc2_73", "label": 144113.95, "to": "EUAcc0_1235", "weight": 144113.95}, {"from": "EUAcc0_970", "label": 684.75, "to": "A0", "weight": 684.75}, {"from": "EUAcc0_578", "label": 1208.07, "to": "A0", "weight": 1208.07}, {"from": "EUAcc0_57", "label": 94782.46, "to": "RAcc6", "weight": 94782.46}, {"from": "EUAcc2_71", "label": 2432.15, "to": "A0", "weight": 2432.15}, {"from": "EUAcc0_714", "label": 4255.84, "to": "A0", "weight": 4255.84}, {"from": "EUAcc0_755", "label": 100.03, "to": "A0", "weight": 100.03}, {"from": "EUAcc0_406", "label": 2325.78, "to": "A0", "weight": 2325.78}, {"from": "EUAcc0_395", "label": 2067.27, "to": "A0", "weight": 2067.27}, {"from": "EUAcc0_12", "label": 31905.63, "to": "EUAcc0_339", "weight": 31905.63}, {"from": "EUAcc0_231", "label": 5381.71, "to": "A0", "weight": 5381.71}, {"from": "EUAcc0_530", "label": 1800.46, "to": "A0", "weight": 1800.46}, {"from": "EUAcc0_1232", "label": 2919.98, "to": "A0", "weight": 2919.98}, {"from": "EUAcc1_442", "label": 2425.89, "to": "A0", "weight": 2425.89}, {"from": "EUAcc0_865", "label": 4014.75, "to": "A0", "weight": 4014.75}, {"from": "EUAcc0_308", "label": 507.34, "to": "A0", "weight": 507.34}, {"from": "EUAcc2_40", "label": 26458.14, "to": "EUAcc3_2", "weight": 26458.14}, {"from": "EUAcc3_2", "label": 1438.83, "to": "A0", "weight": 1438.83}, {"from": "EUAcc2_115", "label": 36960.2, "to": "EUAcc1_510", "weight": 36960.2}, {"from": "EUAcc1_318", "label": 8430.84, "to": "EUAcc0_855", "weight": 8430.84}, {"from": "EUAcc0_855", "label": 8346.53, "to": "RAcc2", "weight": 8346.53}, {"from": "EUAcc0_815", "label": 1115.42, "to": "A0", "weight": 1115.42}, {"from": "EUAcc0_303", "label": 3511.19, "to": "A0", "weight": 3511.19}, {"from": "EUAcc0_950", "label": 4303.25, "to": "A0", "weight": 4303.25}, {"from": "EUAcc0_841", "label": 1345.43, "to": "A0", "weight": 1345.43}, {"from": "EUAcc1_194", "label": 56307.62, "to": "EUAcc2_52", "weight": 56307.62}, {"from": "EUAcc0_1178", "label": 1566.54, "to": "A0", "weight": 1566.54}, {"from": "EUAcc1_17", "label": 928.13, "to": "A0", "weight": 928.13}, {"from": "EUAcc0_1027", "label": 1115.85, "to": "A0", "weight": 1115.85}, {"from": "EUAcc0_463", "label": 4289.91, "to": "A0", "weight": 4289.91}, {"from": "EUAcc0_1179", "label": 1559.03, "to": "A0", "weight": 1559.03}, {"from": "EUAcc1_458", "label": 3375.29, "to": "A0", "weight": 3375.29}, {"from": "EUAcc1_422", "label": 1418.5, "to": "A0", "weight": 1418.5}, {"from": "EUAcc0_752", "label": 999.42, "to": "A0", "weight": 999.42}, {"from": "EUAcc0_1101", "label": 1520.2, "to": "A0", "weight": 1520.2}, {"from": "EUAcc0_1185", "label": 1714.73, "to": "A0", "weight": 1714.73}, {"from": "EUAcc2_163", "label": 58244.52, "to": "EUAcc0_93", "weight": 58244.52}, {"from": "EUAcc1_471", "label": 1363.67, "to": "A0", "weight": 1363.67}, {"from": "EUAcc1_284", "label": 82151.66, "to": "EUAcc0_903", "weight": 82151.66}, {"from": "EUAcc0_733", "label": 2499.91, "to": "A0", "weight": 2499.91}, {"from": "EUAcc2_82", "label": 2085.0, "to": "A0", "weight": 2085.0}, {"from": "EUAcc0_895", "label": 1772.5, "to": "A0", "weight": 1772.5}, {"from": "EUAcc3_14", "label": 376117.55, "to": "RAcc5", "weight": 376117.55}, {"from": "EUAcc0_962", "label": 532.85, "to": "A0", "weight": 532.85}, {"from": "EUAcc0_949", "label": 3225.22, "to": "A0", "weight": 3225.22}, {"from": "EUAcc0_516", "label": 1574.81, "to": "A0", "weight": 1574.81}, {"from": "EUAcc0_1050", "label": 7304.37, "to": "A0", "weight": 7304.37}, {"from": "EUAcc0_205", "label": 3590.63, "to": "A0", "weight": 3590.63}, {"from": "EUAcc0_360", "label": 376.11, "to": "A0", "weight": 376.11}, {"from": "EUAcc0_828", "label": 3374.38, "to": "A0", "weight": 3374.38}, {"from": "EUAcc1_307", "label": 422.85, "to": "A0", "weight": 422.85}, {"from": "EUAcc1_406", "label": 4125.43, "to": "A0", "weight": 4125.43}, {"from": "EUAcc0_268", "label": 2799.48, "to": "A0", "weight": 2799.48}, {"from": "EUAcc1_46", "label": 2325.22, "to": "A0", "weight": 2325.22}, {"from": "EUAcc2_166", "label": 69040.09, "to": "EUAcc0_1193", "weight": 69040.09}, {"from": "EUAcc1_22", "label": 150091.51, "to": "RAcc5", "weight": 150091.51}, {"from": "EUAcc0_623", "label": 6872.56, "to": "A0", "weight": 6872.56}, {"from": "EUAcc3_3", "label": 124396.76, "to": "RAcc2", "weight": 124396.76}, {"from": "EUAcc0_47", "label": 136360.07, "to": "EUAcc0_1232", "weight": 136360.07}, {"from": "EUAcc0_233", "label": 14418.36, "to": "EUAcc0_748", "weight": 14418.36}, {"from": "EUAcc0_997", "label": 3575.13, "to": "A0", "weight": 3575.13}]);
// adding nodes and edges to the graph
data = {nodes: nodes, edges: edges};
var options = {
"configure": {
"enabled": false
},
"edges": {
"color": {
"inherit": true
},
"smooth": {
"enabled": true,
"type": "dynamic"
}
},
"interaction": {
"dragNodes": true,
"hideEdgesOnDrag": false,
"hideNodesOnDrag": false
},
"physics": {
"enabled": true,
"stabilization": {
"enabled": true,
"fit": true,
"iterations": 1000,
"onlyDynamicEdges": false,
"updateInterval": 50
}
}
};
network = new vis.Network(container, data, options);
network.on("stabilizationProgress", function(params) {
document.getElementById('loadingBar').removeAttribute("style");
var maxWidth = 496;
var minWidth = 20;
var widthFactor = params.iterations/params.total;
var width = Math.max(minWidth,maxWidth * widthFactor);
document.getElementById('bar').style.width = width + 'px';
document.getElementById('text').innerHTML = Math.round(widthFactor*100) + '%';
});
network.once("stabilizationIterationsDone", function() {
document.getElementById('text').innerHTML = '100%';
document.getElementById('bar').style.width = '496px';
document.getElementById('loadingBar').style.opacity = 0;
// really clean the dom element
setTimeout(function () {document.getElementById('loadingBar').style.display = 'none';}, 500);
});
return network;
}
drawGraph();
</script>
</body>
</html>