-
Notifications
You must be signed in to change notification settings - Fork 8
/
kg.html
459 lines (380 loc) · 188 KB
/
kg.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
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
<html>
<head>
<meta charset="utf-8">
<script>function neighbourhoodHighlight(params) {
// console.log("in nieghbourhoodhighlight");
allNodes = nodes.get({ returnType: "Object" });
// originalNodes = JSON.parse(JSON.stringify(allNodes));
// if something is selected:
if (params.nodes.length > 0) {
highlightActive = true;
var i, j;
var selectedNode = params.nodes[0];
var degrees = 2;
// mark all nodes as hard to read.
for (let nodeId in allNodes) {
// nodeColors[nodeId] = allNodes[nodeId].color;
allNodes[nodeId].color = "rgba(200,200,200,0.5)";
if (allNodes[nodeId].hiddenLabel === undefined) {
allNodes[nodeId].hiddenLabel = allNodes[nodeId].label;
allNodes[nodeId].label = undefined;
}
}
var connectedNodes = network.getConnectedNodes(selectedNode);
var allConnectedNodes = [];
// get the second degree nodes
for (i = 1; i < degrees; i++) {
for (j = 0; j < connectedNodes.length; j++) {
allConnectedNodes = allConnectedNodes.concat(
network.getConnectedNodes(connectedNodes[j])
);
}
}
// all second degree nodes get a different color and their label back
for (i = 0; i < allConnectedNodes.length; i++) {
// allNodes[allConnectedNodes[i]].color = "pink";
allNodes[allConnectedNodes[i]].color = "rgba(150,150,150,0.75)";
if (allNodes[allConnectedNodes[i]].hiddenLabel !== undefined) {
allNodes[allConnectedNodes[i]].label =
allNodes[allConnectedNodes[i]].hiddenLabel;
allNodes[allConnectedNodes[i]].hiddenLabel = undefined;
}
}
// all first degree nodes get their own color and their label back
for (i = 0; i < connectedNodes.length; i++) {
// allNodes[connectedNodes[i]].color = undefined;
allNodes[connectedNodes[i]].color = nodeColors[connectedNodes[i]];
if (allNodes[connectedNodes[i]].hiddenLabel !== undefined) {
allNodes[connectedNodes[i]].label =
allNodes[connectedNodes[i]].hiddenLabel;
allNodes[connectedNodes[i]].hiddenLabel = undefined;
}
}
// the main node gets its own color and its label back.
// allNodes[selectedNode].color = undefined;
allNodes[selectedNode].color = nodeColors[selectedNode];
if (allNodes[selectedNode].hiddenLabel !== undefined) {
allNodes[selectedNode].label = allNodes[selectedNode].hiddenLabel;
allNodes[selectedNode].hiddenLabel = undefined;
}
} else if (highlightActive === true) {
// console.log("highlightActive was true");
// reset all nodes
for (let nodeId in allNodes) {
// allNodes[nodeId].color = "purple";
allNodes[nodeId].color = nodeColors[nodeId];
// delete allNodes[nodeId].color;
if (allNodes[nodeId].hiddenLabel !== undefined) {
allNodes[nodeId].label = allNodes[nodeId].hiddenLabel;
allNodes[nodeId].hiddenLabel = undefined;
}
}
highlightActive = false;
}
// transform the object into an array
var updateArray = [];
if (params.nodes.length > 0) {
for (let nodeId in allNodes) {
if (allNodes.hasOwnProperty(nodeId)) {
// console.log(allNodes[nodeId]);
updateArray.push(allNodes[nodeId]);
}
}
nodes.update(updateArray);
} else {
// console.log("Nothing was selected");
for (let nodeId in allNodes) {
if (allNodes.hasOwnProperty(nodeId)) {
// console.log(allNodes[nodeId]);
// allNodes[nodeId].color = {};
updateArray.push(allNodes[nodeId]);
}
}
nodes.update(updateArray);
}
}
function filterHighlight(params) {
allNodes = nodes.get({ returnType: "Object" });
// if something is selected:
if (params.nodes.length > 0) {
filterActive = true;
let selectedNodes = params.nodes;
// hiding all nodes and saving the label
for (let nodeId in allNodes) {
allNodes[nodeId].hidden = true;
if (allNodes[nodeId].savedLabel === undefined) {
allNodes[nodeId].savedLabel = allNodes[nodeId].label;
allNodes[nodeId].label = undefined;
}
}
for (let i=0; i < selectedNodes.length; i++) {
allNodes[selectedNodes[i]].hidden = false;
if (allNodes[selectedNodes[i]].savedLabel !== undefined) {
allNodes[selectedNodes[i]].label = allNodes[selectedNodes[i]].savedLabel;
allNodes[selectedNodes[i]].savedLabel = undefined;
}
}
} else if (filterActive === true) {
// reset all nodes
for (let nodeId in allNodes) {
allNodes[nodeId].hidden = false;
if (allNodes[nodeId].savedLabel !== undefined) {
allNodes[nodeId].label = allNodes[nodeId].savedLabel;
allNodes[nodeId].savedLabel = undefined;
}
}
filterActive = false;
}
// transform the object into an array
var updateArray = [];
if (params.nodes.length > 0) {
for (let nodeId in allNodes) {
if (allNodes.hasOwnProperty(nodeId)) {
updateArray.push(allNodes[nodeId]);
}
}
nodes.update(updateArray);
} else {
for (let nodeId in allNodes) {
if (allNodes.hasOwnProperty(nodeId)) {
updateArray.push(allNodes[nodeId]);
}
}
nodes.update(updateArray);
}
}
function selectNode(nodes) {
network.selectNodes(nodes);
neighbourhoodHighlight({ nodes: nodes });
return nodes;
}
function selectNodes(nodes) {
network.selectNodes(nodes);
filterHighlight({nodes: nodes});
return nodes;
}
function highlightFilter(filter) {
let selectedNodes = []
let selectedProp = filter['property']
if (filter['item'] === 'node') {
let allNodes = nodes.get({ returnType: "Object" });
for (let nodeId in allNodes) {
if (allNodes[nodeId][selectedProp] && filter['value'].includes((allNodes[nodeId][selectedProp]).toString())) {
selectedNodes.push(nodeId)
}
}
}
else if (filter['item'] === 'edge'){
let allEdges = edges.get({returnType: 'object'});
// check if the selected property exists for selected edge and select the nodes connected to the edge
for (let edge in allEdges) {
if (allEdges[edge][selectedProp] && filter['value'].includes((allEdges[edge][selectedProp]).toString())) {
selectedNodes.push(allEdges[edge]['from'])
selectedNodes.push(allEdges[edge]['to'])
}
}
}
selectNodes(selectedNodes)
}</script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/vis-network/9.1.2/dist/dist/vis-network.min.css" integrity="sha512-WgxfT5LWjfszlPHXRmBWHkV2eceiWTOBvrKCNbdgDYTHrT2AeLCGbF4sZlZw3UMN3WtL0tGUoIAKsu8mllg/XA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/vis-network/9.1.2/dist/vis-network.min.js" integrity="sha512-LnvoEWDFrqGHlHmDD2101OrLcbsfkrzoSpvtSQtxK3RMnRV0eOkhhBN2dXHKRrUU8p2DGRTk35n4O8nWSVe1mQ==" crossorigin="anonymous" referrerpolicy="no-referrer"></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>-->
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-eOJMYsd53ii+scO/bJGFsiCZc+5NDVN2yr8+0RDqr0Ql0h+rP48ckxlpbzKgwra6"
crossorigin="anonymous"
/>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-JEW9xMcG8R+pH31jmWH6WWP0WintQrMb4s7ZOdauHnUtxwoG2vI5DkLtS3qm9Ekf"
crossorigin="anonymous"
></script>
<center>
<h1></h1>
</center>
<style type="text/css">
#mynetwork {
width: 100%;
height: 900px;
background-color: #ffffff;
border: 1px solid lightgray;
position: relative;
float: left;
}
#loadingBar {
position:absolute;
top:0px;
left:0px;
width: 100%;
height: 900px;
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);
}
#config {
float: left;
width: 400px;
height: 600px;
}
</style>
</head>
<body>
<div class="card" style="width: 100%">
<div id="mynetwork" class="card-body"></div>
</div>
<div id="loadingBar">
<div class="outerBorder">
<div id="text">0%</div>
<div id="border">
<div id="bar"></div>
</div>
</div>
</div>
<div id="config"></div>
<script type="text/javascript">
// initialize global variables.
var edges;
var nodes;
var allNodes;
var allEdges;
var nodeColors;
var originalNodes;
var network;
var container;
var options, data;
var filter = {
item : '',
property : '',
value : []
};
// 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([{"color": "hsla(306, 45%, 57%, 0.95)", "id": "chunk_0", "label": "chunk_0", "shape": "dot", "size": 5, "title": "https://aaic.alz.org/releases-2024/processed-red-meat-raises-risk-of-dementia.asp"}, {"color": "hsla(306, 45%, 57%, 0.95)", "id": "chunk_1", "label": "chunk_1", "shape": "dot", "size": 5, "title": "https://aaic.alz.org/releases-2024/processed-red-meat-raises-risk-of-dementia.asp"}, {"color": "hsla(306, 45%, 57%, 0.95)", "id": "chunk_2", "label": "chunk_2", "shape": "dot", "size": 5, "title": "https://aaic.alz.org/releases-2024/processed-red-meat-raises-risk-of-dementia.asp"}, {"color": "hsla(306, 45%, 57%, 0.95)", "id": "chunk_3", "label": "chunk_3", "shape": "dot", "size": 5, "title": "https://aaic.alz.org/releases-2024/processed-red-meat-raises-risk-of-dementia.asp"}, {"color": "hsla(306, 45%, 57%, 0.95)", "id": "chunk_4", "label": "chunk_4", "shape": "dot", "size": 5, "title": "https://aaic.alz.org/releases-2024/processed-red-meat-raises-risk-of-dementia.asp"}, {"color": "hsla(306, 45%, 57%, 0.95)", "id": "chunk_5", "label": "chunk_5", "shape": "dot", "size": 5, "title": "https://aaic.alz.org/releases-2024/processed-red-meat-raises-risk-of-dementia.asp"}, {"color": "hsla(306, 45%, 57%, 0.95)", "id": "chunk_6", "label": "chunk_6", "shape": "dot", "size": 5, "title": "https://aaic.alz.org/releases-2024/processed-red-meat-raises-risk-of-dementia.asp"}, {"color": "hsla(306, 45%, 57%, 0.95)", "id": "chunk_7", "label": "chunk_7", "shape": "dot", "size": 5, "title": "https://aaic.alz.org/releases-2024/processed-red-meat-raises-risk-of-dementia.asp"}, {"color": "hsla(306, 45%, 57%, 0.95)", "id": "chunk_8", "label": "chunk_8", "shape": "dot", "size": 5, "title": "https://aaic.alz.org/releases-2024/processed-red-meat-raises-risk-of-dementia.asp"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 0, "label": "PRESS", "shape": "dot", "size": 14, "title": "PROPN.press"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 2, "label": "study", "shape": "dot", "size": 26, "title": "NOUN.study"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 3, "label": "people", "shape": "dot", "size": 25, "title": "NOUN.people"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 6, "label": "bacon", "shape": "dot", "size": 18, "title": "NOUN.bacon"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 9, "label": "PHILADELPHIA", "shape": "dot", "size": 14, "title": "PROPN.philadelphia"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 11, "label": "bologna", "shape": "dot", "size": 14, "title": "PROPN.bologna"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 16, "label": "dementia", "shape": "dot", "size": 32, "title": "NOUN.dementia"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 19, "label": "Alzheimer", "shape": "dot", "size": 25, "title": "PROPN.alzheimer"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 23, "label": "AAIC", "shape": "dot", "size": 25, "title": "PROPN.aaic"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 26, "label": "nuts", "shape": "dot", "size": 23, "title": "NOUN.nut"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 27, "label": "legumes", "shape": "dot", "size": 18, "title": "NOUN.legume"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 28, "label": "beans", "shape": "dot", "size": 22, "title": "NOUN.bean"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 29, "label": "peas", "shape": "dot", "size": 18, "title": "NOUN.pea"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 30, "label": "processed red meat", "shape": "dot", "size": 24, "title": "VERB.process ADJ.red NOUN.meat"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 31, "label": "Alzheimer\u0027s Association International Conference", "shape": "dot", "size": 8, "title": "PROPN.alzheimer PART.\u0027s PROPN.association PROPN.international PROPN.conference"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 32, "label": "nuts and legumes", "shape": "dot", "size": 14, "title": "NOUN.nut CCONJ.and NOUN.legume"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 33, "label": "beans and peas", "shape": "dot", "size": 11, "title": "NOUN.bean CCONJ.and NOUN.pea"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 34, "label": "Four-decade study", "shape": "dot", "size": 8, "title": "NUM.four PUNCT.- NOUN.decade NOUN.study"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 35, "label": "more than 130,000 people", "shape": "dot", "size": 8, "title": "ADJ.more ADP.than NUM.130,000 NOUN.people"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 36, "label": "the risk", "shape": "dot", "size": 19, "title": "DET.the NOUN.risk"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 37, "label": "your morning bacon", "shape": "dot", "size": 8, "title": "PRON.your NOUN.morning NOUN.bacon"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 38, "label": "ballgame hot dog PHILADELPHIA", "shape": "dot", "size": 8, "title": "NOUN.ballgame ADJ.hot NOUN.dog PROPN.philadelphia"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 39, "label": "2024 People", "shape": "dot", "size": 8, "title": "NUM.2024 SPACE. NOUN.people"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 40, "label": "other processed red meat", "shape": "dot", "size": 8, "title": "ADJ.other VERB.process ADJ.red NOUN.meat"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 41, "label": "about two servings", "shape": "dot", "size": 8, "title": "ADV.about NUM.two NOUN.serving"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 42, "label": "a higher risk", "shape": "dot", "size": 8, "title": "DET.a ADJ.high NOUN.risk"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 43, "label": "a serving", "shape": "dot", "size": 11, "title": "DET.a NOUN.serving"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 44, "label": "about three servings", "shape": "dot", "size": 12, "title": "ADV.about NUM.three NOUN.serving"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 45, "label": "a study", "shape": "dot", "size": 8, "title": "DET.a NOUN.study"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 46, "label": "the Alzheimer\u0027s Association International Conference", "shape": "dot", "size": 14, "title": "DET.the PROPN.alzheimer PART.\u0027s PROPN.association PROPN.international PROPN.conference"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 47, "label": "The findings", "shape": "dot", "size": 16, "title": "DET.the NOUN.finding"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 48, "label": "their risk", "shape": "dot", "size": 11, "title": "PRON.their NOUN.risk"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 49, "label": "Prevention", "shape": "dot", "size": 14, "title": "PROPN.prevention"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 53, "label": "foods", "shape": "dot", "size": 18, "title": "NOUN.food"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 58, "label": "Ph.D.", "shape": "dot", "size": 11, "title": "NOUN.ph.d."}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 66, "label": "ingredient", "shape": "dot", "size": 16, "title": "NOUN.ingredient"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 67, "label": "research", "shape": "dot", "size": 22, "title": "NOUN.research"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 68, "label": "Alzheimer\u0027s disease", "shape": "dot", "size": 12, "title": "PROPN.alzheimer PART.\u0027s NOUN.disease"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 69, "label": "Alzheimer\u0027s Association", "shape": "dot", "size": 21, "title": "PROPN.alzheimer PART.\u0027s PROPN.association"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 70, "label": "cognitive decline", "shape": "dot", "size": 19, "title": "ADJ.cognitive NOUN.decline"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 71, "label": "Heather M. Snyder", "shape": "dot", "size": 8, "title": "PROPN.heather PROPN.m. PROPN.snyder"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 72, "label": "rigorous scientific research", "shape": "dot", "size": 11, "title": "ADJ.rigorous ADJ.scientific NOUN.research"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 73, "label": "all other dementia", "shape": "dot", "size": 14, "title": "DET.all ADJ.other NOUN.dementia"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 74, "label": "a major focus", "shape": "dot", "size": 12, "title": "DET.a ADJ.major NOUN.focus"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 75, "label": "the Alzheimer\u0027s Association", "shape": "dot", "size": 15, "title": "DET.the PROPN.alzheimer PART.\u0027s PROPN.association"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 76, "label": "a healthier diet", "shape": "dot", "size": 12, "title": "DET.a ADJ.healthy NOUN.diet"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 77, "label": "lower the risk", "shape": "dot", "size": 12, "title": "ADJ.low DET.the NOUN.risk"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 78, "label": "Alzheimer\u0027s Association vice president", "shape": "dot", "size": 8, "title": "PROPN.alzheimer PART.\u0027s PROPN.association NOUN.vice NOUN.president"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 79, "label": "medical and scientific relations", "shape": "dot", "size": 8, "title": "ADJ.medical CCONJ.and ADJ.scientific NOUN.relation"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 80, "label": "This large, long-term study", "shape": "dot", "size": 14, "title": "DET.this ADJ.large PUNCT., ADJ.long PUNCT.- NOUN.term NOUN.study"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 81, "label": "a specific example", "shape": "dot", "size": 14, "title": "DET.a ADJ.specific NOUN.example"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 82, "label": "one way", "shape": "dot", "size": 14, "title": "NUM.one NOUN.way"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 83, "label": "an overall heart-healthy diet", "shape": "dot", "size": 8, "title": "DET.an ADJ.overall NOUN.heart PUNCT.- ADJ.healthy NOUN.diet"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 84, "label": "one\u0027s risk", "shape": "dot", "size": 8, "title": "PRON.one PART.\u0027s NOUN.risk"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 85, "label": "a single food", "shape": "dot", "size": 11, "title": "DET.a ADJ.single NOUN.food"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 86, "label": "fact", "shape": "dot", "size": 11, "title": "NOUN.fact"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 88, "label": "researchers", "shape": "dot", "size": 21, "title": "NOUN.researcher"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 89, "label": "participants", "shape": "dot", "size": 15, "title": "NOUN.participant"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 97, "label": "Alzheimer\u0027s", "shape": "dot", "size": 11, "title": "PROPN.alzheimer PART.\u0027s"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 98, "label": "red meat", "shape": "dot", "size": 8, "title": "ADJ.red NOUN.meat"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 99, "label": "one food", "shape": "dot", "size": 8, "title": "NUM.one NOUN.food"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 100, "label": "a significant beneficial effect", "shape": "dot", "size": 8, "title": "DET.a ADJ.significant ADJ.beneficial NOUN.effect"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 101, "label": "a disease", "shape": "dot", "size": 8, "title": "DET.a NOUN.disease"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 102, "label": "The researchers", "shape": "dot", "size": 15, "title": "DET.the NOUN.researcher"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 103, "label": "more than 130,000 participants", "shape": "dot", "size": 8, "title": "ADJ.more ADP.than NUM.130,000 NOUN.participant"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 104, "label": "the Nurses\u0027 Health Study and Health Professionals Follow-Up Study", "shape": "dot", "size": 8, "title": "DET.the PROPN.nurses PART.\u0027 PROPN.health PROPN.study CCONJ.and PROPN.health PROPN.professionals VERB.follow PUNCT.- ADP.up NOUN.study"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 105, "label": "up to 43 years", "shape": "dot", "size": 8, "title": "ADP.up PART.to NUM.43 NOUN.year"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 106, "label": "the association", "shape": "dot", "size": 8, "title": "DET.the NOUN.association"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 107, "label": "11,173 dementia cases", "shape": "dot", "size": 11, "title": "NUM.11,173 NOUN.dementia NOUN.case"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 112, "label": "sausage", "shape": "dot", "size": 14, "title": "NOUN.sausage"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 113, "label": "kielbasa", "shape": "dot", "size": 11, "title": "NOUN.kielbasa"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 116, "label": "salami", "shape": "dot", "size": 14, "title": "NOUN.salami"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 118, "label": "peanut", "shape": "dot", "size": 16, "title": "NOUN.peanut"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 121, "label": "walnuts", "shape": "dot", "size": 14, "title": "NOUN.walnut"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 126, "label": "lentils", "shape": "dot", "size": 11, "title": "NOUN.lentil"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 129, "label": "tofu", "shape": "dot", "size": 19, "title": "NOUN.tofu"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 131, "label": "time", "shape": "dot", "size": 16, "title": "NOUN.time"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 134, "label": "hot dog", "shape": "dot", "size": 8, "title": "ADJ.hot NOUN.dog"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 135, "label": "sausage or kielbasa", "shape": "dot", "size": 8, "title": "NOUN.sausage CCONJ.or NOUN.kielbasa"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 136, "label": "processed meat", "shape": "dot", "size": 8, "title": "VERB.process NOUN.meat"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 137, "label": "peanut butter", "shape": "dot", "size": 12, "title": "NOUN.peanut NOUN.butter"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 138, "label": "soy milk", "shape": "dot", "size": 12, "title": "NOUN.soy NOUN.milk"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 139, "label": "string beans", "shape": "dot", "size": 12, "title": "NOUN.string NOUN.bean"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 140, "label": "beans or lentils", "shape": "dot", "size": 8, "title": "NOUN.bean CCONJ.or NOUN.lentil"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 141, "label": "peas or lima beans", "shape": "dot", "size": 8, "title": "NOUN.pea CCONJ.or NOUN.lima NOUN.bean"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 142, "label": "soy protein", "shape": "dot", "size": 8, "title": "NOUN.soy NOUN.protein"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 143, "label": "AAIC 2024", "shape": "dot", "size": 11, "title": "PROPN.aaic NUM.2024"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 144, "label": "the participants\u0027 diet", "shape": "dot", "size": 8, "title": "DET.the NOUN.participant PART.\u0027 NOUN.diet"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 145, "label": "their answers", "shape": "dot", "size": 8, "title": "PRON.their NOUN.answer"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 146, "label": "food-frequency questionnaires", "shape": "dot", "size": 8, "title": "NOUN.food PUNCT.- NOUN.frequency NOUN.questionnaire"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 147, "label": "two slices", "shape": "dot", "size": 8, "title": "NUM.two NOUN.slice"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 148, "label": "1 tablespoon", "shape": "dot", "size": 8, "title": "NUM.1 NOUN.tablespoon"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 149, "label": "other nuts", "shape": "dot", "size": 12, "title": "ADJ.other NOUN.nut"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 150, "label": "1 ounce", "shape": "dot", "size": 8, "title": "NUM.1 NOUN.ounce"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 151, "label": "8-ounce glass", "shape": "dot", "size": 8, "title": "NUM.8 PUNCT.- NOUN.ounce NOUN.glass"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 152, "label": "lima beans", "shape": "dot", "size": 8, "title": "NOUN.lima NOUN.bean"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 153, "label": "1/2 cup", "shape": "dot", "size": 8, "title": "NUM.1/2 NOUN.cup"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 154, "label": "the first time", "shape": "dot", "size": 11, "title": "DET.the ADJ.first NOUN.time"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 155, "label": "the study", "shape": "dot", "size": 19, "title": "DET.the NOUN.study"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 156, "label": "1/4 servings", "shape": "dot", "size": 11, "title": "NUM.1/4 NOUN.serving"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 157, "label": "a 14% higher risk", "shape": "dot", "size": 11, "title": "DET.a NUM.14 NOUN.% ADJ.high NOUN.risk"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 158, "label": "a serving daily", "shape": "dot", "size": 11, "title": "DET.a VERB.serve NOUN.daily"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 161, "label": "results", "shape": "dot", "size": 14, "title": "NOUN.result"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 166, "label": "function", "shape": "dot", "size": 17, "title": "NOUN.function"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 168, "label": "Li", "shape": "dot", "size": 18, "title": "PROPN.li"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 169, "label": "M.H.S.", "shape": "dot", "size": 14, "title": "PROPN.m.h.s."}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 175, "label": "Brigham", "shape": "dot", "size": 14, "title": "PROPN.brigham"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 178, "label": "author", "shape": "dot", "size": 14, "title": "NOUN.author"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 186, "label": "Boston", "shape": "dot", "size": 18, "title": "PROPN.boston"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 187, "label": "cognitive aging", "shape": "dot", "size": 8, "title": "ADJ.cognitive NOUN.aging"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 188, "label": "global cognition", "shape": "dot", "size": 8, "title": "ADJ.global NOUN.cognition"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 189, "label": "Study results", "shape": "dot", "size": 14, "title": "NOUN.study NOUN.result"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 190, "label": "Yuhan Li", "shape": "dot", "size": 14, "title": "PROPN.yuhan PROPN.li"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 191, "label": "Brigham and Women\u0027s Hospital", "shape": "dot", "size": 11, "title": "PROPN.brigham CCONJ.and PROPN.women PART.\u0027s PROPN.hospital"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 192, "label": "Harvard T.H. Chan School of Public Health", "shape": "dot", "size": 11, "title": "PROPN.harvard PROPN.t.h. PROPN.chan PROPN.school ADP.of PROPN.public PROPN.health"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 193, "label": "one daily serving", "shape": "dot", "size": 15, "title": "NUM.one ADV.daily NOUN.serving"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 194, "label": "a 20% lower risk", "shape": "dot", "size": 8, "title": "DET.a NUM.20 NOUN.% ADJ.low NOUN.risk"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 195, "label": "1.37 fewer years", "shape": "dot", "size": 8, "title": "NUM.1.37 ADJ.few NOUN.year"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 196, "label": "a relationship", "shape": "dot", "size": 14, "title": "DET.a NOUN.relationship"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 197, "label": "meat consumption", "shape": "dot", "size": 14, "title": "NOUN.meat NOUN.consumption"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 198, "label": "a closer look", "shape": "dot", "size": 14, "title": "DET.a ADJ.close NOUN.look"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 199, "label": "different amounts", "shape": "dot", "size": 14, "title": "ADJ.different NOUN.amount"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 200, "label": "both processed and unprocessed meat", "shape": "dot", "size": 14, "title": "DET.both VERB.process CCONJ.and ADJ.unprocessed NOUN.meat"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 201, "label": "cognitive risk", "shape": "dot", "size": 14, "title": "ADJ.cognitive NOUN.risk"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 202, "label": "research assistant", "shape": "dot", "size": 11, "title": "NOUN.research NOUN.assistant"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 203, "label": "the Channing Division", "shape": "dot", "size": 11, "title": "DET.the PROPN.channing PROPN.division"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 204, "label": "Network Medicine", "shape": "dot", "size": 11, "title": "PROPN.network PROPN.medicine"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 205, "label": "Women\u0027s Hospital", "shape": "dot", "size": 11, "title": "PROPN.women PART.\u0027s PROPN.hospital"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 206, "label": "she", "shape": "dot", "size": 11, "title": "PRON.she"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 207, "label": "the Harvard T.H. Chan School", "shape": "dot", "size": 11, "title": "DET.the PROPN.harvard PROPN.t.h. PROPN.chan PROPN.school"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 208, "label": "Public Health", "shape": "dot", "size": 11, "title": "PROPN.public PROPN.health"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 209, "label": "the Channing Division of Network Medicine", "shape": "dot", "size": 11, "title": "DET.the PROPN.channing PROPN.division ADP.of PROPN.network PROPN.medicine"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 210, "label": "the Harvard T.H. Chan School of Public Health", "shape": "dot", "size": 11, "title": "DET.the PROPN.harvard PROPN.t.h. PROPN.chan PROPN.school ADP.of PROPN.public PROPN.health"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 214, "label": "recommendations", "shape": "dot", "size": 14, "title": "NOUN.recommendation"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 215, "label": "brain", "shape": "dot", "size": 18, "title": "NOUN.brain"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 217, "label": "cancer", "shape": "dot", "size": 18, "title": "NOUN.cancer"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 218, "label": "diabetes", "shape": "dot", "size": 17, "title": "NOUN.diabetes"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 221, "label": "nitrites", "shape": "dot", "size": 16, "title": "NOUN.nitrite"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 222, "label": "preservatives", "shape": "dot", "size": 16, "title": "NOUN.preservative"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 223, "label": "sodium", "shape": "dot", "size": 14, "title": "NOUN.sodium"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 224, "label": "Processed red meat", "shape": "dot", "size": 15, "title": "ADJ.processed ADJ.red NOUN.meat"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 225, "label": "heart disease", "shape": "dot", "size": 15, "title": "NOUN.heart NOUN.disease"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 226, "label": "a long period", "shape": "dot", "size": 12, "title": "DET.a ADJ.long NOUN.period"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 227, "label": "a significant risk factor", "shape": "dot", "size": 14, "title": "DET.a ADJ.significant NOUN.risk NOUN.factor"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 228, "label": "Dietary guidelines", "shape": "dot", "size": 12, "title": "ADJ.dietary NOUN.guideline"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 229, "label": "brain health", "shape": "dot", "size": 12, "title": "NOUN.brain NOUN.health"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 230, "label": "the brain", "shape": "dot", "size": 14, "title": "DET.the NOUN.brain"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 231, "label": "high levels", "shape": "dot", "size": 14, "title": "ADJ.high NOUN.level"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 232, "label": "harmful substances", "shape": "dot", "size": 14, "title": "ADJ.harmful NOUN.substance"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 233, "label": "hamburger", "shape": "dot", "size": 11, "title": "NOUN.hamburger"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 234, "label": "steak", "shape": "dot", "size": 11, "title": "NOUN.steak"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 237, "label": "U.S.", "shape": "dot", "size": 14, "title": "PROPN.u.s."}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 238, "label": "Brain", "shape": "dot", "size": 11, "title": "PROPN.brain"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 246, "label": "volunteers", "shape": "dot", "size": 11, "title": "NOUN.volunteer"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 250, "label": "unprocessed red meat", "shape": "dot", "size": 11, "title": "ADJ.unprocessed ADJ.red NOUN.meat"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 251, "label": "pork chops", "shape": "dot", "size": 8, "title": "NOUN.pork NOUN.chop"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 252, "label": "older adults", "shape": "dot", "size": 8, "title": "ADJ.old NOUN.adult"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 253, "label": "a significant association", "shape": "dot", "size": 8, "title": "DET.a ADJ.significant NOUN.association"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 254, "label": "The Alzheimer\u0027s Association U.S. Study", "shape": "dot", "size": 8, "title": "DET.the PROPN.alzheimer PART.\u0027s PROPN.association PROPN.u.s. NOUN.study"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 255, "label": "Brain Health", "shape": "dot", "size": 8, "title": "PROPN.brain PROPN.health"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 256, "label": "Lifestyle Intervention", "shape": "dot", "size": 8, "title": "PROPN.lifestyle NOUN.intervention"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 257, "label": "Risk (U.S. POINTER", "shape": "dot", "size": 8, "title": "PROPN.risk PUNCT.( PROPN.u.s. PROPN.pointer"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 258, "label": "a two-year clinical trial", "shape": "dot", "size": 8, "title": "DET.a NUM.two PUNCT.- NOUN.year ADJ.clinical NOUN.trial"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 259, "label": "lifestyle interventions", "shape": "dot", "size": 8, "title": "NOUN.lifestyle NOUN.intervention"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 260, "label": "many risk factors", "shape": "dot", "size": 8, "title": "ADJ.many NOUN.risk NOUN.factor"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 261, "label": "cognitive function", "shape": "dot", "size": 8, "title": "ADJ.cognitive NOUN.function"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 262, "label": "increased risk", "shape": "dot", "size": 8, "title": "VERB.increase NOUN.risk"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 263, "label": "More than 2,000 volunteers", "shape": "dot", "size": 8, "title": "ADJ.more ADP.than NUM.2,000 NOUN.volunteer"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 264, "label": "five study sites", "shape": "dot", "size": 8, "title": "NUM.five NOUN.study NOUN.site"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 265, "label": "the world\u0027s largest gathering", "shape": "dot", "size": 11, "title": "DET.the NOUN.world PART.\u0027s ADJ.large NOUN.gathering"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 266, "label": "the world", "shape": "dot", "size": 11, "title": "DET.the NOUN.world"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 267, "label": "other dementias", "shape": "dot", "size": 11, "title": "ADJ.other NOUN.dementia"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 273, "label": "AAIC", "shape": "dot", "size": 11, "title": "NOUN.aaic"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 278, "label": "AAIC24", "shape": "dot", "size": 11, "title": "NOUN.aaic24"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 282, "label": "support", "shape": "dot", "size": 14, "title": "NOUN.support"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 288, "label": "alz.org", "shape": "dot", "size": 11, "title": "NOUN.alz.org"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 289, "label": "a part", "shape": "dot", "size": 8, "title": "DET.a NOUN.part"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 290, "label": "the Alzheimer\u0027s Association\u0027s research program", "shape": "dot", "size": 8, "title": "DET.the PROPN.alzheimer PART.\u0027s PROPN.association PART.\u0027s NOUN.research NOUN.program"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 291, "label": "a catalyst", "shape": "dot", "size": 8, "title": "DET.a NOUN.catalyst"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 292, "label": "new knowledge", "shape": "dot", "size": 8, "title": "ADJ.new NOUN.knowledge"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 293, "label": "a vital, collegial research community", "shape": "dot", "size": 8, "title": "DET.a ADJ.vital PUNCT., ADJ.collegial NOUN.research NOUN.community"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 294, "label": "alz.org AAIC", "shape": "dot", "size": 8, "title": "ADJ.alz.org NOUN.aaic"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 295, "label": "#AAIC24", "shape": "dot", "size": 8, "title": "SYM.# NOUN.aaic24"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 296, "label": "the Alzheimer\u0027s Association The Alzheimer\u0027s Association", "shape": "dot", "size": 8, "title": "DET.the PROPN.alzheimer PART.\u0027s PROPN.association PROPN.the PROPN.alzheimer PART.\u0027s PROPN.association"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 297, "label": "a worldwide voluntary health organization", "shape": "dot", "size": 8, "title": "DET.a ADJ.worldwide ADJ.voluntary NOUN.health NOUN.organization"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 298, "label": "Alzheimer\u0027s care", "shape": "dot", "size": 8, "title": "PROPN.alzheimer PART.\u0027s NOUN.care"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 299, "label": "Our mission", "shape": "dot", "size": 8, "title": "PRON.our NOUN.mission"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 300, "label": "the way", "shape": "dot", "size": 8, "title": "DET.the NOUN.way"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 301, "label": "global research", "shape": "dot", "size": 8, "title": "ADJ.global NOUN.research"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 302, "label": "risk reduction", "shape": "dot", "size": 8, "title": "NOUN.risk NOUN.reduction"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 303, "label": "early detection", "shape": "dot", "size": 8, "title": "ADJ.early NOUN.detection"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 304, "label": "quality care", "shape": "dot", "size": 8, "title": "NOUN.quality NOUN.care"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 305, "label": "Our vision", "shape": "dot", "size": 8, "title": "PRON.our NOUN.vision"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 306, "label": "a world", "shape": "dot", "size": 8, "title": "DET.a NOUN.world"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 308, "label": "Contacts", "shape": "dot", "size": 12, "title": "NOUN.contact"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 338, "label": "cookies", "shape": "dot", "size": 11, "title": "NOUN.cookie"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 340, "label": "options", "shape": "dot", "size": 11, "title": "NOUN.option"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 344, "label": "Media Contacts", "shape": "dot", "size": 8, "title": "NOUN.medium NOUN.contact"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 345, "label": "A Alzheimer\u0027s Association Media Line", "shape": "dot", "size": 8, "title": "PROPN.a PROPN.alzheimer PART.\u0027s PROPN.association PROPN.media NOUN.line"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 346, "label": "[email protected] AAIC 2024 Press Office", "shape": "dot", "size": 8, "title": "[email protected] PROPN.aaic NUM.2024 PROPN.press PROPN.office"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 347, "label": "AAIC AAIC Scientific Program Committee Awards", "shape": "dot", "size": 8, "title": "PROPN.aaic PROPN.aaic PROPN.scientific PROPN.program PROPN.committee PROPN.awards"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 348, "label": "The Student Experience", "shape": "dot", "size": 8, "title": "DET.the NOUN.student NOUN.experience"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 349, "label": "Us Future Scientific Meetings", "shape": "dot", "size": 8, "title": "NOUN.us PROPN.future PROPN.scientific NOUN.meeting"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 350, "label": "Abstract Submission Overview", "shape": "dot", "size": 8, "title": "PROPN.abstract PROPN.submission NOUN.overview"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 351, "label": "Questions Submission Guidelines", "shape": "dot", "size": 8, "title": "PROPN.questions PROPN.submission PROPN.guidelines"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 352, "label": "your experience", "shape": "dot", "size": 8, "title": "PRON.your NOUN.experience"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 353, "label": "this website", "shape": "dot", "size": 8, "title": "DET.this NOUN.website"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 354, "label": "your personal data", "shape": "dot", "size": 8, "title": "PRON.your ADJ.personal NOUN.datum"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 355, "label": "our Privacy Policy", "shape": "dot", "size": 8, "title": "PRON.our PROPN.privacy PROPN.policy"}, {"color": "hsla(306, 45%, 57%, 0.95)", "id": "chunk_9", "label": "chunk_9", "shape": "dot", "size": 5, "title": "https://www.theguardian.com/society/article/2024/jul/31/eating-processed-red-meat-could-increase-risk-of-dementia-study-finds"}, {"color": "hsla(306, 45%, 57%, 0.95)", "id": "chunk_10", "label": "chunk_10", "shape": "dot", "size": 5, "title": "https://www.theguardian.com/society/article/2024/jul/31/eating-processed-red-meat-could-increase-risk-of-dementia-study-finds"}, {"color": "hsla(306, 45%, 57%, 0.95)", "id": "chunk_11", "label": "chunk_11", "shape": "dot", "size": 5, "title": "https://www.theguardian.com/society/article/2024/jul/31/eating-processed-red-meat-could-increase-risk-of-dementia-study-finds"}, {"color": "hsla(306, 45%, 57%, 0.95)", "id": "chunk_12", "label": "chunk_12", "shape": "dot", "size": 5, "title": "https://www.theguardian.com/society/article/2024/jul/31/eating-processed-red-meat-could-increase-risk-of-dementia-study-finds"}, {"color": "hsla(306, 45%, 57%, 0.95)", "id": "chunk_13", "label": "chunk_13", "shape": "dot", "size": 5, "title": "https://www.theguardian.com/society/article/2024/jul/31/eating-processed-red-meat-could-increase-risk-of-dementia-study-finds"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 356, "label": "US", "shape": "dot", "size": 19, "title": "PROPN.us"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 4, "label": "risk", "shape": "dot", "size": 21, "title": "NOUN.risk"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 357, "label": "type", "shape": "dot", "size": 11, "title": "NOUN.type"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 52, "label": "diet", "shape": "dot", "size": 14, "title": "NOUN.diet"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 360, "label": "experts", "shape": "dot", "size": 14, "title": "NOUN.expert"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 363, "label": "type 2 diabetes", "shape": "dot", "size": 8, "title": "NOUN.type NUM.2 NOUN.diabetes"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 364, "label": "Alzheimer\u0027s Association international conference", "shape": "dot", "size": 8, "title": "PROPN.alzheimer PART.\u0027s PROPN.association ADJ.international NOUN.conference"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 365, "label": "US researchers", "shape": "dot", "size": 11, "title": "PROPN.us NOUN.researcher"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 366, "label": "potential link", "shape": "dot", "size": 8, "title": "ADJ.potential NOUN.link"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 367, "label": "130,000 people", "shape": "dot", "size": 8, "title": "NUM.130,000 NOUN.people"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 368, "label": "four decades", "shape": "dot", "size": 11, "title": "NUM.four NOUN.decade"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 369, "label": "a large study", "shape": "dot", "size": 8, "title": "DET.a ADJ.large NOUN.study"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 370, "label": "more than 100,000 people", "shape": "dot", "size": 8, "title": "ADJ.more ADP.than NUM.100,000 NOUN.people"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 371, "label": "2 diabetes", "shape": "dot", "size": 8, "title": "NUM.2 NOUN.diabetes"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 372, "label": "a potential link", "shape": "dot", "size": 8, "title": "DET.a ADJ.potential NOUN.link"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 373, "label": "healthier foods", "shape": "dot", "size": 8, "title": "ADJ.healthy NOUN.food"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 374, "label": "the Alzheimer\u0027s Association international conference", "shape": "dot", "size": 8, "title": "DET.the PROPN.alzheimer PART.\u0027s PROPN.association ADJ.international NOUN.conference"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 375, "label": "the US", "shape": "dot", "size": 12, "title": "DET.the PROPN.us"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 376, "label": "The number", "shape": "dot", "size": 8, "title": "DET.the NOUN.number"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 377, "label": "a focus", "shape": "dot", "size": 8, "title": "DET.a NOUN.focus"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 378, "label": "the latest research", "shape": "dot", "size": 11, "title": "DET.the ADJ.late NOUN.research"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 379, "label": "the health", "shape": "dot", "size": 11, "title": "DET.the NOUN.health"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 380, "label": "130,000 nurses", "shape": "dot", "size": 11, "title": "NUM.130,000 NOUN.nurse"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 381, "label": "other health workers", "shape": "dot", "size": 11, "title": "ADJ.other NOUN.health NOUN.worker"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 341, "label": "data", "shape": "dot", "size": 11, "title": "NOUN.datum"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 382, "label": "hotdogs", "shape": "dot", "size": 11, "title": "NOUN.hotdog"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 383, "label": "latest research", "shape": "dot", "size": 8, "title": "ADJ.late NOUN.research"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 384, "label": "sandwich meat", "shape": "dot", "size": 8, "title": "NOUN.sandwich NOUN.meat"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 385, "label": "43 years", "shape": "dot", "size": 8, "title": "NUM.43 NOUN.year"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 386, "label": "their diet", "shape": "dot", "size": 8, "title": "PRON.their NOUN.diet"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 387, "label": "every 2 to 5 years", "shape": "dot", "size": 8, "title": "DET.every NUM.2 PART.to NUM.5 NOUN.year"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 388, "label": "The participants", "shape": "dot", "size": 8, "title": "DET.the NOUN.participant"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 389, "label": "other sandwich meat", "shape": "dot", "size": 8, "title": "ADJ.other NOUN.sandwich NOUN.meat"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 390, "label": "their consumption", "shape": "dot", "size": 8, "title": "PRON.their NOUN.consumption"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 391, "label": "More than 11,000 cases", "shape": "dot", "size": 8, "title": "ADJ.more ADP.than NUM.11,000 NOUN.case"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 392, "label": "the follow-up period", "shape": "dot", "size": 8, "title": "DET.the VERB.follow PUNCT.- ADP.up NOUN.period"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 393, "label": "two servings", "shape": "dot", "size": 8, "title": "NUM.two NOUN.serving"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 394, "label": "14%", "shape": "dot", "size": 8, "title": "NUM.14 NOUN.%"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 395, "label": "a daily serving", "shape": "dot", "size": 11, "title": "DET.a ADJ.daily NOUN.serving"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 396, "label": "23%", "shape": "dot", "size": 11, "title": "NUM.23 NOUN.%"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 402, "label": "Dr Yuhan Li", "shape": "dot", "size": 8, "title": "PROPN.dr PROPN.yuhan PROPN.li"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 403, "label": "Brigham and Women", "shape": "dot", "size": 8, "title": "PROPN.brigham CCONJ.and PROPN.women"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 404, "label": "Harvard TH Chan school of public health", "shape": "dot", "size": 8, "title": "PROPN.harvard PROPN.th PROPN.chan NOUN.school ADP.of ADJ.public NOUN.health"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 405, "label": "The lead author", "shape": "dot", "size": 8, "title": "DET.the ADJ.lead NOUN.author"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 406, "label": "an assistant professor", "shape": "dot", "size": 8, "title": "DET.an ADJ.assistant NOUN.professor"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 407, "label": "the Brigham and Women\u0027s hospital", "shape": "dot", "size": 8, "title": "DET.the PROPN.brigham CCONJ.and PROPN.women PART.\u0027s NOUN.hospital"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 408, "label": "the Harvard TH Chan school", "shape": "dot", "size": 8, "title": "DET.the PROPN.harvard PROPN.th PROPN.chan NOUN.school"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 409, "label": "public health", "shape": "dot", "size": 8, "title": "ADJ.public NOUN.health"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 413, "label": "UK", "shape": "dot", "size": 14, "title": "PROPN.uk"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 417, "label": "caution", "shape": "dot", "size": 14, "title": "NOUN.caution"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 418, "label": "cause", "shape": "dot", "size": 14, "title": "NOUN.cause"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 87, "label": "effect", "shape": "dot", "size": 14, "title": "NOUN.effect"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 419, "label": "Dr Heather Snyder", "shape": "dot", "size": 8, "title": "PROPN.dr PROPN.heather PROPN.snyder"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 420, "label": "Dr Richard Oakley", "shape": "dot", "size": 11, "title": "PROPN.dr PROPN.richard PROPN.oakley"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 421, "label": "Alzheimer\u0027s Society", "shape": "dot", "size": 11, "title": "PROPN.alzheimer PART.\u0027s PROPN.society"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 422, "label": "the Alzheimer\u0027s Society", "shape": "dot", "size": 11, "title": "DET.the PROPN.alzheimer PART.\u0027s PROPN.society"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 423, "label": "the UK", "shape": "dot", "size": 11, "title": "DET.the PROPN.uk"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 424, "label": "this study", "shape": "dot", "size": 11, "title": "DET.this NOUN.study"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 425, "label": "more people", "shape": "dot", "size": 11, "title": "ADJ.more NOUN.people"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 426, "label": "worse memory", "shape": "dot", "size": 11, "title": "ADJ.bad NOUN.memory"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 427, "label": "thinking skills", "shape": "dot", "size": 11, "title": "NOUN.thinking NOUN.skill"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 428, "label": "he", "shape": "dot", "size": 11, "title": "PRON.he"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 429, "label": "the research", "shape": "dot", "size": 11, "title": "DET.the NOUN.research"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 430, "label": "only an association", "shape": "dot", "size": 11, "title": "ADV.only DET.an NOUN.association"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 431, "label": "Heather Snyder", "shape": "dot", "size": 8, "title": "PROPN.heather PROPN.snyder"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 432, "label": "Richard Oakley", "shape": "dot", "size": 11, "title": "PROPN.richard PROPN.oakley"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 434, "label": "unhealthy habits", "shape": "dot", "size": 8, "title": "ADJ.unhealthy NOUN.habit"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 435, "label": "this", "shape": "dot", "size": 8, "title": "PRON.this"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 436, "label": "developing dementia", "shape": "dot", "size": 8, "title": "VERB.develop NOUN.dementia"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 437, "label": "other unhealthy habits", "shape": "dot", "size": 8, "title": "ADJ.other ADJ.unhealthy NOUN.habit"}, {"color": "hsla(65, 46%, 58%, 0.80)", "id": 438, "label": "dementia risk", "shape": "dot", "size": 8, "title": "NOUN.dementia NOUN.risk"}]);
edges = new vis.DataSet([{"from": "chunk_0", "title": "WITHIN", "to": 0}, {"from": "chunk_0", "title": "WITHIN", "to": 9}, {"from": "chunk_0", "title": "WITHIN", "to": 31}, {"from": "chunk_0", "title": "WITHIN", "to": 34}, {"from": "chunk_0", "title": "WITHIN", "to": 35}, {"from": "chunk_0", "title": "WITHIN", "to": 37}, {"from": "chunk_0", "title": "WITHIN", "to": 38}, {"from": "chunk_0", "title": "WITHIN", "to": 39}, {"from": "chunk_0", "title": "WITHIN", "to": 40}, {"from": "chunk_0", "title": "WITHIN", "to": 41}, {"from": "chunk_0", "title": "WITHIN", "to": 42}, {"from": "chunk_0", "title": "WITHIN", "to": 44}, {"from": "chunk_0", "title": "WITHIN", "to": 45}, {"from": "chunk_1", "title": "WITHIN", "to": 33}, {"from": "chunk_1", "title": "WITHIN", "to": 48}, {"from": "chunk_1", "title": "WITHIN", "to": 49}, {"from": "chunk_1", "title": "WITHIN", "to": 53}, {"from": "chunk_1", "title": "WITHIN", "to": 58}, {"from": "chunk_1", "title": "WITHIN", "to": 68}, {"from": "chunk_1", "title": "WITHIN", "to": 71}, {"from": "chunk_1", "title": "WITHIN", "to": 74}, {"from": "chunk_1", "title": "WITHIN", "to": 75}, {"from": "chunk_1", "title": "WITHIN", "to": 76}, {"from": "chunk_1", "title": "WITHIN", "to": 77}, {"from": "chunk_1", "title": "WITHIN", "to": 78}, {"from": "chunk_1", "title": "WITHIN", "to": 79}, {"from": "chunk_1", "title": "WITHIN", "to": 80}, {"from": "chunk_1", "title": "WITHIN", "to": 81}, {"from": "chunk_1", "title": "WITHIN", "to": 82}, {"from": "chunk_1", "title": "WITHIN", "to": 83}, {"from": "chunk_1", "title": "WITHIN", "to": 84}, {"from": "chunk_2", "title": "WITHIN", "to": 66}, {"from": "chunk_2", "title": "WITHIN", "to": 72}, {"from": "chunk_2", "title": "WITHIN", "to": 85}, {"from": "chunk_2", "title": "WITHIN", "to": 86}, {"from": "chunk_2", "title": "WITHIN", "to": 97}, {"from": "chunk_2", "title": "WITHIN", "to": 98}, {"from": "chunk_2", "title": "WITHIN", "to": 99}, {"from": "chunk_2", "title": "WITHIN", "to": 100}, {"from": "chunk_2", "title": "WITHIN", "to": 101}, {"from": "chunk_2", "title": "WITHIN", "to": 103}, {"from": "chunk_2", "title": "WITHIN", "to": 104}, {"from": "chunk_2", "title": "WITHIN", "to": 105}, {"from": "chunk_2", "title": "WITHIN", "to": 106}, {"from": "chunk_3", "title": "WITHIN", "to": 6}, {"from": "chunk_3", "title": "WITHIN", "to": 11}, {"from": "chunk_3", "title": "WITHIN", "to": 28}, {"from": "chunk_3", "title": "WITHIN", "to": 29}, {"from": "chunk_3", "title": "WITHIN", "to": 43}, {"from": "chunk_3", "title": "WITHIN", "to": 89}, {"from": "chunk_3", "title": "WITHIN", "to": 107}, {"from": "chunk_3", "title": "WITHIN", "to": 112}, {"from": "chunk_3", "title": "WITHIN", "to": 113}, {"from": "chunk_3", "title": "WITHIN", "to": 116}, {"from": "chunk_3", "title": "WITHIN", "to": 118}, {"from": "chunk_3", "title": "WITHIN", "to": 121}, {"from": "chunk_3", "title": "WITHIN", "to": 126}, {"from": "chunk_3", "title": "WITHIN", "to": 129}, {"from": "chunk_3", "title": "WITHIN", "to": 134}, {"from": "chunk_3", "title": "WITHIN", "to": 135}, {"from": "chunk_3", "title": "WITHIN", "to": 136}, {"from": "chunk_3", "title": "WITHIN", "to": 137}, {"from": "chunk_3", "title": "WITHIN", "to": 138}, {"from": "chunk_3", "title": "WITHIN", "to": 139}, {"from": "chunk_3", "title": "WITHIN", "to": 140}, {"from": "chunk_3", "title": "WITHIN", "to": 141}, {"from": "chunk_3", "title": "WITHIN", "to": 142}, {"from": "chunk_3", "title": "WITHIN", "to": 144}, {"from": "chunk_3", "title": "WITHIN", "to": 145}, {"from": "chunk_3", "title": "WITHIN", "to": 146}, {"from": "chunk_3", "title": "WITHIN", "to": 147}, {"from": "chunk_3", "title": "WITHIN", "to": 148}, {"from": "chunk_3", "title": "WITHIN", "to": 149}, {"from": "chunk_3", "title": "WITHIN", "to": 150}, {"from": "chunk_3", "title": "WITHIN", "to": 151}, {"from": "chunk_3", "title": "WITHIN", "to": 152}, {"from": "chunk_3", "title": "WITHIN", "to": 153}, {"from": "chunk_4", "title": "WITHIN", "to": 2}, {"from": "chunk_4", "title": "WITHIN", "to": 26}, {"from": "chunk_4", "title": "WITHIN", "to": 27}, {"from": "chunk_4", "title": "WITHIN", "to": 32}, {"from": "chunk_4", "title": "WITHIN", "to": 47}, {"from": "chunk_4", "title": "WITHIN", "to": 143}, {"from": "chunk_4", "title": "WITHIN", "to": 154}, {"from": "chunk_4", "title": "WITHIN", "to": 156}, {"from": "chunk_4", "title": "WITHIN", "to": 157}, {"from": "chunk_4", "title": "WITHIN", "to": 158}, {"from": "chunk_4", "title": "WITHIN", "to": 187}, {"from": "chunk_4", "title": "WITHIN", "to": 188}, {"from": "chunk_4", "title": "WITHIN", "to": 193}, {"from": "chunk_4", "title": "WITHIN", "to": 194}, {"from": "chunk_4", "title": "WITHIN", "to": 195}, {"from": "chunk_5", "title": "WITHIN", "to": 3}, {"from": "chunk_5", "title": "WITHIN", "to": 30}, {"from": "chunk_5", "title": "WITHIN", "to": 36}, {"from": "chunk_5", "title": "WITHIN", "to": 131}, {"from": "chunk_5", "title": "WITHIN", "to": 155}, {"from": "chunk_5", "title": "WITHIN", "to": 166}, {"from": "chunk_5", "title": "WITHIN", "to": 169}, {"from": "chunk_5", "title": "WITHIN", "to": 175}, {"from": "chunk_5", "title": "WITHIN", "to": 178}, {"from": "chunk_5", "title": "WITHIN", "to": 186}, {"from": "chunk_5", "title": "WITHIN", "to": 189}, {"from": "chunk_5", "title": "WITHIN", "to": 190}, {"from": "chunk_5", "title": "WITHIN", "to": 191}, {"from": "chunk_5", "title": "WITHIN", "to": 192}, {"from": "chunk_5", "title": "WITHIN", "to": 196}, {"from": "chunk_5", "title": "WITHIN", "to": 197}, {"from": "chunk_5", "title": "WITHIN", "to": 198}, {"from": "chunk_5", "title": "WITHIN", "to": 199}, {"from": "chunk_5", "title": "WITHIN", "to": 200}, {"from": "chunk_5", "title": "WITHIN", "to": 201}, {"from": "chunk_5", "title": "WITHIN", "to": 202}, {"from": "chunk_5", "title": "WITHIN", "to": 203}, {"from": "chunk_5", "title": "WITHIN", "to": 204}, {"from": "chunk_5", "title": "WITHIN", "to": 205}, {"from": "chunk_5", "title": "WITHIN", "to": 206}, {"from": "chunk_5", "title": "WITHIN", "to": 207}, {"from": "chunk_5", "title": "WITHIN", "to": 208}, {"from": "chunk_5", "title": "WITHIN", "to": 209}, {"from": "chunk_5", "title": "WITHIN", "to": 210}, {"from": "chunk_5", "title": "WITHIN", "to": 214}, {"from": "chunk_5", "title": "WITHIN", "to": 217}, {"from": "chunk_5", "title": "WITHIN", "to": 218}, {"from": "chunk_5", "title": "WITHIN", "to": 224}, {"from": "chunk_5", "title": "WITHIN", "to": 225}, {"from": "chunk_5", "title": "WITHIN", "to": 226}, {"from": "chunk_5", "title": "WITHIN", "to": 227}, {"from": "chunk_5", "title": "WITHIN", "to": 228}, {"from": "chunk_5", "title": "WITHIN", "to": 229}, {"from": "chunk_6", "title": "WITHIN", "to": 70}, {"from": "chunk_6", "title": "WITHIN", "to": 102}, {"from": "chunk_6", "title": "WITHIN", "to": 161}, {"from": "chunk_6", "title": "WITHIN", "to": 168}, {"from": "chunk_6", "title": "WITHIN", "to": 215}, {"from": "chunk_6", "title": "WITHIN", "to": 221}, {"from": "chunk_6", "title": "WITHIN", "to": 222}, {"from": "chunk_6", "title": "WITHIN", "to": 223}, {"from": "chunk_6", "title": "WITHIN", "to": 230}, {"from": "chunk_6", "title": "WITHIN", "to": 231}, {"from": "chunk_6", "title": "WITHIN", "to": 232}, {"from": "chunk_6", "title": "WITHIN", "to": 233}, {"from": "chunk_6", "title": "WITHIN", "to": 234}, {"from": "chunk_6", "title": "WITHIN", "to": 237}, {"from": "chunk_6", "title": "WITHIN", "to": 238}, {"from": "chunk_6", "title": "WITHIN", "to": 246}, {"from": "chunk_6", "title": "WITHIN", "to": 250}, {"from": "chunk_6", "title": "WITHIN", "to": 251}, {"from": "chunk_6", "title": "WITHIN", "to": 252}, {"from": "chunk_6", "title": "WITHIN", "to": 253}, {"from": "chunk_6", "title": "WITHIN", "to": 254}, {"from": "chunk_6", "title": "WITHIN", "to": 255}, {"from": "chunk_6", "title": "WITHIN", "to": 256}, {"from": "chunk_6", "title": "WITHIN", "to": 257}, {"from": "chunk_6", "title": "WITHIN", "to": 258}, {"from": "chunk_6", "title": "WITHIN", "to": 259}, {"from": "chunk_6", "title": "WITHIN", "to": 260}, {"from": "chunk_6", "title": "WITHIN", "to": 261}, {"from": "chunk_6", "title": "WITHIN", "to": 262}, {"from": "chunk_6", "title": "WITHIN", "to": 263}, {"from": "chunk_6", "title": "WITHIN", "to": 264}, {"from": "chunk_7", "title": "WITHIN", "to": 16}, {"from": "chunk_7", "title": "WITHIN", "to": 19}, {"from": "chunk_7", "title": "WITHIN", "to": 46}, {"from": "chunk_7", "title": "WITHIN", "to": 67}, {"from": "chunk_7", "title": "WITHIN", "to": 69}, {"from": "chunk_7", "title": "WITHIN", "to": 73}, {"from": "chunk_7", "title": "WITHIN", "to": 88}, {"from": "chunk_7", "title": "WITHIN", "to": 265}, {"from": "chunk_7", "title": "WITHIN", "to": 266}, {"from": "chunk_7", "title": "WITHIN", "to": 267}, {"from": "chunk_7", "title": "WITHIN", "to": 273}, {"from": "chunk_7", "title": "WITHIN", "to": 278}, {"from": "chunk_7", "title": "WITHIN", "to": 282}, {"from": "chunk_7", "title": "WITHIN", "to": 288}, {"from": "chunk_7", "title": "WITHIN", "to": 289}, {"from": "chunk_7", "title": "WITHIN", "to": 290}, {"from": "chunk_7", "title": "WITHIN", "to": 291}, {"from": "chunk_7", "title": "WITHIN", "to": 292}, {"from": "chunk_7", "title": "WITHIN", "to": 293}, {"from": "chunk_7", "title": "WITHIN", "to": 294}, {"from": "chunk_7", "title": "WITHIN", "to": 295}, {"from": "chunk_7", "title": "WITHIN", "to": 296}, {"from": "chunk_7", "title": "WITHIN", "to": 297}, {"from": "chunk_7", "title": "WITHIN", "to": 298}, {"from": "chunk_7", "title": "WITHIN", "to": 299}, {"from": "chunk_7", "title": "WITHIN", "to": 300}, {"from": "chunk_7", "title": "WITHIN", "to": 301}, {"from": "chunk_7", "title": "WITHIN", "to": 302}, {"from": "chunk_7", "title": "WITHIN", "to": 303}, {"from": "chunk_7", "title": "WITHIN", "to": 304}, {"from": "chunk_7", "title": "WITHIN", "to": 305}, {"from": "chunk_7", "title": "WITHIN", "to": 306}, {"from": "chunk_8", "title": "WITHIN", "to": 23}, {"from": "chunk_8", "title": "WITHIN", "to": 308}, {"from": "chunk_8", "title": "WITHIN", "to": 338}, {"from": "chunk_8", "title": "WITHIN", "to": 340}, {"from": "chunk_8", "title": "WITHIN", "to": 344}, {"from": "chunk_8", "title": "WITHIN", "to": 345}, {"from": "chunk_8", "title": "WITHIN", "to": 346}, {"from": "chunk_8", "title": "WITHIN", "to": 347}, {"from": "chunk_8", "title": "WITHIN", "to": 348}, {"from": "chunk_8", "title": "WITHIN", "to": 349}, {"from": "chunk_8", "title": "WITHIN", "to": 350}, {"from": "chunk_8", "title": "WITHIN", "to": 351}, {"from": "chunk_8", "title": "WITHIN", "to": 352}, {"from": "chunk_8", "title": "WITHIN", "to": 353}, {"from": "chunk_8", "title": "WITHIN", "to": 354}, {"from": "chunk_8", "title": "WITHIN", "to": 355}, {"from": 0, "title": "CO_OCCURS_WITH", "to": 6}, {"from": 0, "title": "CO_OCCURS_WITH", "to": 9}, {"from": 0, "title": "CO_OCCURS_WITH", "to": 11}, {"from": 0, "title": "CO_OCCURS_WITH", "to": 16}, {"from": 0, "title": "CO_OCCURS_WITH", "to": 23}, {"from": 0, "title": "CO_OCCURS_WITH", "to": 30}, {"from": 0, "title": "CO_OCCURS_WITH", "to": 31}, {"from": 0, "title": "CO_OCCURS_WITH", "to": 34}, {"from": 0, "title": "CO_OCCURS_WITH", "to": 35}, {"from": 0, "title": "CO_OCCURS_WITH", "to": 36}, {"from": 0, "title": "CO_OCCURS_WITH", "to": 37}, {"from": 0, "title": "CO_OCCURS_WITH", "to": 38}, {"from": 0, "title": "CO_OCCURS_WITH", "to": 39}, {"from": 0, "title": "CO_OCCURS_WITH", "to": 40}, {"from": 0, "title": "CO_OCCURS_WITH", "to": 41}, {"from": 0, "title": "CO_OCCURS_WITH", "to": 42}, {"from": 0, "title": "CO_OCCURS_WITH", "to": 43}, {"from": 0, "title": "CO_OCCURS_WITH", "to": 44}, {"from": 0, "title": "CO_OCCURS_WITH", "to": 45}, {"from": 0, "title": "CO_OCCURS_WITH", "to": 46}, {"from": 2, "title": "CO_OCCURS_WITH", "to": 166}, {"from": 2, "title": "CO_OCCURS_WITH", "to": 169}, {"from": 2, "title": "CO_OCCURS_WITH", "to": 175}, {"from": 2, "title": "CO_OCCURS_WITH", "to": 186}, {"from": 2, "title": "CO_OCCURS_WITH", "to": 190}, {"from": 2, "title": "CO_OCCURS_WITH", "to": 191}, {"from": 2, "title": "CO_OCCURS_WITH", "to": 192}, {"from": 2, "title": "CO_OCCURS_WITH", "to": 196}, {"from": 2, "title": "CO_OCCURS_WITH", "to": 197}, {"from": 2, "title": "CO_OCCURS_WITH", "to": 70}, {"from": 2, "title": "CO_OCCURS_WITH", "to": 198}, {"from": 2, "title": "CO_OCCURS_WITH", "to": 199}, {"from": 2, "title": "CO_OCCURS_WITH", "to": 200}, {"from": 2, "title": "CO_OCCURS_WITH", "to": 201}, {"from": 2, "title": "CO_OCCURS_WITH", "to": 202}, {"from": 2, "title": "CO_OCCURS_WITH", "to": 203}, {"from": 2, "title": "CO_OCCURS_WITH", "to": 204}, {"from": 2, "title": "CO_OCCURS_WITH", "to": 205}, {"from": 2, "title": "CO_OCCURS_WITH", "to": 206}, {"from": 2, "title": "CO_OCCURS_WITH", "to": 207}, {"from": 2, "title": "CO_OCCURS_WITH", "to": 208}, {"from": 2, "title": "CO_OCCURS_WITH", "to": 209}, {"from": 2, "title": "CO_OCCURS_WITH", "to": 210}, {"from": 2, "title": "WITHIN", "to": "chunk_11"}, {"from": 2, "title": "CO_OCCURS_WITH", "to": 88}, {"from": 2, "title": "CO_OCCURS_WITH", "to": 376}, {"from": 2, "title": "CO_OCCURS_WITH", "to": 377}, {"from": 2, "title": "CO_OCCURS_WITH", "to": 129}, {"from": 2, "title": "CO_OCCURS_WITH", "to": 193}, {"from": 2, "title": "CO_OCCURS_WITH", "to": 36}, {"from": 2, "title": "CO_OCCURS_WITH", "to": 395}, {"from": 2, "title": "CO_OCCURS_WITH", "to": 396}, {"from": 2, "title": "CO_OCCURS_WITH", "to": 28}, {"from": 2, "title": "CO_OCCURS_WITH", "to": 30}, {"from": 3, "title": "CO_OCCURS_WITH", "to": 23}, {"from": 3, "title": "CO_OCCURS_WITH", "to": 30}, {"from": 3, "title": "CO_OCCURS_WITH", "to": 31}, {"from": 3, "title": "CO_OCCURS_WITH", "to": 34}, {"from": 3, "title": "CO_OCCURS_WITH", "to": 36}, {"from": 3, "title": "CO_OCCURS_WITH", "to": 37}, {"from": 3, "title": "CO_OCCURS_WITH", "to": 38}, {"from": 3, "title": "CO_OCCURS_WITH", "to": 40}, {"from": 3, "title": "CO_OCCURS_WITH", "to": 41}, {"from": 3, "title": "CO_OCCURS_WITH", "to": 42}, {"from": 3, "title": "CO_OCCURS_WITH", "to": 43}, {"from": 3, "title": "CO_OCCURS_WITH", "to": 44}, {"from": 3, "title": "CO_OCCURS_WITH", "to": 45}, {"from": 3, "title": "CO_OCCURS_WITH", "to": 46}, {"from": 3, "title": "CO_OCCURS_WITH", "to": 32}, {"from": 3, "title": "CO_OCCURS_WITH", "to": 33}, {"from": 3, "title": "CO_OCCURS_WITH", "to": 47}, {"from": 3, "title": "CO_OCCURS_WITH", "to": 48}, {"from": 3, "title": "CO_OCCURS_WITH", "to": 26}, {"from": 3, "title": "CO_OCCURS_WITH", "to": 27}, {"from": 3, "title": "CO_OCCURS_WITH", "to": 28}, {"from": 3, "title": "CO_OCCURS_WITH", "to": 29}, {"from": 3, "title": "CO_OCCURS_WITH", "to": 158}, {"from": 3, "title": "CO_OCCURS_WITH", "to": 143}, {"from": 3, "title": "CO_OCCURS_WITH", "to": 154}, {"from": 3, "title": "CO_OCCURS_WITH", "to": 155}, {"from": 3, "title": "CO_OCCURS_WITH", "to": 156}, {"from": 3, "title": "CO_OCCURS_WITH", "to": 157}, {"from": 3, "title": "CO_OCCURS_WITH", "to": 226}, {"from": 3, "title": "CO_OCCURS_WITH", "to": 227}, {"from": 3, "title": "WITHIN", "to": "chunk_13"}, {"from": 3, "title": "CO_OCCURS_WITH", "to": 70}, {"from": 3, "title": "CO_OCCURS_WITH", "to": 376}, {"from": 3, "title": "CO_OCCURS_WITH", "to": 377}, {"from": 3, "title": "CO_OCCURS_WITH", "to": 420}, {"from": 3, "title": "CO_OCCURS_WITH", "to": 421}, {"from": 3, "title": "CO_OCCURS_WITH", "to": 422}, {"from": 3, "title": "CO_OCCURS_WITH", "to": 423}, {"from": 3, "title": "CO_OCCURS_WITH", "to": 424}, {"from": 3, "title": "CO_OCCURS_WITH", "to": 426}, {"from": 3, "title": "CO_OCCURS_WITH", "to": 427}, {"from": 3, "title": "CO_OCCURS_WITH", "to": 432}, {"from": 3, "title": "CO_OCCURS_WITH", "to": 434}, {"from": 3, "title": "CO_OCCURS_WITH", "to": 437}, {"from": 3, "title": "CO_OCCURS_WITH", "to": 438}, {"from": 6, "title": "CO_OCCURS_WITH", "to": 16}, {"from": 6, "title": "CO_OCCURS_WITH", "to": 23}, {"from": 6, "title": "CO_OCCURS_WITH", "to": 30}, {"from": 6, "title": "CO_OCCURS_WITH", "to": 31}, {"from": 6, "title": "CO_OCCURS_WITH", "to": 34}, {"from": 6, "title": "CO_OCCURS_WITH", "to": 35}, {"from": 6, "title": "CO_OCCURS_WITH", "to": 36}, {"from": 6, "title": "CO_OCCURS_WITH", "to": 38}, {"from": 6, "title": "CO_OCCURS_WITH", "to": 39}, {"from": 6, "title": "CO_OCCURS_WITH", "to": 40}, {"from": 6, "title": "CO_OCCURS_WITH", "to": 41}, {"from": 6, "title": "CO_OCCURS_WITH", "to": 42}, {"from": 6, "title": "CO_OCCURS_WITH", "to": 43}, {"from": 6, "title": "CO_OCCURS_WITH", "to": 44}, {"from": 6, "title": "CO_OCCURS_WITH", "to": 45}, {"from": 6, "title": "CO_OCCURS_WITH", "to": 46}, {"from": 6, "title": "CO_OCCURS_WITH", "to": 129}, {"from": 6, "title": "CO_OCCURS_WITH", "to": 134}, {"from": 6, "title": "CO_OCCURS_WITH", "to": 135}, {"from": 6, "title": "CO_OCCURS_WITH", "to": 136}, {"from": 6, "title": "CO_OCCURS_WITH", "to": 137}, {"from": 6, "title": "CO_OCCURS_WITH", "to": 138}, {"from": 6, "title": "CO_OCCURS_WITH", "to": 139}, {"from": 6, "title": "CO_OCCURS_WITH", "to": 140}, {"from": 6, "title": "CO_OCCURS_WITH", "to": 141}, {"from": 6, "title": "CO_OCCURS_WITH", "to": 142}, {"from": 6, "title": "CO_OCCURS_WITH", "to": 144}, {"from": 6, "title": "CO_OCCURS_WITH", "to": 145}, {"from": 6, "title": "CO_OCCURS_WITH", "to": 146}, {"from": 6, "title": "CO_OCCURS_WITH", "to": 147}, {"from": 6, "title": "CO_OCCURS_WITH", "to": 148}, {"from": 6, "title": "CO_OCCURS_WITH", "to": 149}, {"from": 6, "title": "CO_OCCURS_WITH", "to": 150}, {"from": 6, "title": "CO_OCCURS_WITH", "to": 151}, {"from": 6, "title": "CO_OCCURS_WITH", "to": 152}, {"from": 6, "title": "CO_OCCURS_WITH", "to": 153}, {"from": 6, "title": "CO_OCCURS_WITH", "to": 28}, {"from": 6, "title": "CO_OCCURS_WITH", "to": 29}, {"from": 6, "title": "CO_OCCURS_WITH", "to": 32}, {"from": 6, "title": "CO_OCCURS_WITH", "to": 89}, {"from": 6, "title": "CO_OCCURS_WITH", "to": 102}, {"from": 6, "title": "CO_OCCURS_WITH", "to": 113}, {"from": 6, "title": "CO_OCCURS_WITH", "to": 116}, {"from": 6, "title": "CO_OCCURS_WITH", "to": 118}, {"from": 6, "title": "CO_OCCURS_WITH", "to": 121}, {"from": 6, "title": "CO_OCCURS_WITH", "to": 126}, {"from": 6, "title": "WITHIN", "to": "chunk_10"}, {"from": 6, "title": "CO_OCCURS_WITH", "to": 384}, {"from": 6, "title": "CO_OCCURS_WITH", "to": 388}, {"from": 6, "title": "CO_OCCURS_WITH", "to": 389}, {"from": 9, "title": "HEADQUARTERED_IN", "to": 46}, {"from": 9, "title": "CO_OCCURS_WITH", "to": 11}, {"from": 9, "title": "CO_OCCURS_WITH", "to": 16}, {"from": 9, "title": "CO_OCCURS_WITH", "to": 30}, {"from": 9, "title": "CO_OCCURS_WITH", "to": 31}, {"from": 9, "title": "CO_OCCURS_WITH", "to": 34}, {"from": 9, "title": "CO_OCCURS_WITH", "to": 35}, {"from": 9, "title": "CO_OCCURS_WITH", "to": 36}, {"from": 9, "title": "CO_OCCURS_WITH", "to": 37}, {"from": 9, "title": "CO_OCCURS_WITH", "to": 39}, {"from": 9, "title": "CO_OCCURS_WITH", "to": 40}, {"from": 9, "title": "CO_OCCURS_WITH", "to": 41}, {"from": 9, "title": "CO_OCCURS_WITH", "to": 42}, {"from": 9, "title": "CO_OCCURS_WITH", "to": 43}, {"from": 9, "title": "CO_OCCURS_WITH", "to": 44}, {"from": 9, "title": "CO_OCCURS_WITH", "to": 45}, {"from": 11, "title": "CO_OCCURS_WITH", "to": 16}, {"from": 11, "title": "CO_OCCURS_WITH", "to": 23}, {"from": 11, "title": "CO_OCCURS_WITH", "to": 30}, {"from": 11, "title": "CO_OCCURS_WITH", "to": 31}, {"from": 11, "title": "CO_OCCURS_WITH", "to": 34}, {"from": 11, "title": "CO_OCCURS_WITH", "to": 35}, {"from": 11, "title": "CO_OCCURS_WITH", "to": 36}, {"from": 11, "title": "CO_OCCURS_WITH", "to": 37}, {"from": 11, "title": "CO_OCCURS_WITH", "to": 38}, {"from": 11, "title": "CO_OCCURS_WITH", "to": 39}, {"from": 11, "title": "CO_OCCURS_WITH", "to": 40}, {"from": 11, "title": "CO_OCCURS_WITH", "to": 41}, {"from": 11, "title": "CO_OCCURS_WITH", "to": 42}, {"from": 11, "title": "CO_OCCURS_WITH", "to": 43}, {"from": 11, "title": "CO_OCCURS_WITH", "to": 44}, {"from": 11, "title": "CO_OCCURS_WITH", "to": 45}, {"from": 11, "title": "CO_OCCURS_WITH", "to": 46}, {"from": 11, "title": "CO_OCCURS_WITH", "to": 129}, {"from": 11, "title": "CO_OCCURS_WITH", "to": 134}, {"from": 11, "title": "CO_OCCURS_WITH", "to": 135}, {"from": 11, "title": "CO_OCCURS_WITH", "to": 136}, {"from": 11, "title": "CO_OCCURS_WITH", "to": 137}, {"from": 11, "title": "CO_OCCURS_WITH", "to": 138}, {"from": 11, "title": "CO_OCCURS_WITH", "to": 139}, {"from": 11, "title": "CO_OCCURS_WITH", "to": 140}, {"from": 11, "title": "CO_OCCURS_WITH", "to": 141}, {"from": 11, "title": "CO_OCCURS_WITH", "to": 142}, {"from": 11, "title": "CO_OCCURS_WITH", "to": 144}, {"from": 11, "title": "CO_OCCURS_WITH", "to": 145}, {"from": 11, "title": "CO_OCCURS_WITH", "to": 146}, {"from": 11, "title": "CO_OCCURS_WITH", "to": 147}, {"from": 11, "title": "CO_OCCURS_WITH", "to": 148}, {"from": 11, "title": "CO_OCCURS_WITH", "to": 149}, {"from": 11, "title": "CO_OCCURS_WITH", "to": 150}, {"from": 11, "title": "CO_OCCURS_WITH", "to": 151}, {"from": 11, "title": "CO_OCCURS_WITH", "to": 152}, {"from": 11, "title": "CO_OCCURS_WITH", "to": 153}, {"from": 11, "title": "CO_OCCURS_WITH", "to": 28}, {"from": 11, "title": "CO_OCCURS_WITH", "to": 29}, {"from": 11, "title": "CO_OCCURS_WITH", "to": 32}, {"from": 11, "title": "CO_OCCURS_WITH", "to": 89}, {"from": 11, "title": "CO_OCCURS_WITH", "to": 102}, {"from": 11, "title": "CO_OCCURS_WITH", "to": 112}, {"from": 11, "title": "CO_OCCURS_WITH", "to": 113}, {"from": 11, "title": "CO_OCCURS_WITH", "to": 118}, {"from": 11, "title": "CO_OCCURS_WITH", "to": 121}, {"from": 11, "title": "CO_OCCURS_WITH", "to": 126}, {"from": 16, "title": "CO_OCCURS_WITH", "to": 23}, {"from": 16, "title": "CO_OCCURS_WITH", "to": 30}, {"from": 16, "title": "CO_OCCURS_WITH", "to": 31}, {"from": 16, "title": "CO_OCCURS_WITH", "to": 34}, {"from": 16, "title": "CO_OCCURS_WITH", "to": 35}, {"from": 16, "title": "CO_OCCURS_WITH", "to": 36}, {"from": 16, "title": "CO_OCCURS_WITH", "to": 37}, {"from": 16, "title": "CO_OCCURS_WITH", "to": 38}, {"from": 16, "title": "CO_OCCURS_WITH", "to": 39}, {"from": 16, "title": "CO_OCCURS_WITH", "to": 40}, {"from": 16, "title": "CO_OCCURS_WITH", "to": 41}, {"from": 16, "title": "CO_OCCURS_WITH", "to": 42}, {"from": 16, "title": "CO_OCCURS_WITH", "to": 43}, {"from": 16, "title": "CO_OCCURS_WITH", "to": 44}, {"from": 16, "title": "CO_OCCURS_WITH", "to": 45}, {"from": 16, "title": "CO_OCCURS_WITH", "to": 46}, {"from": 16, "title": "CO_OCCURS_WITH", "to": 32}, {"from": 16, "title": "CO_OCCURS_WITH", "to": 33}, {"from": 16, "title": "CO_OCCURS_WITH", "to": 47}, {"from": 16, "title": "CO_OCCURS_WITH", "to": 48}, {"from": 16, "title": "CO_OCCURS_WITH", "to": 28}, {"from": 16, "title": "CO_OCCURS_WITH", "to": 29}, {"from": 16, "title": "CO_OCCURS_WITH", "to": 68}, {"from": 16, "title": "CO_OCCURS_WITH", "to": 69}, {"from": 16, "title": "CO_OCCURS_WITH", "to": 70}, {"from": 16, "title": "CO_OCCURS_WITH", "to": 71}, {"from": 16, "title": "CO_OCCURS_WITH", "to": 74}, {"from": 16, "title": "CO_OCCURS_WITH", "to": 75}, {"from": 16, "title": "CO_OCCURS_WITH", "to": 76}, {"from": 16, "title": "CO_OCCURS_WITH", "to": 77}, {"from": 16, "title": "CO_OCCURS_WITH", "to": 78}, {"from": 16, "title": "CO_OCCURS_WITH", "to": 79}, {"from": 16, "title": "CO_OCCURS_WITH", "to": 53}, {"from": 16, "title": "CO_OCCURS_WITH", "to": 58}, {"from": 16, "title": "CO_OCCURS_WITH", "to": 83}, {"from": 16, "title": "CO_OCCURS_WITH", "to": 84}, {"from": 16, "title": "CO_OCCURS_WITH", "to": 72}, {"from": 16, "title": "CO_OCCURS_WITH", "to": 85}, {"from": 16, "title": "CO_OCCURS_WITH", "to": 97}, {"from": 16, "title": "CO_OCCURS_WITH", "to": 98}, {"from": 16, "title": "CO_OCCURS_WITH", "to": 102}, {"from": 16, "title": "CO_OCCURS_WITH", "to": 103}, {"from": 16, "title": "CO_OCCURS_WITH", "to": 104}, {"from": 16, "title": "CO_OCCURS_WITH", "to": 105}, {"from": 16, "title": "CO_OCCURS_WITH", "to": 106}, {"from": 16, "title": "CO_OCCURS_WITH", "to": 158}, {"from": 16, "title": "CO_OCCURS_WITH", "to": 143}, {"from": 16, "title": "CO_OCCURS_WITH", "to": 154}, {"from": 16, "title": "CO_OCCURS_WITH", "to": 155}, {"from": 16, "title": "CO_OCCURS_WITH", "to": 156}, {"from": 16, "title": "CO_OCCURS_WITH", "to": 157}, {"from": 16, "title": "CO_OCCURS_WITH", "to": 193}, {"from": 16, "title": "CO_OCCURS_WITH", "to": 194}, {"from": 16, "title": "CO_OCCURS_WITH", "to": 195}, {"from": 16, "title": "CO_OCCURS_WITH", "to": 187}, {"from": 16, "title": "CO_OCCURS_WITH", "to": 188}, {"from": 16, "title": "CO_OCCURS_WITH", "to": 226}, {"from": 16, "title": "CO_OCCURS_WITH", "to": 131}, {"from": 16, "title": "CO_OCCURS_WITH", "to": 227}, {"from": 16, "title": "CO_OCCURS_WITH", "to": 250}, {"from": 16, "title": "CO_OCCURS_WITH", "to": 251}, {"from": 16, "title": "CO_OCCURS_WITH", "to": 253}, {"from": 16, "title": "CO_OCCURS_WITH", "to": 289}, {"from": 16, "title": "CO_OCCURS_WITH", "to": 290}, {"from": 16, "title": "CO_OCCURS_WITH", "to": 291}, {"from": 16, "title": "CO_OCCURS_WITH", "to": 292}, {"from": 16, "title": "CO_OCCURS_WITH", "to": 293}, {"from": 16, "title": "WITHIN", "to": "chunk_13"}, {"from": 16, "title": "CO_OCCURS_WITH", "to": 365}, {"from": 16, "title": "CO_OCCURS_WITH", "to": 366}, {"from": 16, "title": "CO_OCCURS_WITH", "to": 367}, {"from": 16, "title": "CO_OCCURS_WITH", "to": 368}, {"from": 16, "title": "CO_OCCURS_WITH", "to": 369}, {"from": 16, "title": "CO_OCCURS_WITH", "to": 370}, {"from": 16, "title": "CO_OCCURS_WITH", "to": 372}, {"from": 16, "title": "CO_OCCURS_WITH", "to": 373}, {"from": 16, "title": "CO_OCCURS_WITH", "to": 26}, {"from": 16, "title": "CO_OCCURS_WITH", "to": 376}, {"from": 16, "title": "CO_OCCURS_WITH", "to": 377}, {"from": 16, "title": "CO_OCCURS_WITH", "to": 392}, {"from": 16, "title": "CO_OCCURS_WITH", "to": 391}, {"from": 16, "title": "CO_OCCURS_WITH", "to": 395}, {"from": 16, "title": "CO_OCCURS_WITH", "to": 396}, {"from": 16, "title": "CO_OCCURS_WITH", "to": 419}, {"from": 16, "title": "CO_OCCURS_WITH", "to": 431}, {"from": 16, "title": "CO_OCCURS_WITH", "to": 420}, {"from": 16, "title": "CO_OCCURS_WITH", "to": 421}, {"from": 16, "title": "CO_OCCURS_WITH", "to": 422}, {"from": 16, "title": "CO_OCCURS_WITH", "to": 423}, {"from": 16, "title": "CO_OCCURS_WITH", "to": 424}, {"from": 16, "title": "CO_OCCURS_WITH", "to": 425}, {"from": 16, "title": "CO_OCCURS_WITH", "to": 426}, {"from": 16, "title": "CO_OCCURS_WITH", "to": 427}, {"from": 16, "title": "CO_OCCURS_WITH", "to": 432}, {"from": 16, "title": "CO_OCCURS_WITH", "to": 413}, {"from": 16, "title": "CO_OCCURS_WITH", "to": 417}, {"from": 16, "title": "CO_OCCURS_WITH", "to": 428}, {"from": 16, "title": "CO_OCCURS_WITH", "to": 429}, {"from": 16, "title": "CO_OCCURS_WITH", "to": 430}, {"from": 16, "title": "CO_OCCURS_WITH", "to": 435}, {"from": 16, "title": "CO_OCCURS_WITH", "to": 434}, {"from": 16, "title": "CO_OCCURS_WITH", "to": 437}, {"from": 19, "title": "CO_OCCURS_WITH", "to": 99}, {"from": 19, "title": "CO_OCCURS_WITH", "to": 100}, {"from": 19, "title": "CO_OCCURS_WITH", "to": 101}, {"from": 19, "title": "CO_OCCURS_WITH", "to": 86}, {"from": 19, "title": "CO_OCCURS_WITH", "to": 265}, {"from": 19, "title": "CO_OCCURS_WITH", "to": 266}, {"from": 19, "title": "CO_OCCURS_WITH", "to": 267}, {"from": 19, "title": "CO_OCCURS_WITH", "to": 23}, {"from": 19, "title": "CO_OCCURS_WITH", "to": 73}, {"from": 19, "title": "CO_OCCURS_WITH", "to": 299}, {"from": 19, "title": "CO_OCCURS_WITH", "to": 300}, {"from": 19, "title": "CO_OCCURS_WITH", "to": 301}, {"from": 19, "title": "CO_OCCURS_WITH", "to": 302}, {"from": 19, "title": "CO_OCCURS_WITH", "to": 303}, {"from": 19, "title": "CO_OCCURS_WITH", "to": 304}, {"from": 19, "title": "CO_OCCURS_WITH", "to": 305}, {"from": 19, "title": "CO_OCCURS_WITH", "to": 306}, {"from": 23, "title": "CO_OCCURS_WITH", "to": 30}, {"from": 23, "title": "CO_OCCURS_WITH", "to": 31}, {"from": 23, "title": "CO_OCCURS_WITH", "to": 34}, {"from": 23, "title": "CO_OCCURS_WITH", "to": 35}, {"from": 23, "title": "CO_OCCURS_WITH", "to": 36}, {"from": 23, "title": "CO_OCCURS_WITH", "to": 37}, {"from": 23, "title": "CO_OCCURS_WITH", "to": 38}, {"from": 23, "title": "CO_OCCURS_WITH", "to": 39}, {"from": 23, "title": "CO_OCCURS_WITH", "to": 40}, {"from": 23, "title": "CO_OCCURS_WITH", "to": 41}, {"from": 23, "title": "CO_OCCURS_WITH", "to": 42}, {"from": 23, "title": "CO_OCCURS_WITH", "to": 43}, {"from": 23, "title": "CO_OCCURS_WITH", "to": 44}, {"from": 23, "title": "CO_OCCURS_WITH", "to": 45}, {"from": 23, "title": "CO_OCCURS_WITH", "to": 46}, {"from": 23, "title": "CO_OCCURS_WITH", "to": 158}, {"from": 23, "title": "CO_OCCURS_WITH", "to": 47}, {"from": 23, "title": "CO_OCCURS_WITH", "to": 154}, {"from": 23, "title": "CO_OCCURS_WITH", "to": 155}, {"from": 23, "title": "CO_OCCURS_WITH", "to": 156}, {"from": 23, "title": "CO_OCCURS_WITH", "to": 157}, {"from": 23, "title": "CO_OCCURS_WITH", "to": 69}, {"from": 23, "title": "CO_OCCURS_WITH", "to": 265}, {"from": 23, "title": "CO_OCCURS_WITH", "to": 266}, {"from": 23, "title": "CO_OCCURS_WITH", "to": 267}, {"from": 23, "title": "CO_OCCURS_WITH", "to": 289}, {"from": 23, "title": "CO_OCCURS_WITH", "to": 290}, {"from": 23, "title": "CO_OCCURS_WITH", "to": 291}, {"from": 23, "title": "CO_OCCURS_WITH", "to": 292}, {"from": 23, "title": "CO_OCCURS_WITH", "to": 293}, {"from": 23, "title": "CO_OCCURS_WITH", "to": 295}, {"from": 23, "title": "CO_OCCURS_WITH", "to": 296}, {"from": 23, "title": "CO_OCCURS_WITH", "to": 297}, {"from": 23, "title": "CO_OCCURS_WITH", "to": 298}, {"from": 23, "title": "CO_OCCURS_WITH", "to": 282}, {"from": 23, "title": "CO_OCCURS_WITH", "to": 344}, {"from": 23, "title": "CO_OCCURS_WITH", "to": 345}, {"from": 23, "title": "CO_OCCURS_WITH", "to": 348}, {"from": 26, "title": "CO_OCCURS_WITH", "to": 33}, {"from": 26, "title": "CO_OCCURS_WITH", "to": 47}, {"from": 26, "title": "CO_OCCURS_WITH", "to": 48}, {"from": 26, "title": "CO_OCCURS_WITH", "to": 30}, {"from": 26, "title": "CO_OCCURS_WITH", "to": 193}, {"from": 26, "title": "CO_OCCURS_WITH", "to": 194}, {"from": 26, "title": "CO_OCCURS_WITH", "to": 195}, {"from": 26, "title": "CO_OCCURS_WITH", "to": 187}, {"from": 26, "title": "CO_OCCURS_WITH", "to": 188}, {"from": 26, "title": "WITHIN", "to": "chunk_11"}, {"from": 26, "title": "CO_OCCURS_WITH", "to": 36}, {"from": 26, "title": "CO_OCCURS_WITH", "to": 373}, {"from": 26, "title": "CO_OCCURS_WITH", "to": 155}, {"from": 26, "title": "CO_OCCURS_WITH", "to": 390}, {"from": 26, "title": "CO_OCCURS_WITH", "to": 137}, {"from": 26, "title": "CO_OCCURS_WITH", "to": 138}, {"from": 26, "title": "CO_OCCURS_WITH", "to": 139}, {"from": 26, "title": "CO_OCCURS_WITH", "to": 29}, {"from": 26, "title": "CO_OCCURS_WITH", "to": 395}, {"from": 26, "title": "CO_OCCURS_WITH", "to": 396}, {"from": 27, "title": "CO_OCCURS_WITH", "to": 33}, {"from": 27, "title": "CO_OCCURS_WITH", "to": 47}, {"from": 27, "title": "CO_OCCURS_WITH", "to": 48}, {"from": 27, "title": "CO_OCCURS_WITH", "to": 30}, {"from": 27, "title": "CO_OCCURS_WITH", "to": 193}, {"from": 27, "title": "CO_OCCURS_WITH", "to": 194}, {"from": 27, "title": "CO_OCCURS_WITH", "to": 195}, {"from": 27, "title": "CO_OCCURS_WITH", "to": 187}, {"from": 27, "title": "CO_OCCURS_WITH", "to": 188}, {"from": 27, "title": "WITHIN", "to": "chunk_10"}, {"from": 27, "title": "CO_OCCURS_WITH", "to": 28}, {"from": 27, "title": "CO_OCCURS_WITH", "to": 129}, {"from": 27, "title": "CO_OCCURS_WITH", "to": 390}, {"from": 27, "title": "CO_OCCURS_WITH", "to": 137}, {"from": 27, "title": "CO_OCCURS_WITH", "to": 138}, {"from": 27, "title": "CO_OCCURS_WITH", "to": 139}, {"from": 27, "title": "CO_OCCURS_WITH", "to": 149}, {"from": 27, "title": "CO_OCCURS_WITH", "to": 121}, {"from": 27, "title": "CO_OCCURS_WITH", "to": 29}, {"from": 28, "title": "CO_OCCURS_WITH", "to": 32}, {"from": 28, "title": "CO_OCCURS_WITH", "to": 47}, {"from": 28, "title": "CO_OCCURS_WITH", "to": 48}, {"from": 28, "title": "CO_OCCURS_WITH", "to": 30}, {"from": 28, "title": "CO_OCCURS_WITH", "to": 134}, {"from": 28, "title": "CO_OCCURS_WITH", "to": 135}, {"from": 28, "title": "CO_OCCURS_WITH", "to": 136}, {"from": 28, "title": "CO_OCCURS_WITH", "to": 137}, {"from": 28, "title": "CO_OCCURS_WITH", "to": 138}, {"from": 28, "title": "CO_OCCURS_WITH", "to": 142}, {"from": 28, "title": "CO_OCCURS_WITH", "to": 144}, {"from": 28, "title": "CO_OCCURS_WITH", "to": 145}, {"from": 28, "title": "CO_OCCURS_WITH", "to": 146}, {"from": 28, "title": "CO_OCCURS_WITH", "to": 147}, {"from": 28, "title": "CO_OCCURS_WITH", "to": 148}, {"from": 28, "title": "CO_OCCURS_WITH", "to": 149}, {"from": 28, "title": "CO_OCCURS_WITH", "to": 150}, {"from": 28, "title": "CO_OCCURS_WITH", "to": 151}, {"from": 28, "title": "CO_OCCURS_WITH", "to": 153}, {"from": 28, "title": "CO_OCCURS_WITH", "to": 43}, {"from": 28, "title": "CO_OCCURS_WITH", "to": 89}, {"from": 28, "title": "CO_OCCURS_WITH", "to": 102}, {"from": 28, "title": "CO_OCCURS_WITH", "to": 112}, {"from": 28, "title": "CO_OCCURS_WITH", "to": 113}, {"from": 28, "title": "CO_OCCURS_WITH", "to": 116}, {"from": 28, "title": "CO_OCCURS_WITH", "to": 118}, {"from": 28, "title": "CO_OCCURS_WITH", "to": 121}, {"from": 28, "title": "WITHIN", "to": "chunk_11"}, {"from": 28, "title": "CO_OCCURS_WITH", "to": 36}, {"from": 28, "title": "CO_OCCURS_WITH", "to": 373}, {"from": 28, "title": "CO_OCCURS_WITH", "to": 155}, {"from": 28, "title": "CO_OCCURS_WITH", "to": 390}, {"from": 28, "title": "CO_OCCURS_WITH", "to": 193}, {"from": 28, "title": "CO_OCCURS_WITH", "to": 395}, {"from": 28, "title": "CO_OCCURS_WITH", "to": 396}, {"from": 29, "title": "CO_OCCURS_WITH", "to": 32}, {"from": 29, "title": "CO_OCCURS_WITH", "to": 47}, {"from": 29, "title": "CO_OCCURS_WITH", "to": 48}, {"from": 29, "title": "CO_OCCURS_WITH", "to": 30}, {"from": 29, "title": "CO_OCCURS_WITH", "to": 129}, {"from": 29, "title": "CO_OCCURS_WITH", "to": 134}, {"from": 29, "title": "CO_OCCURS_WITH", "to": 135}, {"from": 29, "title": "CO_OCCURS_WITH", "to": 136}, {"from": 29, "title": "CO_OCCURS_WITH", "to": 137}, {"from": 29, "title": "CO_OCCURS_WITH", "to": 138}, {"from": 29, "title": "CO_OCCURS_WITH", "to": 139}, {"from": 29, "title": "CO_OCCURS_WITH", "to": 140}, {"from": 29, "title": "CO_OCCURS_WITH", "to": 142}, {"from": 29, "title": "CO_OCCURS_WITH", "to": 144}, {"from": 29, "title": "CO_OCCURS_WITH", "to": 145}, {"from": 29, "title": "CO_OCCURS_WITH", "to": 146}, {"from": 29, "title": "CO_OCCURS_WITH", "to": 147}, {"from": 29, "title": "CO_OCCURS_WITH", "to": 148}, {"from": 29, "title": "CO_OCCURS_WITH", "to": 149}, {"from": 29, "title": "CO_OCCURS_WITH", "to": 150}, {"from": 29, "title": "CO_OCCURS_WITH", "to": 151}, {"from": 29, "title": "CO_OCCURS_WITH", "to": 152}, {"from": 29, "title": "CO_OCCURS_WITH", "to": 153}, {"from": 29, "title": "CO_OCCURS_WITH", "to": 43}, {"from": 29, "title": "CO_OCCURS_WITH", "to": 89}, {"from": 29, "title": "CO_OCCURS_WITH", "to": 102}, {"from": 29, "title": "CO_OCCURS_WITH", "to": 112}, {"from": 29, "title": "CO_OCCURS_WITH", "to": 113}, {"from": 29, "title": "CO_OCCURS_WITH", "to": 116}, {"from": 29, "title": "CO_OCCURS_WITH", "to": 118}, {"from": 29, "title": "CO_OCCURS_WITH", "to": 121}, {"from": 29, "title": "WITHIN", "to": "chunk_10"}, {"from": 29, "title": "CO_OCCURS_WITH", "to": 390}, {"from": 30, "title": "CO_OCCURS_WITH", "to": 31}, {"from": 30, "title": "CO_OCCURS_WITH", "to": 34}, {"from": 30, "title": "CO_OCCURS_WITH", "to": 35}, {"from": 30, "title": "CO_OCCURS_WITH", "to": 36}, {"from": 30, "title": "CO_OCCURS_WITH", "to": 37}, {"from": 30, "title": "CO_OCCURS_WITH", "to": 38}, {"from": 30, "title": "CO_OCCURS_WITH", "to": 39}, {"from": 30, "title": "CO_OCCURS_WITH", "to": 40}, {"from": 30, "title": "CO_OCCURS_WITH", "to": 41}, {"from": 30, "title": "CO_OCCURS_WITH", "to": 42}, {"from": 30, "title": "CO_OCCURS_WITH", "to": 43}, {"from": 30, "title": "CO_OCCURS_WITH", "to": 44}, {"from": 30, "title": "CO_OCCURS_WITH", "to": 45}, {"from": 30, "title": "CO_OCCURS_WITH", "to": 46}, {"from": 30, "title": "CO_OCCURS_WITH", "to": 32}, {"from": 30, "title": "CO_OCCURS_WITH", "to": 33}, {"from": 30, "title": "CO_OCCURS_WITH", "to": 47}, {"from": 30, "title": "CO_OCCURS_WITH", "to": 48}, {"from": 30, "title": "CO_OCCURS_WITH", "to": 129}, {"from": 30, "title": "CO_OCCURS_WITH", "to": 134}, {"from": 30, "title": "CO_OCCURS_WITH", "to": 135}, {"from": 30, "title": "CO_OCCURS_WITH", "to": 136}, {"from": 30, "title": "CO_OCCURS_WITH", "to": 137}, {"from": 30, "title": "CO_OCCURS_WITH", "to": 138}, {"from": 30, "title": "CO_OCCURS_WITH", "to": 139}, {"from": 30, "title": "CO_OCCURS_WITH", "to": 140}, {"from": 30, "title": "CO_OCCURS_WITH", "to": 141}, {"from": 30, "title": "CO_OCCURS_WITH", "to": 142}, {"from": 30, "title": "CO_OCCURS_WITH", "to": 144}, {"from": 30, "title": "CO_OCCURS_WITH", "to": 145}, {"from": 30, "title": "CO_OCCURS_WITH", "to": 146}, {"from": 30, "title": "CO_OCCURS_WITH", "to": 147}, {"from": 30, "title": "CO_OCCURS_WITH", "to": 148}, {"from": 30, "title": "CO_OCCURS_WITH", "to": 149}, {"from": 30, "title": "CO_OCCURS_WITH", "to": 150}, {"from": 30, "title": "CO_OCCURS_WITH", "to": 151}, {"from": 30, "title": "CO_OCCURS_WITH", "to": 152}, {"from": 30, "title": "CO_OCCURS_WITH", "to": 153}, {"from": 30, "title": "CO_OCCURS_WITH", "to": 89}, {"from": 30, "title": "CO_OCCURS_WITH", "to": 102}, {"from": 30, "title": "CO_OCCURS_WITH", "to": 112}, {"from": 30, "title": "CO_OCCURS_WITH", "to": 113}, {"from": 30, "title": "CO_OCCURS_WITH", "to": 116}, {"from": 30, "title": "CO_OCCURS_WITH", "to": 118}, {"from": 30, "title": "CO_OCCURS_WITH", "to": 121}, {"from": 30, "title": "CO_OCCURS_WITH", "to": 126}, {"from": 30, "title": "CO_OCCURS_WITH", "to": 158}, {"from": 30, "title": "CO_OCCURS_WITH", "to": 143}, {"from": 30, "title": "CO_OCCURS_WITH", "to": 154}, {"from": 30, "title": "CO_OCCURS_WITH", "to": 155}, {"from": 30, "title": "CO_OCCURS_WITH", "to": 156}, {"from": 30, "title": "CO_OCCURS_WITH", "to": 157}, {"from": 30, "title": "CO_OCCURS_WITH", "to": 193}, {"from": 30, "title": "CO_OCCURS_WITH", "to": 194}, {"from": 30, "title": "CO_OCCURS_WITH", "to": 195}, {"from": 30, "title": "CO_OCCURS_WITH", "to": 187}, {"from": 30, "title": "CO_OCCURS_WITH", "to": 188}, {"from": 30, "title": "CO_OCCURS_WITH", "to": 226}, {"from": 30, "title": "CO_OCCURS_WITH", "to": 131}, {"from": 30, "title": "CO_OCCURS_WITH", "to": 227}, {"from": 30, "title": "WITHIN", "to": "chunk_13"}, {"from": 30, "title": "CO_OCCURS_WITH", "to": 356}, {"from": 30, "title": "CO_OCCURS_WITH", "to": 67}, {"from": 30, "title": "CO_OCCURS_WITH", "to": 365}, {"from": 30, "title": "CO_OCCURS_WITH", "to": 366}, {"from": 30, "title": "CO_OCCURS_WITH", "to": 367}, {"from": 30, "title": "CO_OCCURS_WITH", "to": 368}, {"from": 30, "title": "CO_OCCURS_WITH", "to": 369}, {"from": 30, "title": "CO_OCCURS_WITH", "to": 370}, {"from": 30, "title": "CO_OCCURS_WITH", "to": 373}, {"from": 30, "title": "CO_OCCURS_WITH", "to": 384}, {"from": 30, "title": "CO_OCCURS_WITH", "to": 388}, {"from": 30, "title": "CO_OCCURS_WITH", "to": 389}, {"from": 30, "title": "CO_OCCURS_WITH", "to": 382}, {"from": 30, "title": "CO_OCCURS_WITH", "to": 70}, {"from": 30, "title": "CO_OCCURS_WITH", "to": 393}, {"from": 30, "title": "CO_OCCURS_WITH", "to": 394}, {"from": 30, "title": "CO_OCCURS_WITH", "to": 395}, {"from": 30, "title": "CO_OCCURS_WITH", "to": 396}, {"from": 30, "title": "CO_OCCURS_WITH", "to": 420}, {"from": 30, "title": "CO_OCCURS_WITH", "to": 421}, {"from": 30, "title": "CO_OCCURS_WITH", "to": 422}, {"from": 30, "title": "CO_OCCURS_WITH", "to": 423}, {"from": 30, "title": "CO_OCCURS_WITH", "to": 424}, {"from": 30, "title": "CO_OCCURS_WITH", "to": 425}, {"from": 30, "title": "CO_OCCURS_WITH", "to": 426}, {"from": 30, "title": "CO_OCCURS_WITH", "to": 427}, {"from": 30, "title": "CO_OCCURS_WITH", "to": 432}, {"from": 30, "title": "CO_OCCURS_WITH", "to": 413}, {"from": 30, "title": "CO_OCCURS_WITH", "to": 417}, {"from": 30, "title": "CO_OCCURS_WITH", "to": 418}, {"from": 30, "title": "CO_OCCURS_WITH", "to": 428}, {"from": 30, "title": "CO_OCCURS_WITH", "to": 429}, {"from": 30, "title": "CO_OCCURS_WITH", "to": 430}, {"from": 30, "title": "CO_OCCURS_WITH", "to": 87}, {"from": 30, "title": "CO_OCCURS_WITH", "to": 435}, {"from": 30, "title": "CO_OCCURS_WITH", "to": 436}, {"from": 30, "title": "CO_OCCURS_WITH", "to": 434}, {"from": 30, "title": "CO_OCCURS_WITH", "to": 437}, {"from": 30, "title": "CO_OCCURS_WITH", "to": 438}, {"from": 31, "title": "CO_OCCURS_WITH", "to": 34}, {"from": 31, "title": "CO_OCCURS_WITH", "to": 35}, {"from": 31, "title": "CO_OCCURS_WITH", "to": 36}, {"from": 31, "title": "CO_OCCURS_WITH", "to": 37}, {"from": 31, "title": "CO_OCCURS_WITH", "to": 38}, {"from": 31, "title": "CO_OCCURS_WITH", "to": 39}, {"from": 31, "title": "CO_OCCURS_WITH", "to": 40}, {"from": 31, "title": "CO_OCCURS_WITH", "to": 41}, {"from": 31, "title": "CO_OCCURS_WITH", "to": 42}, {"from": 31, "title": "CO_OCCURS_WITH", "to": 43}, {"from": 31, "title": "CO_OCCURS_WITH", "to": 44}, {"from": 31, "title": "CO_OCCURS_WITH", "to": 45}, {"from": 31, "title": "CO_OCCURS_WITH", "to": 46}, {"from": 32, "title": "CO_OCCURS_WITH", "to": 33}, {"from": 32, "title": "CO_OCCURS_WITH", "to": 47}, {"from": 32, "title": "CO_OCCURS_WITH", "to": 48}, {"from": 32, "title": "CO_OCCURS_WITH", "to": 129}, {"from": 32, "title": "CO_OCCURS_WITH", "to": 134}, {"from": 32, "title": "CO_OCCURS_WITH", "to": 135}, {"from": 32, "title": "CO_OCCURS_WITH", "to": 136}, {"from": 32, "title": "CO_OCCURS_WITH", "to": 137}, {"from": 32, "title": "CO_OCCURS_WITH", "to": 138}, {"from": 32, "title": "CO_OCCURS_WITH", "to": 139}, {"from": 32, "title": "CO_OCCURS_WITH", "to": 140}, {"from": 32, "title": "CO_OCCURS_WITH", "to": 141}, {"from": 32, "title": "CO_OCCURS_WITH", "to": 142}, {"from": 32, "title": "CO_OCCURS_WITH", "to": 144}, {"from": 32, "title": "CO_OCCURS_WITH", "to": 145}, {"from": 32, "title": "CO_OCCURS_WITH", "to": 146}, {"from": 32, "title": "CO_OCCURS_WITH", "to": 147}, {"from": 32, "title": "CO_OCCURS_WITH", "to": 148}, {"from": 32, "title": "CO_OCCURS_WITH", "to": 149}, {"from": 32, "title": "CO_OCCURS_WITH", "to": 150}, {"from": 32, "title": "CO_OCCURS_WITH", "to": 151}, {"from": 32, "title": "CO_OCCURS_WITH", "to": 152}, {"from": 32, "title": "CO_OCCURS_WITH", "to": 153}, {"from": 32, "title": "CO_OCCURS_WITH", "to": 43}, {"from": 32, "title": "CO_OCCURS_WITH", "to": 89}, {"from": 32, "title": "CO_OCCURS_WITH", "to": 102}, {"from": 32, "title": "CO_OCCURS_WITH", "to": 112}, {"from": 32, "title": "CO_OCCURS_WITH", "to": 113}, {"from": 32, "title": "CO_OCCURS_WITH", "to": 116}, {"from": 32, "title": "CO_OCCURS_WITH", "to": 118}, {"from": 32, "title": "CO_OCCURS_WITH", "to": 121}, {"from": 32, "title": "CO_OCCURS_WITH", "to": 126}, {"from": 32, "title": "CO_OCCURS_WITH", "to": 193}, {"from": 32, "title": "CO_OCCURS_WITH", "to": 194}, {"from": 32, "title": "CO_OCCURS_WITH", "to": 195}, {"from": 32, "title": "CO_OCCURS_WITH", "to": 187}, {"from": 32, "title": "CO_OCCURS_WITH", "to": 188}, {"from": 33, "title": "CO_OCCURS_WITH", "to": 47}, {"from": 33, "title": "CO_OCCURS_WITH", "to": 48}, {"from": 34, "title": "CO_OCCURS_WITH", "to": 35}, {"from": 34, "title": "CO_OCCURS_WITH", "to": 36}, {"from": 34, "title": "CO_OCCURS_WITH", "to": 37}, {"from": 34, "title": "CO_OCCURS_WITH", "to": 38}, {"from": 34, "title": "CO_OCCURS_WITH", "to": 39}, {"from": 34, "title": "CO_OCCURS_WITH", "to": 40}, {"from": 34, "title": "CO_OCCURS_WITH", "to": 41}, {"from": 34, "title": "CO_OCCURS_WITH", "to": 42}, {"from": 34, "title": "CO_OCCURS_WITH", "to": 43}, {"from": 34, "title": "CO_OCCURS_WITH", "to": 44}, {"from": 34, "title": "CO_OCCURS_WITH", "to": 45}, {"from": 34, "title": "CO_OCCURS_WITH", "to": 46}, {"from": 35, "title": "CO_OCCURS_WITH", "to": 36}, {"from": 35, "title": "CO_OCCURS_WITH", "to": 37}, {"from": 35, "title": "CO_OCCURS_WITH", "to": 38}, {"from": 35, "title": "CO_OCCURS_WITH", "to": 39}, {"from": 35, "title": "CO_OCCURS_WITH", "to": 40}, {"from": 35, "title": "CO_OCCURS_WITH", "to": 41}, {"from": 35, "title": "CO_OCCURS_WITH", "to": 42}, {"from": 35, "title": "CO_OCCURS_WITH", "to": 43}, {"from": 35, "title": "CO_OCCURS_WITH", "to": 44}, {"from": 35, "title": "CO_OCCURS_WITH", "to": 45}, {"from": 35, "title": "CO_OCCURS_WITH", "to": 46}, {"from": 36, "title": "CO_OCCURS_WITH", "to": 37}, {"from": 36, "title": "CO_OCCURS_WITH", "to": 38}, {"from": 36, "title": "CO_OCCURS_WITH", "to": 39}, {"from": 36, "title": "CO_OCCURS_WITH", "to": 40}, {"from": 36, "title": "CO_OCCURS_WITH", "to": 41}, {"from": 36, "title": "CO_OCCURS_WITH", "to": 42}, {"from": 36, "title": "CO_OCCURS_WITH", "to": 43}, {"from": 36, "title": "CO_OCCURS_WITH", "to": 44}, {"from": 36, "title": "CO_OCCURS_WITH", "to": 45}, {"from": 36, "title": "CO_OCCURS_WITH", "to": 46}, {"from": 36, "title": "CO_OCCURS_WITH", "to": 224}, {"from": 36, "title": "CO_OCCURS_WITH", "to": 225}, {"from": 36, "title": "CO_OCCURS_WITH", "to": 217}, {"from": 36, "title": "CO_OCCURS_WITH", "to": 218}, {"from": 36, "title": "WITHIN", "to": "chunk_12"}, {"from": 36, "title": "CO_OCCURS_WITH", "to": 357}, {"from": 36, "title": "CO_OCCURS_WITH", "to": 129}, {"from": 36, "title": "CO_OCCURS_WITH", "to": 363}, {"from": 36, "title": "CO_OCCURS_WITH", "to": 70}, {"from": 36, "title": "CO_OCCURS_WITH", "to": 371}, {"from": 36, "title": "CO_OCCURS_WITH", "to": 373}, {"from": 36, "title": "CO_OCCURS_WITH", "to": 155}, {"from": 36, "title": "CO_OCCURS_WITH", "to": 102}, {"from": 36, "title": "CO_OCCURS_WITH", "to": 393}, {"from": 36, "title": "CO_OCCURS_WITH", "to": 394}, {"from": 36, "title": "CO_OCCURS_WITH", "to": 193}, {"from": 36, "title": "CO_OCCURS_WITH", "to": 395}, {"from": 36, "title": "CO_OCCURS_WITH", "to": 396}, {"from": 37, "title": "CO_OCCURS_WITH", "to": 38}, {"from": 37, "title": "CO_OCCURS_WITH", "to": 39}, {"from": 37, "title": "CO_OCCURS_WITH", "to": 40}, {"from": 37, "title": "CO_OCCURS_WITH", "to": 41}, {"from": 37, "title": "CO_OCCURS_WITH", "to": 42}, {"from": 37, "title": "CO_OCCURS_WITH", "to": 43}, {"from": 37, "title": "CO_OCCURS_WITH", "to": 44}, {"from": 37, "title": "CO_OCCURS_WITH", "to": 45}, {"from": 37, "title": "CO_OCCURS_WITH", "to": 46}, {"from": 38, "title": "CO_OCCURS_WITH", "to": 39}, {"from": 38, "title": "CO_OCCURS_WITH", "to": 40}, {"from": 38, "title": "CO_OCCURS_WITH", "to": 41}, {"from": 38, "title": "CO_OCCURS_WITH", "to": 42}, {"from": 38, "title": "CO_OCCURS_WITH", "to": 43}, {"from": 38, "title": "CO_OCCURS_WITH", "to": 44}, {"from": 38, "title": "CO_OCCURS_WITH", "to": 45}, {"from": 38, "title": "CO_OCCURS_WITH", "to": 46}, {"from": 39, "title": "CO_OCCURS_WITH", "to": 40}, {"from": 39, "title": "CO_OCCURS_WITH", "to": 41}, {"from": 39, "title": "CO_OCCURS_WITH", "to": 42}, {"from": 39, "title": "CO_OCCURS_WITH", "to": 43}, {"from": 39, "title": "CO_OCCURS_WITH", "to": 44}, {"from": 39, "title": "CO_OCCURS_WITH", "to": 45}, {"from": 39, "title": "CO_OCCURS_WITH", "to": 46}, {"from": 40, "title": "CO_OCCURS_WITH", "to": 41}, {"from": 40, "title": "CO_OCCURS_WITH", "to": 42}, {"from": 40, "title": "CO_OCCURS_WITH", "to": 43}, {"from": 40, "title": "CO_OCCURS_WITH", "to": 44}, {"from": 40, "title": "CO_OCCURS_WITH", "to": 45}, {"from": 40, "title": "CO_OCCURS_WITH", "to": 46}, {"from": 41, "title": "CO_OCCURS_WITH", "to": 42}, {"from": 41, "title": "CO_OCCURS_WITH", "to": 43}, {"from": 41, "title": "CO_OCCURS_WITH", "to": 44}, {"from": 41, "title": "CO_OCCURS_WITH", "to": 45}, {"from": 41, "title": "CO_OCCURS_WITH", "to": 46}, {"from": 42, "title": "CO_OCCURS_WITH", "to": 43}, {"from": 42, "title": "CO_OCCURS_WITH", "to": 44}, {"from": 42, "title": "CO_OCCURS_WITH", "to": 45}, {"from": 42, "title": "CO_OCCURS_WITH", "to": 46}, {"from": 43, "title": "CO_OCCURS_WITH", "to": 44}, {"from": 43, "title": "CO_OCCURS_WITH", "to": 45}, {"from": 43, "title": "CO_OCCURS_WITH", "to": 46}, {"from": 43, "title": "CO_OCCURS_WITH", "to": 129}, {"from": 43, "title": "CO_OCCURS_WITH", "to": 134}, {"from": 43, "title": "CO_OCCURS_WITH", "to": 135}, {"from": 43, "title": "CO_OCCURS_WITH", "to": 136}, {"from": 43, "title": "CO_OCCURS_WITH", "to": 137}, {"from": 43, "title": "CO_OCCURS_WITH", "to": 138}, {"from": 43, "title": "CO_OCCURS_WITH", "to": 139}, {"from": 43, "title": "CO_OCCURS_WITH", "to": 140}, {"from": 43, "title": "CO_OCCURS_WITH", "to": 141}, {"from": 43, "title": "CO_OCCURS_WITH", "to": 142}, {"from": 43, "title": "CO_OCCURS_WITH", "to": 144}, {"from": 43, "title": "CO_OCCURS_WITH", "to": 145}, {"from": 43, "title": "CO_OCCURS_WITH", "to": 146}, {"from": 43, "title": "CO_OCCURS_WITH", "to": 147}, {"from": 43, "title": "CO_OCCURS_WITH", "to": 148}, {"from": 43, "title": "CO_OCCURS_WITH", "to": 149}, {"from": 43, "title": "CO_OCCURS_WITH", "to": 150}, {"from": 43, "title": "CO_OCCURS_WITH", "to": 151}, {"from": 43, "title": "CO_OCCURS_WITH", "to": 152}, {"from": 43, "title": "CO_OCCURS_WITH", "to": 153}, {"from": 43, "title": "CO_OCCURS_WITH", "to": 89}, {"from": 43, "title": "CO_OCCURS_WITH", "to": 102}, {"from": 43, "title": "CO_OCCURS_WITH", "to": 112}, {"from": 43, "title": "CO_OCCURS_WITH", "to": 113}, {"from": 43, "title": "CO_OCCURS_WITH", "to": 116}, {"from": 43, "title": "CO_OCCURS_WITH", "to": 118}, {"from": 43, "title": "CO_OCCURS_WITH", "to": 121}, {"from": 43, "title": "CO_OCCURS_WITH", "to": 126}, {"from": 44, "title": "CO_OCCURS_WITH", "to": 45}, {"from": 44, "title": "CO_OCCURS_WITH", "to": 46}, {"from": 44, "title": "WITHIN", "to": "chunk_10"}, {"from": 44, "title": "CO_OCCURS_WITH", "to": 70}, {"from": 44, "title": "CO_OCCURS_WITH", "to": 393}, {"from": 44, "title": "CO_OCCURS_WITH", "to": 394}, {"from": 44, "title": "CO_OCCURS_WITH", "to": 102}, {"from": 45, "title": "CO_OCCURS_WITH", "to": 46}, {"from": 46, "title": "FOUNDER", "to": 168}, {"from": 46, "title": "CO_OCCURS_WITH", "to": 69}, {"from": 46, "title": "CO_OCCURS_WITH", "to": 265}, {"from": 46, "title": "CO_OCCURS_WITH", "to": 266}, {"from": 46, "title": "CO_OCCURS_WITH", "to": 267}, {"from": 46, "title": "CO_OCCURS_WITH", "to": 88}, {"from": 47, "title": "CO_OCCURS_WITH", "to": 48}, {"from": 47, "title": "CO_OCCURS_WITH", "to": 158}, {"from": 47, "title": "CO_OCCURS_WITH", "to": 143}, {"from": 47, "title": "CO_OCCURS_WITH", "to": 154}, {"from": 47, "title": "CO_OCCURS_WITH", "to": 155}, {"from": 47, "title": "CO_OCCURS_WITH", "to": 156}, {"from": 47, "title": "CO_OCCURS_WITH", "to": 157}, {"from": 47, "title": "WITHIN", "to": "chunk_9"}, {"from": 47, "title": "CO_OCCURS_WITH", "to": 356}, {"from": 47, "title": "CO_OCCURS_WITH", "to": 364}, {"from": 47, "title": "CO_OCCURS_WITH", "to": 75}, {"from": 47, "title": "CO_OCCURS_WITH", "to": 374}, {"from": 47, "title": "CO_OCCURS_WITH", "to": 375}, {"from": 49, "title": "CO_OCCURS_WITH", "to": 68}, {"from": 49, "title": "CO_OCCURS_WITH", "to": 69}, {"from": 49, "title": "CO_OCCURS_WITH", "to": 70}, {"from": 49, "title": "CO_OCCURS_WITH", "to": 71}, {"from": 49, "title": "CO_OCCURS_WITH", "to": 73}, {"from": 49, "title": "CO_OCCURS_WITH", "to": 74}, {"from": 49, "title": "CO_OCCURS_WITH", "to": 75}, {"from": 49, "title": "CO_OCCURS_WITH", "to": 76}, {"from": 49, "title": "CO_OCCURS_WITH", "to": 77}, {"from": 49, "title": "CO_OCCURS_WITH", "to": 78}, {"from": 49, "title": "CO_OCCURS_WITH", "to": 79}, {"from": 49, "title": "CO_OCCURS_WITH", "to": 53}, {"from": 49, "title": "CO_OCCURS_WITH", "to": 58}, {"from": 49, "title": "WITHIN", "to": "chunk_12"}, {"from": 49, "title": "CO_OCCURS_WITH", "to": 419}, {"from": 49, "title": "CO_OCCURS_WITH", "to": 431}, {"from": 53, "title": "CO_OCCURS_WITH", "to": 68}, {"from": 53, "title": "CO_OCCURS_WITH", "to": 69}, {"from": 53, "title": "CO_OCCURS_WITH", "to": 70}, {"from": 53, "title": "CO_OCCURS_WITH", "to": 71}, {"from": 53, "title": "CO_OCCURS_WITH", "to": 73}, {"from": 53, "title": "CO_OCCURS_WITH", "to": 74}, {"from": 53, "title": "CO_OCCURS_WITH", "to": 75}, {"from": 53, "title": "CO_OCCURS_WITH", "to": 76}, {"from": 53, "title": "CO_OCCURS_WITH", "to": 77}, {"from": 53, "title": "CO_OCCURS_WITH", "to": 78}, {"from": 53, "title": "CO_OCCURS_WITH", "to": 79}, {"from": 53, "title": "CO_OCCURS_WITH", "to": 58}, {"from": 53, "title": "WITHIN", "to": "chunk_12"}, {"from": 53, "title": "CO_OCCURS_WITH", "to": 419}, {"from": 53, "title": "CO_OCCURS_WITH", "to": 431}, {"from": 58, "title": "CO_OCCURS_WITH", "to": 68}, {"from": 58, "title": "CO_OCCURS_WITH", "to": 69}, {"from": 58, "title": "CO_OCCURS_WITH", "to": 70}, {"from": 58, "title": "CO_OCCURS_WITH", "to": 71}, {"from": 58, "title": "CO_OCCURS_WITH", "to": 73}, {"from": 58, "title": "CO_OCCURS_WITH", "to": 74}, {"from": 58, "title": "CO_OCCURS_WITH", "to": 75}, {"from": 58, "title": "CO_OCCURS_WITH", "to": 76}, {"from": 58, "title": "CO_OCCURS_WITH", "to": 77}, {"from": 58, "title": "CO_OCCURS_WITH", "to": 78}, {"from": 58, "title": "CO_OCCURS_WITH", "to": 79}, {"from": 66, "title": "CO_OCCURS_WITH", "to": 72}, {"from": 66, "title": "CO_OCCURS_WITH", "to": 85}, {"from": 66, "title": "CO_OCCURS_WITH", "to": 97}, {"from": 66, "title": "CO_OCCURS_WITH", "to": 99}, {"from": 66, "title": "CO_OCCURS_WITH", "to": 100}, {"from": 66, "title": "CO_OCCURS_WITH", "to": 101}, {"from": 67, "title": "CO_OCCURS_WITH", "to": 69}, {"from": 67, "title": "CO_OCCURS_WITH", "to": 295}, {"from": 67, "title": "CO_OCCURS_WITH", "to": 296}, {"from": 67, "title": "CO_OCCURS_WITH", "to": 297}, {"from": 67, "title": "CO_OCCURS_WITH", "to": 298}, {"from": 67, "title": "CO_OCCURS_WITH", "to": 278}, {"from": 67, "title": "CO_OCCURS_WITH", "to": 73}, {"from": 67, "title": "CO_OCCURS_WITH", "to": 299}, {"from": 67, "title": "CO_OCCURS_WITH", "to": 300}, {"from": 67, "title": "CO_OCCURS_WITH", "to": 302}, {"from": 67, "title": "CO_OCCURS_WITH", "to": 303}, {"from": 67, "title": "CO_OCCURS_WITH", "to": 304}, {"from": 67, "title": "WITHIN", "to": "chunk_13"}, {"from": 67, "title": "CO_OCCURS_WITH", "to": 418}, {"from": 67, "title": "CO_OCCURS_WITH", "to": 428}, {"from": 67, "title": "CO_OCCURS_WITH", "to": 430}, {"from": 67, "title": "CO_OCCURS_WITH", "to": 87}, {"from": 68, "title": "CO_OCCURS_WITH", "to": 69}, {"from": 68, "title": "CO_OCCURS_WITH", "to": 70}, {"from": 68, "title": "CO_OCCURS_WITH", "to": 71}, {"from": 68, "title": "CO_OCCURS_WITH", "to": 73}, {"from": 68, "title": "CO_OCCURS_WITH", "to": 74}, {"from": 68, "title": "CO_OCCURS_WITH", "to": 75}, {"from": 68, "title": "CO_OCCURS_WITH", "to": 76}, {"from": 68, "title": "CO_OCCURS_WITH", "to": 77}, {"from": 68, "title": "CO_OCCURS_WITH", "to": 78}, {"from": 68, "title": "CO_OCCURS_WITH", "to": 79}, {"from": 68, "title": "WITHIN", "to": "chunk_12"}, {"from": 68, "title": "CO_OCCURS_WITH", "to": 419}, {"from": 68, "title": "CO_OCCURS_WITH", "to": 431}, {"from": 69, "title": "FOUNDER", "to": 71}, {"from": 69, "title": "SUBSIDIARY_OF", "to": 75}, {"from": 69, "title": "CO_OCCURS_WITH", "to": 70}, {"from": 69, "title": "CO_OCCURS_WITH", "to": 73}, {"from": 69, "title": "CO_OCCURS_WITH", "to": 74}, {"from": 69, "title": "CO_OCCURS_WITH", "to": 76}, {"from": 69, "title": "CO_OCCURS_WITH", "to": 77}, {"from": 69, "title": "CO_OCCURS_WITH", "to": 78}, {"from": 69, "title": "CO_OCCURS_WITH", "to": 79}, {"from": 69, "title": "CO_OCCURS_WITH", "to": 256}, {"from": 69, "title": "CO_OCCURS_WITH", "to": 257}, {"from": 69, "title": "CO_OCCURS_WITH", "to": 258}, {"from": 69, "title": "CO_OCCURS_WITH", "to": 259}, {"from": 69, "title": "CO_OCCURS_WITH", "to": 260}, {"from": 69, "title": "CO_OCCURS_WITH", "to": 261}, {"from": 69, "title": "CO_OCCURS_WITH", "to": 262}, {"from": 69, "title": "CO_OCCURS_WITH", "to": 237}, {"from": 69, "title": "CO_OCCURS_WITH", "to": 238}, {"from": 69, "title": "CO_OCCURS_WITH", "to": 252}, {"from": 69, "title": "CO_OCCURS_WITH", "to": 254}, {"from": 69, "title": "CO_OCCURS_WITH", "to": 255}, {"from": 69, "title": "CO_OCCURS_WITH", "to": 265}, {"from": 69, "title": "CO_OCCURS_WITH", "to": 266}, {"from": 69, "title": "CO_OCCURS_WITH", "to": 267}, {"from": 69, "title": "CO_OCCURS_WITH", "to": 88}, {"from": 69, "title": "CO_OCCURS_WITH", "to": 289}, {"from": 69, "title": "CO_OCCURS_WITH", "to": 290}, {"from": 69, "title": "CO_OCCURS_WITH", "to": 291}, {"from": 69, "title": "CO_OCCURS_WITH", "to": 292}, {"from": 69, "title": "CO_OCCURS_WITH", "to": 293}, {"from": 69, "title": "CO_OCCURS_WITH", "to": 273}, {"from": 69, "title": "CO_OCCURS_WITH", "to": 294}, {"from": 69, "title": "CO_OCCURS_WITH", "to": 295}, {"from": 69, "title": "CO_OCCURS_WITH", "to": 296}, {"from": 69, "title": "CO_OCCURS_WITH", "to": 297}, {"from": 69, "title": "CO_OCCURS_WITH", "to": 298}, {"from": 69, "title": "CO_OCCURS_WITH", "to": 278}, {"from": 69, "title": "CO_OCCURS_WITH", "to": 282}, {"from": 69, "title": "WITHIN", "to": "chunk_12"}, {"from": 69, "title": "CO_OCCURS_WITH", "to": 419}, {"from": 69, "title": "CO_OCCURS_WITH", "to": 431}, {"from": 70, "title": "CO_OCCURS_WITH", "to": 71}, {"from": 70, "title": "CO_OCCURS_WITH", "to": 73}, {"from": 70, "title": "CO_OCCURS_WITH", "to": 74}, {"from": 70, "title": "CO_OCCURS_WITH", "to": 75}, {"from": 70, "title": "CO_OCCURS_WITH", "to": 76}, {"from": 70, "title": "CO_OCCURS_WITH", "to": 77}, {"from": 70, "title": "CO_OCCURS_WITH", "to": 78}, {"from": 70, "title": "CO_OCCURS_WITH", "to": 79}, {"from": 70, "title": "CO_OCCURS_WITH", "to": 83}, {"from": 70, "title": "CO_OCCURS_WITH", "to": 84}, {"from": 70, "title": "CO_OCCURS_WITH", "to": 155}, {"from": 70, "title": "CO_OCCURS_WITH", "to": 166}, {"from": 70, "title": "CO_OCCURS_WITH", "to": 169}, {"from": 70, "title": "CO_OCCURS_WITH", "to": 175}, {"from": 70, "title": "CO_OCCURS_WITH", "to": 178}, {"from": 70, "title": "CO_OCCURS_WITH", "to": 186}, {"from": 70, "title": "CO_OCCURS_WITH", "to": 189}, {"from": 70, "title": "CO_OCCURS_WITH", "to": 190}, {"from": 70, "title": "CO_OCCURS_WITH", "to": 191}, {"from": 70, "title": "CO_OCCURS_WITH", "to": 192}, {"from": 70, "title": "CO_OCCURS_WITH", "to": 196}, {"from": 70, "title": "CO_OCCURS_WITH", "to": 197}, {"from": 70, "title": "CO_OCCURS_WITH", "to": 198}, {"from": 70, "title": "CO_OCCURS_WITH", "to": 199}, {"from": 70, "title": "CO_OCCURS_WITH", "to": 200}, {"from": 70, "title": "CO_OCCURS_WITH", "to": 201}, {"from": 70, "title": "CO_OCCURS_WITH", "to": 202}, {"from": 70, "title": "CO_OCCURS_WITH", "to": 203}, {"from": 70, "title": "CO_OCCURS_WITH", "to": 204}, {"from": 70, "title": "CO_OCCURS_WITH", "to": 205}, {"from": 70, "title": "CO_OCCURS_WITH", "to": 206}, {"from": 70, "title": "CO_OCCURS_WITH", "to": 207}, {"from": 70, "title": "CO_OCCURS_WITH", "to": 208}, {"from": 70, "title": "CO_OCCURS_WITH", "to": 209}, {"from": 70, "title": "CO_OCCURS_WITH", "to": 210}, {"from": 70, "title": "CO_OCCURS_WITH", "to": 256}, {"from": 70, "title": "CO_OCCURS_WITH", "to": 257}, {"from": 70, "title": "CO_OCCURS_WITH", "to": 258}, {"from": 70, "title": "CO_OCCURS_WITH", "to": 259}, {"from": 70, "title": "CO_OCCURS_WITH", "to": 260}, {"from": 70, "title": "CO_OCCURS_WITH", "to": 261}, {"from": 70, "title": "CO_OCCURS_WITH", "to": 262}, {"from": 70, "title": "CO_OCCURS_WITH", "to": 237}, {"from": 70, "title": "CO_OCCURS_WITH", "to": 238}, {"from": 70, "title": "CO_OCCURS_WITH", "to": 252}, {"from": 70, "title": "CO_OCCURS_WITH", "to": 254}, {"from": 70, "title": "CO_OCCURS_WITH", "to": 255}, {"from": 70, "title": "WITHIN", "to": "chunk_12"}, {"from": 70, "title": "CO_OCCURS_WITH", "to": 88}, {"from": 70, "title": "CO_OCCURS_WITH", "to": 4}, {"from": 70, "title": "CO_OCCURS_WITH", "to": 52}, {"from": 70, "title": "CO_OCCURS_WITH", "to": 376}, {"from": 70, "title": "CO_OCCURS_WITH", "to": 377}, {"from": 70, "title": "CO_OCCURS_WITH", "to": 102}, {"from": 70, "title": "CO_OCCURS_WITH", "to": 393}, {"from": 70, "title": "CO_OCCURS_WITH", "to": 394}, {"from": 70, "title": "CO_OCCURS_WITH", "to": 402}, {"from": 70, "title": "CO_OCCURS_WITH", "to": 403}, {"from": 70, "title": "CO_OCCURS_WITH", "to": 405}, {"from": 70, "title": "CO_OCCURS_WITH", "to": 406}, {"from": 70, "title": "CO_OCCURS_WITH", "to": 407}, {"from": 70, "title": "CO_OCCURS_WITH", "to": 419}, {"from": 70, "title": "CO_OCCURS_WITH", "to": 431}, {"from": 71, "title": "FOUNDER", "to": 75}, {"from": 71, "title": "CO_OCCURS_WITH", "to": 73}, {"from": 71, "title": "CO_OCCURS_WITH", "to": 74}, {"from": 71, "title": "CO_OCCURS_WITH", "to": 76}, {"from": 71, "title": "CO_OCCURS_WITH", "to": 77}, {"from": 71, "title": "CO_OCCURS_WITH", "to": 78}, {"from": 71, "title": "CO_OCCURS_WITH", "to": 79}, {"from": 72, "title": "CO_OCCURS_WITH", "to": 85}, {"from": 72, "title": "CO_OCCURS_WITH", "to": 97}, {"from": 73, "title": "CO_OCCURS_WITH", "to": 74}, {"from": 73, "title": "CO_OCCURS_WITH", "to": 75}, {"from": 73, "title": "CO_OCCURS_WITH", "to": 76}, {"from": 73, "title": "CO_OCCURS_WITH", "to": 77}, {"from": 73, "title": "CO_OCCURS_WITH", "to": 78}, {"from": 73, "title": "CO_OCCURS_WITH", "to": 79}, {"from": 73, "title": "CO_OCCURS_WITH", "to": 299}, {"from": 73, "title": "CO_OCCURS_WITH", "to": 300}, {"from": 73, "title": "CO_OCCURS_WITH", "to": 301}, {"from": 73, "title": "CO_OCCURS_WITH", "to": 302}, {"from": 73, "title": "CO_OCCURS_WITH", "to": 303}, {"from": 73, "title": "CO_OCCURS_WITH", "to": 304}, {"from": 73, "title": "CO_OCCURS_WITH", "to": 282}, {"from": 73, "title": "WITHIN", "to": "chunk_12"}, {"from": 73, "title": "CO_OCCURS_WITH", "to": 419}, {"from": 73, "title": "CO_OCCURS_WITH", "to": 431}, {"from": 74, "title": "CO_OCCURS_WITH", "to": 75}, {"from": 74, "title": "CO_OCCURS_WITH", "to": 76}, {"from": 74, "title": "CO_OCCURS_WITH", "to": 77}, {"from": 74, "title": "CO_OCCURS_WITH", "to": 78}, {"from": 74, "title": "CO_OCCURS_WITH", "to": 79}, {"from": 74, "title": "WITHIN", "to": "chunk_12"}, {"from": 74, "title": "CO_OCCURS_WITH", "to": 419}, {"from": 74, "title": "CO_OCCURS_WITH", "to": 431}, {"from": 75, "title": "CO_OCCURS_WITH", "to": 76}, {"from": 75, "title": "CO_OCCURS_WITH", "to": 77}, {"from": 75, "title": "CO_OCCURS_WITH", "to": 78}, {"from": 75, "title": "CO_OCCURS_WITH", "to": 79}, {"from": 75, "title": "WITHIN", "to": "chunk_12"}, {"from": 75, "title": "HEADQUARTERED_IN", "to": 356}, {"from": 75, "title": "CO_OCCURS_WITH", "to": 364}, {"from": 75, "title": "CO_OCCURS_WITH", "to": 374}, {"from": 75, "title": "CO_OCCURS_WITH", "to": 375}, {"from": 75, "title": "FOUNDER", "to": 431}, {"from": 75, "title": "FOUNDER", "to": 432}, {"from": 75, "title": "SUBSIDIARY_OF", "to": 422}, {"from": 75, "title": "HEADQUARTERED_IN", "to": 413}, {"from": 75, "title": "CO_OCCURS_WITH", "to": 419}, {"from": 76, "title": "CO_OCCURS_WITH", "to": 77}, {"from": 76, "title": "CO_OCCURS_WITH", "to": 78}, {"from": 76, "title": "CO_OCCURS_WITH", "to": 79}, {"from": 76, "title": "WITHIN", "to": "chunk_12"}, {"from": 76, "title": "CO_OCCURS_WITH", "to": 419}, {"from": 76, "title": "CO_OCCURS_WITH", "to": 431}, {"from": 77, "title": "CO_OCCURS_WITH", "to": 78}, {"from": 77, "title": "CO_OCCURS_WITH", "to": 79}, {"from": 77, "title": "WITHIN", "to": "chunk_12"}, {"from": 77, "title": "CO_OCCURS_WITH", "to": 419}, {"from": 77, "title": "CO_OCCURS_WITH", "to": 431}, {"from": 78, "title": "CO_OCCURS_WITH", "to": 79}, {"from": 80, "title": "CO_OCCURS_WITH", "to": 81}, {"from": 80, "title": "CO_OCCURS_WITH", "to": 82}, {"from": 80, "title": "WITHIN", "to": "chunk_13"}, {"from": 81, "title": "CO_OCCURS_WITH", "to": 82}, {"from": 81, "title": "WITHIN", "to": "chunk_13"}, {"from": 82, "title": "WITHIN", "to": "chunk_13"}, {"from": 83, "title": "CO_OCCURS_WITH", "to": 84}, {"from": 85, "title": "CO_OCCURS_WITH", "to": 97}, {"from": 86, "title": "CO_OCCURS_WITH", "to": 97}, {"from": 86, "title": "CO_OCCURS_WITH", "to": 99}, {"from": 86, "title": "CO_OCCURS_WITH", "to": 100}, {"from": 86, "title": "CO_OCCURS_WITH", "to": 101}, {"from": 88, "title": "CO_OCCURS_WITH", "to": 233}, {"from": 88, "title": "CO_OCCURS_WITH", "to": 234}, {"from": 88, "title": "CO_OCCURS_WITH", "to": 250}, {"from": 88, "title": "CO_OCCURS_WITH", "to": 251}, {"from": 88, "title": "CO_OCCURS_WITH", "to": 253}, {"from": 88, "title": "CO_OCCURS_WITH", "to": 265}, {"from": 88, "title": "CO_OCCURS_WITH", "to": 266}, {"from": 88, "title": "CO_OCCURS_WITH", "to": 267}, {"from": 88, "title": "WITHIN", "to": "chunk_9"}, {"from": 88, "title": "CO_OCCURS_WITH", "to": 52}, {"from": 88, "title": "CO_OCCURS_WITH", "to": 376}, {"from": 88, "title": "CO_OCCURS_WITH", "to": 377}, {"from": 89, "title": "CO_OCCURS_WITH", "to": 129}, {"from": 89, "title": "CO_OCCURS_WITH", "to": 134}, {"from": 89, "title": "CO_OCCURS_WITH", "to": 135}, {"from": 89, "title": "CO_OCCURS_WITH", "to": 136}, {"from": 89, "title": "CO_OCCURS_WITH", "to": 137}, {"from": 89, "title": "CO_OCCURS_WITH", "to": 138}, {"from": 89, "title": "CO_OCCURS_WITH", "to": 139}, {"from": 89, "title": "CO_OCCURS_WITH", "to": 140}, {"from": 89, "title": "CO_OCCURS_WITH", "to": 141}, {"from": 89, "title": "CO_OCCURS_WITH", "to": 142}, {"from": 89, "title": "CO_OCCURS_WITH", "to": 145}, {"from": 89, "title": "CO_OCCURS_WITH", "to": 146}, {"from": 89, "title": "CO_OCCURS_WITH", "to": 147}, {"from": 89, "title": "CO_OCCURS_WITH", "to": 148}, {"from": 89, "title": "CO_OCCURS_WITH", "to": 149}, {"from": 89, "title": "CO_OCCURS_WITH", "to": 150}, {"from": 89, "title": "CO_OCCURS_WITH", "to": 151}, {"from": 89, "title": "CO_OCCURS_WITH", "to": 152}, {"from": 89, "title": "CO_OCCURS_WITH", "to": 153}, {"from": 89, "title": "CO_OCCURS_WITH", "to": 102}, {"from": 89, "title": "CO_OCCURS_WITH", "to": 112}, {"from": 89, "title": "CO_OCCURS_WITH", "to": 113}, {"from": 89, "title": "CO_OCCURS_WITH", "to": 116}, {"from": 89, "title": "CO_OCCURS_WITH", "to": 118}, {"from": 89, "title": "CO_OCCURS_WITH", "to": 121}, {"from": 89, "title": "CO_OCCURS_WITH", "to": 126}, {"from": 89, "title": "WITHIN", "to": "chunk_10"}, {"from": 89, "title": "CO_OCCURS_WITH", "to": 384}, {"from": 89, "title": "CO_OCCURS_WITH", "to": 389}, {"from": 97, "title": "CO_OCCURS_WITH", "to": 99}, {"from": 97, "title": "CO_OCCURS_WITH", "to": 100}, {"from": 97, "title": "CO_OCCURS_WITH", "to": 101}, {"from": 98, "title": "CO_OCCURS_WITH", "to": 102}, {"from": 98, "title": "CO_OCCURS_WITH", "to": 103}, {"from": 98, "title": "CO_OCCURS_WITH", "to": 104}, {"from": 98, "title": "CO_OCCURS_WITH", "to": 105}, {"from": 98, "title": "CO_OCCURS_WITH", "to": 106}, {"from": 99, "title": "CO_OCCURS_WITH", "to": 100}, {"from": 99, "title": "CO_OCCURS_WITH", "to": 101}, {"from": 100, "title": "CO_OCCURS_WITH", "to": 101}, {"from": 102, "title": "CO_OCCURS_WITH", "to": 103}, {"from": 102, "title": "CO_OCCURS_WITH", "to": 104}, {"from": 102, "title": "CO_OCCURS_WITH", "to": 105}, {"from": 102, "title": "CO_OCCURS_WITH", "to": 106}, {"from": 102, "title": "CO_OCCURS_WITH", "to": 129}, {"from": 102, "title": "CO_OCCURS_WITH", "to": 134}, {"from": 102, "title": "CO_OCCURS_WITH", "to": 135}, {"from": 102, "title": "CO_OCCURS_WITH", "to": 136}, {"from": 102, "title": "CO_OCCURS_WITH", "to": 137}, {"from": 102, "title": "CO_OCCURS_WITH", "to": 138}, {"from": 102, "title": "CO_OCCURS_WITH", "to": 139}, {"from": 102, "title": "CO_OCCURS_WITH", "to": 140}, {"from": 102, "title": "CO_OCCURS_WITH", "to": 141}, {"from": 102, "title": "CO_OCCURS_WITH", "to": 142}, {"from": 102, "title": "CO_OCCURS_WITH", "to": 144}, {"from": 102, "title": "CO_OCCURS_WITH", "to": 145}, {"from": 102, "title": "CO_OCCURS_WITH", "to": 146}, {"from": 102, "title": "CO_OCCURS_WITH", "to": 147}, {"from": 102, "title": "CO_OCCURS_WITH", "to": 148}, {"from": 102, "title": "CO_OCCURS_WITH", "to": 149}, {"from": 102, "title": "CO_OCCURS_WITH", "to": 150}, {"from": 102, "title": "CO_OCCURS_WITH", "to": 151}, {"from": 102, "title": "CO_OCCURS_WITH", "to": 152}, {"from": 102, "title": "CO_OCCURS_WITH", "to": 153}, {"from": 102, "title": "CO_OCCURS_WITH", "to": 112}, {"from": 102, "title": "CO_OCCURS_WITH", "to": 113}, {"from": 102, "title": "CO_OCCURS_WITH", "to": 116}, {"from": 102, "title": "CO_OCCURS_WITH", "to": 118}, {"from": 102, "title": "CO_OCCURS_WITH", "to": 121}, {"from": 102, "title": "CO_OCCURS_WITH", "to": 126}, {"from": 102, "title": "CO_OCCURS_WITH", "to": 233}, {"from": 102, "title": "CO_OCCURS_WITH", "to": 234}, {"from": 102, "title": "CO_OCCURS_WITH", "to": 250}, {"from": 102, "title": "CO_OCCURS_WITH", "to": 251}, {"from": 102, "title": "CO_OCCURS_WITH", "to": 253}, {"from": 102, "title": "WITHIN", "to": "chunk_10"}, {"from": 102, "title": "CO_OCCURS_WITH", "to": 393}, {"from": 102, "title": "CO_OCCURS_WITH", "to": 394}, {"from": 103, "title": "CO_OCCURS_WITH", "to": 104}, {"from": 103, "title": "CO_OCCURS_WITH", "to": 105}, {"from": 103, "title": "CO_OCCURS_WITH", "to": 106}, {"from": 104, "title": "CO_OCCURS_WITH", "to": 105}, {"from": 104, "title": "CO_OCCURS_WITH", "to": 106}, {"from": 105, "title": "CO_OCCURS_WITH", "to": 106}, {"from": 112, "title": "CO_OCCURS_WITH", "to": 129}, {"from": 112, "title": "CO_OCCURS_WITH", "to": 134}, {"from": 112, "title": "CO_OCCURS_WITH", "to": 136}, {"from": 112, "title": "CO_OCCURS_WITH", "to": 137}, {"from": 112, "title": "CO_OCCURS_WITH", "to": 138}, {"from": 112, "title": "CO_OCCURS_WITH", "to": 139}, {"from": 112, "title": "CO_OCCURS_WITH", "to": 140}, {"from": 112, "title": "CO_OCCURS_WITH", "to": 141}, {"from": 112, "title": "CO_OCCURS_WITH", "to": 142}, {"from": 112, "title": "CO_OCCURS_WITH", "to": 144}, {"from": 112, "title": "CO_OCCURS_WITH", "to": 145}, {"from": 112, "title": "CO_OCCURS_WITH", "to": 146}, {"from": 112, "title": "CO_OCCURS_WITH", "to": 147}, {"from": 112, "title": "CO_OCCURS_WITH", "to": 148}, {"from": 112, "title": "CO_OCCURS_WITH", "to": 149}, {"from": 112, "title": "CO_OCCURS_WITH", "to": 150}, {"from": 112, "title": "CO_OCCURS_WITH", "to": 151}, {"from": 112, "title": "CO_OCCURS_WITH", "to": 152}, {"from": 112, "title": "CO_OCCURS_WITH", "to": 153}, {"from": 112, "title": "CO_OCCURS_WITH", "to": 116}, {"from": 112, "title": "CO_OCCURS_WITH", "to": 118}, {"from": 112, "title": "CO_OCCURS_WITH", "to": 121}, {"from": 112, "title": "CO_OCCURS_WITH", "to": 126}, {"from": 112, "title": "WITHIN", "to": "chunk_10"}, {"from": 112, "title": "CO_OCCURS_WITH", "to": 384}, {"from": 112, "title": "CO_OCCURS_WITH", "to": 388}, {"from": 112, "title": "CO_OCCURS_WITH", "to": 389}, {"from": 113, "title": "CO_OCCURS_WITH", "to": 129}, {"from": 113, "title": "CO_OCCURS_WITH", "to": 134}, {"from": 113, "title": "CO_OCCURS_WITH", "to": 136}, {"from": 113, "title": "CO_OCCURS_WITH", "to": 137}, {"from": 113, "title": "CO_OCCURS_WITH", "to": 138}, {"from": 113, "title": "CO_OCCURS_WITH", "to": 139}, {"from": 113, "title": "CO_OCCURS_WITH", "to": 140}, {"from": 113, "title": "CO_OCCURS_WITH", "to": 141}, {"from": 113, "title": "CO_OCCURS_WITH", "to": 142}, {"from": 113, "title": "CO_OCCURS_WITH", "to": 144}, {"from": 113, "title": "CO_OCCURS_WITH", "to": 145}, {"from": 113, "title": "CO_OCCURS_WITH", "to": 146}, {"from": 113, "title": "CO_OCCURS_WITH", "to": 147}, {"from": 113, "title": "CO_OCCURS_WITH", "to": 148}, {"from": 113, "title": "CO_OCCURS_WITH", "to": 149}, {"from": 113, "title": "CO_OCCURS_WITH", "to": 150}, {"from": 113, "title": "CO_OCCURS_WITH", "to": 151}, {"from": 113, "title": "CO_OCCURS_WITH", "to": 152}, {"from": 113, "title": "CO_OCCURS_WITH", "to": 153}, {"from": 113, "title": "CO_OCCURS_WITH", "to": 118}, {"from": 113, "title": "CO_OCCURS_WITH", "to": 121}, {"from": 113, "title": "CO_OCCURS_WITH", "to": 126}, {"from": 116, "title": "CO_OCCURS_WITH", "to": 129}, {"from": 116, "title": "CO_OCCURS_WITH", "to": 134}, {"from": 116, "title": "CO_OCCURS_WITH", "to": 135}, {"from": 116, "title": "CO_OCCURS_WITH", "to": 136}, {"from": 116, "title": "CO_OCCURS_WITH", "to": 137}, {"from": 116, "title": "CO_OCCURS_WITH", "to": 138}, {"from": 116, "title": "CO_OCCURS_WITH", "to": 139}, {"from": 116, "title": "CO_OCCURS_WITH", "to": 140}, {"from": 116, "title": "CO_OCCURS_WITH", "to": 141}, {"from": 116, "title": "CO_OCCURS_WITH", "to": 142}, {"from": 116, "title": "CO_OCCURS_WITH", "to": 144}, {"from": 116, "title": "CO_OCCURS_WITH", "to": 145}, {"from": 116, "title": "CO_OCCURS_WITH", "to": 146}, {"from": 116, "title": "CO_OCCURS_WITH", "to": 147}, {"from": 116, "title": "CO_OCCURS_WITH", "to": 148}, {"from": 116, "title": "CO_OCCURS_WITH", "to": 149}, {"from": 116, "title": "CO_OCCURS_WITH", "to": 150}, {"from": 116, "title": "CO_OCCURS_WITH", "to": 151}, {"from": 116, "title": "CO_OCCURS_WITH", "to": 152}, {"from": 116, "title": "CO_OCCURS_WITH", "to": 153}, {"from": 116, "title": "CO_OCCURS_WITH", "to": 118}, {"from": 116, "title": "CO_OCCURS_WITH", "to": 121}, {"from": 116, "title": "CO_OCCURS_WITH", "to": 126}, {"from": 116, "title": "WITHIN", "to": "chunk_10"}, {"from": 116, "title": "CO_OCCURS_WITH", "to": 384}, {"from": 116, "title": "CO_OCCURS_WITH", "to": 388}, {"from": 116, "title": "CO_OCCURS_WITH", "to": 389}, {"from": 118, "title": "CO_OCCURS_WITH", "to": 129}, {"from": 118, "title": "CO_OCCURS_WITH", "to": 134}, {"from": 118, "title": "CO_OCCURS_WITH", "to": 135}, {"from": 118, "title": "CO_OCCURS_WITH", "to": 136}, {"from": 118, "title": "CO_OCCURS_WITH", "to": 138}, {"from": 118, "title": "CO_OCCURS_WITH", "to": 139}, {"from": 118, "title": "CO_OCCURS_WITH", "to": 140}, {"from": 118, "title": "CO_OCCURS_WITH", "to": 141}, {"from": 118, "title": "CO_OCCURS_WITH", "to": 142}, {"from": 118, "title": "CO_OCCURS_WITH", "to": 144}, {"from": 118, "title": "CO_OCCURS_WITH", "to": 145}, {"from": 118, "title": "CO_OCCURS_WITH", "to": 146}, {"from": 118, "title": "CO_OCCURS_WITH", "to": 147}, {"from": 118, "title": "CO_OCCURS_WITH", "to": 148}, {"from": 118, "title": "CO_OCCURS_WITH", "to": 149}, {"from": 118, "title": "CO_OCCURS_WITH", "to": 150}, {"from": 118, "title": "CO_OCCURS_WITH", "to": 151}, {"from": 118, "title": "CO_OCCURS_WITH", "to": 152}, {"from": 118, "title": "CO_OCCURS_WITH", "to": 153}, {"from": 118, "title": "CO_OCCURS_WITH", "to": 126}, {"from": 118, "title": "WITHIN", "to": "chunk_10"}, {"from": 118, "title": "CO_OCCURS_WITH", "to": 390}, {"from": 121, "title": "CO_OCCURS_WITH", "to": 129}, {"from": 121, "title": "CO_OCCURS_WITH", "to": 134}, {"from": 121, "title": "CO_OCCURS_WITH", "to": 135}, {"from": 121, "title": "CO_OCCURS_WITH", "to": 136}, {"from": 121, "title": "CO_OCCURS_WITH", "to": 137}, {"from": 121, "title": "CO_OCCURS_WITH", "to": 138}, {"from": 121, "title": "CO_OCCURS_WITH", "to": 139}, {"from": 121, "title": "CO_OCCURS_WITH", "to": 140}, {"from": 121, "title": "CO_OCCURS_WITH", "to": 141}, {"from": 121, "title": "CO_OCCURS_WITH", "to": 142}, {"from": 121, "title": "CO_OCCURS_WITH", "to": 144}, {"from": 121, "title": "CO_OCCURS_WITH", "to": 145}, {"from": 121, "title": "CO_OCCURS_WITH", "to": 146}, {"from": 121, "title": "CO_OCCURS_WITH", "to": 147}, {"from": 121, "title": "CO_OCCURS_WITH", "to": 148}, {"from": 121, "title": "CO_OCCURS_WITH", "to": 149}, {"from": 121, "title": "CO_OCCURS_WITH", "to": 150}, {"from": 121, "title": "CO_OCCURS_WITH", "to": 151}, {"from": 121, "title": "CO_OCCURS_WITH", "to": 152}, {"from": 121, "title": "CO_OCCURS_WITH", "to": 153}, {"from": 121, "title": "CO_OCCURS_WITH", "to": 126}, {"from": 121, "title": "WITHIN", "to": "chunk_10"}, {"from": 121, "title": "CO_OCCURS_WITH", "to": 390}, {"from": 126, "title": "CO_OCCURS_WITH", "to": 129}, {"from": 126, "title": "CO_OCCURS_WITH", "to": 134}, {"from": 126, "title": "CO_OCCURS_WITH", "to": 135}, {"from": 126, "title": "CO_OCCURS_WITH", "to": 136}, {"from": 126, "title": "CO_OCCURS_WITH", "to": 137}, {"from": 126, "title": "CO_OCCURS_WITH", "to": 138}, {"from": 126, "title": "CO_OCCURS_WITH", "to": 139}, {"from": 126, "title": "CO_OCCURS_WITH", "to": 141}, {"from": 126, "title": "CO_OCCURS_WITH", "to": 142}, {"from": 126, "title": "CO_OCCURS_WITH", "to": 144}, {"from": 126, "title": "CO_OCCURS_WITH", "to": 145}, {"from": 126, "title": "CO_OCCURS_WITH", "to": 146}, {"from": 126, "title": "CO_OCCURS_WITH", "to": 147}, {"from": 126, "title": "CO_OCCURS_WITH", "to": 148}, {"from": 126, "title": "CO_OCCURS_WITH", "to": 149}, {"from": 126, "title": "CO_OCCURS_WITH", "to": 150}, {"from": 126, "title": "CO_OCCURS_WITH", "to": 151}, {"from": 126, "title": "CO_OCCURS_WITH", "to": 152}, {"from": 126, "title": "CO_OCCURS_WITH", "to": 153}, {"from": 129, "title": "CO_OCCURS_WITH", "to": 134}, {"from": 129, "title": "CO_OCCURS_WITH", "to": 135}, {"from": 129, "title": "CO_OCCURS_WITH", "to": 136}, {"from": 129, "title": "CO_OCCURS_WITH", "to": 137}, {"from": 129, "title": "CO_OCCURS_WITH", "to": 138}, {"from": 129, "title": "CO_OCCURS_WITH", "to": 139}, {"from": 129, "title": "CO_OCCURS_WITH", "to": 140}, {"from": 129, "title": "CO_OCCURS_WITH", "to": 141}, {"from": 129, "title": "CO_OCCURS_WITH", "to": 142}, {"from": 129, "title": "CO_OCCURS_WITH", "to": 144}, {"from": 129, "title": "CO_OCCURS_WITH", "to": 145}, {"from": 129, "title": "CO_OCCURS_WITH", "to": 146}, {"from": 129, "title": "CO_OCCURS_WITH", "to": 147}, {"from": 129, "title": "CO_OCCURS_WITH", "to": 148}, {"from": 129, "title": "CO_OCCURS_WITH", "to": 149}, {"from": 129, "title": "CO_OCCURS_WITH", "to": 150}, {"from": 129, "title": "CO_OCCURS_WITH", "to": 151}, {"from": 129, "title": "CO_OCCURS_WITH", "to": 152}, {"from": 129, "title": "CO_OCCURS_WITH", "to": 153}, {"from": 129, "title": "WITHIN", "to": "chunk_11"}, {"from": 129, "title": "CO_OCCURS_WITH", "to": 373}, {"from": 129, "title": "CO_OCCURS_WITH", "to": 155}, {"from": 129, "title": "CO_OCCURS_WITH", "to": 390}, {"from": 129, "title": "CO_OCCURS_WITH", "to": 193}, {"from": 129, "title": "CO_OCCURS_WITH", "to": 395}, {"from": 129, "title": "CO_OCCURS_WITH", "to": 396}, {"from": 131, "title": "CO_OCCURS_WITH", "to": 226}, {"from": 131, "title": "CO_OCCURS_WITH", "to": 227}, {"from": 131, "title": "WITHIN", "to": "chunk_11"}, {"from": 134, "title": "CO_OCCURS_WITH", "to": 135}, {"from": 134, "title": "CO_OCCURS_WITH", "to": 136}, {"from": 134, "title": "CO_OCCURS_WITH", "to": 137}, {"from": 134, "title": "CO_OCCURS_WITH", "to": 138}, {"from": 134, "title": "CO_OCCURS_WITH", "to": 139}, {"from": 134, "title": "CO_OCCURS_WITH", "to": 140}, {"from": 134, "title": "CO_OCCURS_WITH", "to": 141}, {"from": 134, "title": "CO_OCCURS_WITH", "to": 142}, {"from": 134, "title": "CO_OCCURS_WITH", "to": 144}, {"from": 134, "title": "CO_OCCURS_WITH", "to": 145}, {"from": 134, "title": "CO_OCCURS_WITH", "to": 146}, {"from": 134, "title": "CO_OCCURS_WITH", "to": 147}, {"from": 134, "title": "CO_OCCURS_WITH", "to": 148}, {"from": 134, "title": "CO_OCCURS_WITH", "to": 149}, {"from": 134, "title": "CO_OCCURS_WITH", "to": 150}, {"from": 134, "title": "CO_OCCURS_WITH", "to": 151}, {"from": 134, "title": "CO_OCCURS_WITH", "to": 152}, {"from": 134, "title": "CO_OCCURS_WITH", "to": 153}, {"from": 135, "title": "CO_OCCURS_WITH", "to": 136}, {"from": 135, "title": "CO_OCCURS_WITH", "to": 137}, {"from": 135, "title": "CO_OCCURS_WITH", "to": 138}, {"from": 135, "title": "CO_OCCURS_WITH", "to": 139}, {"from": 135, "title": "CO_OCCURS_WITH", "to": 140}, {"from": 135, "title": "CO_OCCURS_WITH", "to": 141}, {"from": 135, "title": "CO_OCCURS_WITH", "to": 142}, {"from": 135, "title": "CO_OCCURS_WITH", "to": 144}, {"from": 135, "title": "CO_OCCURS_WITH", "to": 145}, {"from": 135, "title": "CO_OCCURS_WITH", "to": 146}, {"from": 135, "title": "CO_OCCURS_WITH", "to": 147}, {"from": 135, "title": "CO_OCCURS_WITH", "to": 148}, {"from": 135, "title": "CO_OCCURS_WITH", "to": 149}, {"from": 135, "title": "CO_OCCURS_WITH", "to": 150}, {"from": 135, "title": "CO_OCCURS_WITH", "to": 151}, {"from": 135, "title": "CO_OCCURS_WITH", "to": 152}, {"from": 135, "title": "CO_OCCURS_WITH", "to": 153}, {"from": 136, "title": "CO_OCCURS_WITH", "to": 137}, {"from": 136, "title": "CO_OCCURS_WITH", "to": 138}, {"from": 136, "title": "CO_OCCURS_WITH", "to": 139}, {"from": 136, "title": "CO_OCCURS_WITH", "to": 140}, {"from": 136, "title": "CO_OCCURS_WITH", "to": 141}, {"from": 136, "title": "CO_OCCURS_WITH", "to": 142}, {"from": 136, "title": "CO_OCCURS_WITH", "to": 144}, {"from": 136, "title": "CO_OCCURS_WITH", "to": 145}, {"from": 136, "title": "CO_OCCURS_WITH", "to": 146}, {"from": 136, "title": "CO_OCCURS_WITH", "to": 147}, {"from": 136, "title": "CO_OCCURS_WITH", "to": 148}, {"from": 136, "title": "CO_OCCURS_WITH", "to": 149}, {"from": 136, "title": "CO_OCCURS_WITH", "to": 150}, {"from": 136, "title": "CO_OCCURS_WITH", "to": 151}, {"from": 136, "title": "CO_OCCURS_WITH", "to": 152}, {"from": 136, "title": "CO_OCCURS_WITH", "to": 153}, {"from": 137, "title": "CO_OCCURS_WITH", "to": 138}, {"from": 137, "title": "CO_OCCURS_WITH", "to": 139}, {"from": 137, "title": "CO_OCCURS_WITH", "to": 140}, {"from": 137, "title": "CO_OCCURS_WITH", "to": 141}, {"from": 137, "title": "CO_OCCURS_WITH", "to": 142}, {"from": 137, "title": "CO_OCCURS_WITH", "to": 144}, {"from": 137, "title": "CO_OCCURS_WITH", "to": 145}, {"from": 137, "title": "CO_OCCURS_WITH", "to": 146}, {"from": 137, "title": "CO_OCCURS_WITH", "to": 147}, {"from": 137, "title": "CO_OCCURS_WITH", "to": 148}, {"from": 137, "title": "CO_OCCURS_WITH", "to": 149}, {"from": 137, "title": "CO_OCCURS_WITH", "to": 150}, {"from": 137, "title": "CO_OCCURS_WITH", "to": 151}, {"from": 137, "title": "CO_OCCURS_WITH", "to": 152}, {"from": 137, "title": "CO_OCCURS_WITH", "to": 153}, {"from": 137, "title": "WITHIN", "to": "chunk_10"}, {"from": 137, "title": "CO_OCCURS_WITH", "to": 390}, {"from": 138, "title": "CO_OCCURS_WITH", "to": 139}, {"from": 138, "title": "CO_OCCURS_WITH", "to": 140}, {"from": 138, "title": "CO_OCCURS_WITH", "to": 141}, {"from": 138, "title": "CO_OCCURS_WITH", "to": 142}, {"from": 138, "title": "CO_OCCURS_WITH", "to": 144}, {"from": 138, "title": "CO_OCCURS_WITH", "to": 145}, {"from": 138, "title": "CO_OCCURS_WITH", "to": 146}, {"from": 138, "title": "CO_OCCURS_WITH", "to": 147}, {"from": 138, "title": "CO_OCCURS_WITH", "to": 148}, {"from": 138, "title": "CO_OCCURS_WITH", "to": 149}, {"from": 138, "title": "CO_OCCURS_WITH", "to": 150}, {"from": 138, "title": "CO_OCCURS_WITH", "to": 151}, {"from": 138, "title": "CO_OCCURS_WITH", "to": 152}, {"from": 138, "title": "CO_OCCURS_WITH", "to": 153}, {"from": 138, "title": "WITHIN", "to": "chunk_10"}, {"from": 138, "title": "CO_OCCURS_WITH", "to": 390}, {"from": 139, "title": "CO_OCCURS_WITH", "to": 140}, {"from": 139, "title": "CO_OCCURS_WITH", "to": 141}, {"from": 139, "title": "CO_OCCURS_WITH", "to": 142}, {"from": 139, "title": "CO_OCCURS_WITH", "to": 144}, {"from": 139, "title": "CO_OCCURS_WITH", "to": 145}, {"from": 139, "title": "CO_OCCURS_WITH", "to": 146}, {"from": 139, "title": "CO_OCCURS_WITH", "to": 147}, {"from": 139, "title": "CO_OCCURS_WITH", "to": 148}, {"from": 139, "title": "CO_OCCURS_WITH", "to": 149}, {"from": 139, "title": "CO_OCCURS_WITH", "to": 150}, {"from": 139, "title": "CO_OCCURS_WITH", "to": 151}, {"from": 139, "title": "CO_OCCURS_WITH", "to": 152}, {"from": 139, "title": "CO_OCCURS_WITH", "to": 153}, {"from": 139, "title": "WITHIN", "to": "chunk_10"}, {"from": 139, "title": "CO_OCCURS_WITH", "to": 390}, {"from": 140, "title": "CO_OCCURS_WITH", "to": 141}, {"from": 140, "title": "CO_OCCURS_WITH", "to": 142}, {"from": 140, "title": "CO_OCCURS_WITH", "to": 144}, {"from": 140, "title": "CO_OCCURS_WITH", "to": 145}, {"from": 140, "title": "CO_OCCURS_WITH", "to": 146}, {"from": 140, "title": "CO_OCCURS_WITH", "to": 147}, {"from": 140, "title": "CO_OCCURS_WITH", "to": 148}, {"from": 140, "title": "CO_OCCURS_WITH", "to": 149}, {"from": 140, "title": "CO_OCCURS_WITH", "to": 150}, {"from": 140, "title": "CO_OCCURS_WITH", "to": 151}, {"from": 140, "title": "CO_OCCURS_WITH", "to": 152}, {"from": 140, "title": "CO_OCCURS_WITH", "to": 153}, {"from": 141, "title": "CO_OCCURS_WITH", "to": 142}, {"from": 141, "title": "CO_OCCURS_WITH", "to": 144}, {"from": 141, "title": "CO_OCCURS_WITH", "to": 145}, {"from": 141, "title": "CO_OCCURS_WITH", "to": 146}, {"from": 141, "title": "CO_OCCURS_WITH", "to": 147}, {"from": 141, "title": "CO_OCCURS_WITH", "to": 148}, {"from": 141, "title": "CO_OCCURS_WITH", "to": 149}, {"from": 141, "title": "CO_OCCURS_WITH", "to": 150}, {"from": 141, "title": "CO_OCCURS_WITH", "to": 151}, {"from": 141, "title": "CO_OCCURS_WITH", "to": 152}, {"from": 141, "title": "CO_OCCURS_WITH", "to": 153}, {"from": 142, "title": "CO_OCCURS_WITH", "to": 144}, {"from": 142, "title": "CO_OCCURS_WITH", "to": 145}, {"from": 142, "title": "CO_OCCURS_WITH", "to": 146}, {"from": 142, "title": "CO_OCCURS_WITH", "to": 147}, {"from": 142, "title": "CO_OCCURS_WITH", "to": 148}, {"from": 142, "title": "CO_OCCURS_WITH", "to": 149}, {"from": 142, "title": "CO_OCCURS_WITH", "to": 150}, {"from": 142, "title": "CO_OCCURS_WITH", "to": 151}, {"from": 142, "title": "CO_OCCURS_WITH", "to": 152}, {"from": 142, "title": "CO_OCCURS_WITH", "to": 153}, {"from": 143, "title": "CO_OCCURS_WITH", "to": 158}, {"from": 143, "title": "CO_OCCURS_WITH", "to": 154}, {"from": 143, "title": "CO_OCCURS_WITH", "to": 155}, {"from": 143, "title": "CO_OCCURS_WITH", "to": 156}, {"from": 143, "title": "CO_OCCURS_WITH", "to": 157}, {"from": 144, "title": "CO_OCCURS_WITH", "to": 145}, {"from": 144, "title": "CO_OCCURS_WITH", "to": 146}, {"from": 144, "title": "CO_OCCURS_WITH", "to": 147}, {"from": 144, "title": "CO_OCCURS_WITH", "to": 148}, {"from": 144, "title": "CO_OCCURS_WITH", "to": 149}, {"from": 144, "title": "CO_OCCURS_WITH", "to": 150}, {"from": 144, "title": "CO_OCCURS_WITH", "to": 151}, {"from": 144, "title": "CO_OCCURS_WITH", "to": 152}, {"from": 144, "title": "CO_OCCURS_WITH", "to": 153}, {"from": 145, "title": "CO_OCCURS_WITH", "to": 146}, {"from": 145, "title": "CO_OCCURS_WITH", "to": 147}, {"from": 145, "title": "CO_OCCURS_WITH", "to": 148}, {"from": 145, "title": "CO_OCCURS_WITH", "to": 149}, {"from": 145, "title": "CO_OCCURS_WITH", "to": 150}, {"from": 145, "title": "CO_OCCURS_WITH", "to": 151}, {"from": 145, "title": "CO_OCCURS_WITH", "to": 152}, {"from": 145, "title": "CO_OCCURS_WITH", "to": 153}, {"from": 146, "title": "CO_OCCURS_WITH", "to": 147}, {"from": 146, "title": "CO_OCCURS_WITH", "to": 148}, {"from": 146, "title": "CO_OCCURS_WITH", "to": 149}, {"from": 146, "title": "CO_OCCURS_WITH", "to": 150}, {"from": 146, "title": "CO_OCCURS_WITH", "to": 151}, {"from": 146, "title": "CO_OCCURS_WITH", "to": 152}, {"from": 146, "title": "CO_OCCURS_WITH", "to": 153}, {"from": 147, "title": "CO_OCCURS_WITH", "to": 148}, {"from": 147, "title": "CO_OCCURS_WITH", "to": 149}, {"from": 147, "title": "CO_OCCURS_WITH", "to": 150}, {"from": 147, "title": "CO_OCCURS_WITH", "to": 151}, {"from": 147, "title": "CO_OCCURS_WITH", "to": 152}, {"from": 147, "title": "CO_OCCURS_WITH", "to": 153}, {"from": 148, "title": "CO_OCCURS_WITH", "to": 149}, {"from": 148, "title": "CO_OCCURS_WITH", "to": 150}, {"from": 148, "title": "CO_OCCURS_WITH", "to": 151}, {"from": 148, "title": "CO_OCCURS_WITH", "to": 152}, {"from": 148, "title": "CO_OCCURS_WITH", "to": 153}, {"from": 149, "title": "CO_OCCURS_WITH", "to": 150}, {"from": 149, "title": "CO_OCCURS_WITH", "to": 151}, {"from": 149, "title": "CO_OCCURS_WITH", "to": 152}, {"from": 149, "title": "CO_OCCURS_WITH", "to": 153}, {"from": 149, "title": "WITHIN", "to": "chunk_10"}, {"from": 149, "title": "CO_OCCURS_WITH", "to": 390}, {"from": 150, "title": "CO_OCCURS_WITH", "to": 151}, {"from": 150, "title": "CO_OCCURS_WITH", "to": 152}, {"from": 150, "title": "CO_OCCURS_WITH", "to": 153}, {"from": 151, "title": "CO_OCCURS_WITH", "to": 152}, {"from": 151, "title": "CO_OCCURS_WITH", "to": 153}, {"from": 152, "title": "CO_OCCURS_WITH", "to": 153}, {"from": 154, "title": "CO_OCCURS_WITH", "to": 158}, {"from": 154, "title": "CO_OCCURS_WITH", "to": 155}, {"from": 154, "title": "CO_OCCURS_WITH", "to": 156}, {"from": 154, "title": "CO_OCCURS_WITH", "to": 157}, {"from": 155, "title": "CO_OCCURS_WITH", "to": 158}, {"from": 155, "title": "CO_OCCURS_WITH", "to": 156}, {"from": 155, "title": "CO_OCCURS_WITH", "to": 157}, {"from": 155, "title": "CO_OCCURS_WITH", "to": 166}, {"from": 155, "title": "CO_OCCURS_WITH", "to": 169}, {"from": 155, "title": "CO_OCCURS_WITH", "to": 175}, {"from": 155, "title": "CO_OCCURS_WITH", "to": 178}, {"from": 155, "title": "CO_OCCURS_WITH", "to": 186}, {"from": 155, "title": "CO_OCCURS_WITH", "to": 189}, {"from": 155, "title": "CO_OCCURS_WITH", "to": 190}, {"from": 155, "title": "CO_OCCURS_WITH", "to": 191}, {"from": 155, "title": "CO_OCCURS_WITH", "to": 192}, {"from": 155, "title": "CO_OCCURS_WITH", "to": 196}, {"from": 155, "title": "CO_OCCURS_WITH", "to": 197}, {"from": 155, "title": "CO_OCCURS_WITH", "to": 198}, {"from": 155, "title": "CO_OCCURS_WITH", "to": 199}, {"from": 155, "title": "CO_OCCURS_WITH", "to": 200}, {"from": 155, "title": "CO_OCCURS_WITH", "to": 201}, {"from": 155, "title": "CO_OCCURS_WITH", "to": 202}, {"from": 155, "title": "CO_OCCURS_WITH", "to": 203}, {"from": 155, "title": "CO_OCCURS_WITH", "to": 204}, {"from": 155, "title": "CO_OCCURS_WITH", "to": 205}, {"from": 155, "title": "CO_OCCURS_WITH", "to": 206}, {"from": 155, "title": "CO_OCCURS_WITH", "to": 207}, {"from": 155, "title": "CO_OCCURS_WITH", "to": 208}, {"from": 155, "title": "CO_OCCURS_WITH", "to": 209}, {"from": 155, "title": "CO_OCCURS_WITH", "to": 210}, {"from": 155, "title": "WITHIN", "to": "chunk_11"}, {"from": 155, "title": "CO_OCCURS_WITH", "to": 373}, {"from": 155, "title": "CO_OCCURS_WITH", "to": 193}, {"from": 155, "title": "CO_OCCURS_WITH", "to": 395}, {"from": 155, "title": "CO_OCCURS_WITH", "to": 396}, {"from": 155, "title": "CO_OCCURS_WITH", "to": 402}, {"from": 155, "title": "CO_OCCURS_WITH", "to": 403}, {"from": 155, "title": "CO_OCCURS_WITH", "to": 405}, {"from": 155, "title": "CO_OCCURS_WITH", "to": 406}, {"from": 155, "title": "CO_OCCURS_WITH", "to": 407}, {"from": 155, "title": "CO_OCCURS_WITH", "to": 228}, {"from": 155, "title": "CO_OCCURS_WITH", "to": 229}, {"from": 155, "title": "CO_OCCURS_WITH", "to": 168}, {"from": 155, "title": "CO_OCCURS_WITH", "to": 404}, {"from": 155, "title": "CO_OCCURS_WITH", "to": 214}, {"from": 155, "title": "CO_OCCURS_WITH", "to": 408}, {"from": 155, "title": "CO_OCCURS_WITH", "to": 409}, {"from": 156, "title": "CO_OCCURS_WITH", "to": 158}, {"from": 156, "title": "CO_OCCURS_WITH", "to": 157}, {"from": 157, "title": "CO_OCCURS_WITH", "to": 158}, {"from": 166, "title": "CO_OCCURS_WITH", "to": 175}, {"from": 166, "title": "CO_OCCURS_WITH", "to": 178}, {"from": 166, "title": "CO_OCCURS_WITH", "to": 186}, {"from": 166, "title": "CO_OCCURS_WITH", "to": 189}, {"from": 166, "title": "CO_OCCURS_WITH", "to": 190}, {"from": 166, "title": "CO_OCCURS_WITH", "to": 191}, {"from": 166, "title": "CO_OCCURS_WITH", "to": 192}, {"from": 166, "title": "CO_OCCURS_WITH", "to": 196}, {"from": 166, "title": "CO_OCCURS_WITH", "to": 197}, {"from": 166, "title": "CO_OCCURS_WITH", "to": 198}, {"from": 166, "title": "CO_OCCURS_WITH", "to": 199}, {"from": 166, "title": "CO_OCCURS_WITH", "to": 200}, {"from": 166, "title": "CO_OCCURS_WITH", "to": 201}, {"from": 166, "title": "CO_OCCURS_WITH", "to": 202}, {"from": 166, "title": "CO_OCCURS_WITH", "to": 203}, {"from": 166, "title": "CO_OCCURS_WITH", "to": 204}, {"from": 166, "title": "CO_OCCURS_WITH", "to": 205}, {"from": 166, "title": "CO_OCCURS_WITH", "to": 206}, {"from": 166, "title": "CO_OCCURS_WITH", "to": 207}, {"from": 166, "title": "CO_OCCURS_WITH", "to": 208}, {"from": 166, "title": "CO_OCCURS_WITH", "to": 209}, {"from": 166, "title": "CO_OCCURS_WITH", "to": 210}, {"from": 166, "title": "WITHIN", "to": "chunk_11"}, {"from": 166, "title": "CO_OCCURS_WITH", "to": 402}, {"from": 166, "title": "CO_OCCURS_WITH", "to": 403}, {"from": 166, "title": "CO_OCCURS_WITH", "to": 405}, {"from": 166, "title": "CO_OCCURS_WITH", "to": 406}, {"from": 166, "title": "CO_OCCURS_WITH", "to": 407}, {"from": 168, "title": "PARENT", "to": 190}, {"from": 168, "title": "FOUNDER", "to": 210}, {"from": 168, "title": "FOUNDER", "to": 209}, {"from": 168, "title": "FOUNDER", "to": 205}, {"from": 168, "title": "CO_OCCURS_WITH", "to": 230}, {"from": 168, "title": "CO_OCCURS_WITH", "to": 231}, {"from": 168, "title": "CO_OCCURS_WITH", "to": 232}, {"from": 168, "title": "CO_OCCURS_WITH", "to": 215}, {"from": 168, "title": "WITHIN", "to": "chunk_11"}, {"from": 168, "title": "CO_OCCURS_WITH", "to": 228}, {"from": 168, "title": "CO_OCCURS_WITH", "to": 229}, {"from": 168, "title": "CO_OCCURS_WITH", "to": 404}, {"from": 168, "title": "CO_OCCURS_WITH", "to": 214}, {"from": 168, "title": "CO_OCCURS_WITH", "to": 408}, {"from": 168, "title": "CO_OCCURS_WITH", "to": 409}, {"from": 168, "title": "CO_OCCURS_WITH", "to": 186}, {"from": 169, "title": "CO_OCCURS_WITH", "to": 175}, {"from": 169, "title": "CO_OCCURS_WITH", "to": 178}, {"from": 169, "title": "CO_OCCURS_WITH", "to": 186}, {"from": 169, "title": "CO_OCCURS_WITH", "to": 189}, {"from": 169, "title": "CO_OCCURS_WITH", "to": 190}, {"from": 169, "title": "CO_OCCURS_WITH", "to": 191}, {"from": 169, "title": "CO_OCCURS_WITH", "to": 192}, {"from": 169, "title": "CO_OCCURS_WITH", "to": 196}, {"from": 169, "title": "CO_OCCURS_WITH", "to": 197}, {"from": 169, "title": "CO_OCCURS_WITH", "to": 198}, {"from": 169, "title": "CO_OCCURS_WITH", "to": 199}, {"from": 169, "title": "CO_OCCURS_WITH", "to": 200}, {"from": 169, "title": "CO_OCCURS_WITH", "to": 201}, {"from": 169, "title": "CO_OCCURS_WITH", "to": 202}, {"from": 169, "title": "CO_OCCURS_WITH", "to": 203}, {"from": 169, "title": "CO_OCCURS_WITH", "to": 204}, {"from": 169, "title": "CO_OCCURS_WITH", "to": 205}, {"from": 169, "title": "CO_OCCURS_WITH", "to": 206}, {"from": 169, "title": "CO_OCCURS_WITH", "to": 207}, {"from": 169, "title": "CO_OCCURS_WITH", "to": 208}, {"from": 169, "title": "CO_OCCURS_WITH", "to": 209}, {"from": 169, "title": "CO_OCCURS_WITH", "to": 210}, {"from": 175, "title": "CO_OCCURS_WITH", "to": 186}, {"from": 175, "title": "CO_OCCURS_WITH", "to": 189}, {"from": 175, "title": "CO_OCCURS_WITH", "to": 190}, {"from": 175, "title": "CO_OCCURS_WITH", "to": 192}, {"from": 175, "title": "CO_OCCURS_WITH", "to": 196}, {"from": 175, "title": "CO_OCCURS_WITH", "to": 197}, {"from": 175, "title": "CO_OCCURS_WITH", "to": 198}, {"from": 175, "title": "CO_OCCURS_WITH", "to": 199}, {"from": 175, "title": "CO_OCCURS_WITH", "to": 200}, {"from": 175, "title": "CO_OCCURS_WITH", "to": 201}, {"from": 175, "title": "CO_OCCURS_WITH", "to": 202}, {"from": 175, "title": "CO_OCCURS_WITH", "to": 203}, {"from": 175, "title": "CO_OCCURS_WITH", "to": 204}, {"from": 175, "title": "CO_OCCURS_WITH", "to": 205}, {"from": 175, "title": "CO_OCCURS_WITH", "to": 206}, {"from": 175, "title": "CO_OCCURS_WITH", "to": 207}, {"from": 175, "title": "CO_OCCURS_WITH", "to": 208}, {"from": 175, "title": "CO_OCCURS_WITH", "to": 209}, {"from": 175, "title": "CO_OCCURS_WITH", "to": 210}, {"from": 178, "title": "CO_OCCURS_WITH", "to": 186}, {"from": 178, "title": "CO_OCCURS_WITH", "to": 189}, {"from": 178, "title": "CO_OCCURS_WITH", "to": 190}, {"from": 178, "title": "CO_OCCURS_WITH", "to": 191}, {"from": 178, "title": "CO_OCCURS_WITH", "to": 192}, {"from": 178, "title": "CO_OCCURS_WITH", "to": 196}, {"from": 178, "title": "CO_OCCURS_WITH", "to": 197}, {"from": 178, "title": "CO_OCCURS_WITH", "to": 198}, {"from": 178, "title": "CO_OCCURS_WITH", "to": 199}, {"from": 178, "title": "CO_OCCURS_WITH", "to": 200}, {"from": 178, "title": "CO_OCCURS_WITH", "to": 201}, {"from": 178, "title": "CO_OCCURS_WITH", "to": 202}, {"from": 178, "title": "CO_OCCURS_WITH", "to": 203}, {"from": 178, "title": "CO_OCCURS_WITH", "to": 204}, {"from": 178, "title": "CO_OCCURS_WITH", "to": 205}, {"from": 178, "title": "CO_OCCURS_WITH", "to": 206}, {"from": 178, "title": "CO_OCCURS_WITH", "to": 207}, {"from": 178, "title": "CO_OCCURS_WITH", "to": 208}, {"from": 178, "title": "CO_OCCURS_WITH", "to": 209}, {"from": 178, "title": "CO_OCCURS_WITH", "to": 210}, {"from": 186, "title": "HEADQUARTERED_IN", "to": 209}, {"from": 186, "title": "HEADQUARTERED_IN", "to": 205}, {"from": 186, "title": "CO_OCCURS_WITH", "to": 189}, {"from": 186, "title": "CO_OCCURS_WITH", "to": 190}, {"from": 186, "title": "CO_OCCURS_WITH", "to": 191}, {"from": 186, "title": "CO_OCCURS_WITH", "to": 192}, {"from": 186, "title": "CO_OCCURS_WITH", "to": 196}, {"from": 186, "title": "CO_OCCURS_WITH", "to": 197}, {"from": 186, "title": "CO_OCCURS_WITH", "to": 198}, {"from": 186, "title": "CO_OCCURS_WITH", "to": 199}, {"from": 186, "title": "CO_OCCURS_WITH", "to": 200}, {"from": 186, "title": "CO_OCCURS_WITH", "to": 201}, {"from": 186, "title": "CO_OCCURS_WITH", "to": 202}, {"from": 186, "title": "CO_OCCURS_WITH", "to": 203}, {"from": 186, "title": "CO_OCCURS_WITH", "to": 204}, {"from": 186, "title": "CO_OCCURS_WITH", "to": 206}, {"from": 186, "title": "CO_OCCURS_WITH", "to": 207}, {"from": 186, "title": "CO_OCCURS_WITH", "to": 208}, {"from": 186, "title": "CO_OCCURS_WITH", "to": 210}, {"from": 186, "title": "WITHIN", "to": "chunk_11"}, {"from": 186, "title": "CO_OCCURS_WITH", "to": 402}, {"from": 186, "title": "CO_OCCURS_WITH", "to": 403}, {"from": 186, "title": "CO_OCCURS_WITH", "to": 405}, {"from": 186, "title": "CO_OCCURS_WITH", "to": 406}, {"from": 186, "title": "CO_OCCURS_WITH", "to": 407}, {"from": 186, "title": "CO_OCCURS_WITH", "to": 228}, {"from": 186, "title": "CO_OCCURS_WITH", "to": 229}, {"from": 186, "title": "CO_OCCURS_WITH", "to": 404}, {"from": 186, "title": "CO_OCCURS_WITH", "to": 408}, {"from": 186, "title": "CO_OCCURS_WITH", "to": 409}, {"from": 187, "title": "CO_OCCURS_WITH", "to": 193}, {"from": 187, "title": "CO_OCCURS_WITH", "to": 194}, {"from": 187, "title": "CO_OCCURS_WITH", "to": 195}, {"from": 187, "title": "CO_OCCURS_WITH", "to": 188}, {"from": 188, "title": "CO_OCCURS_WITH", "to": 193}, {"from": 188, "title": "CO_OCCURS_WITH", "to": 194}, {"from": 188, "title": "CO_OCCURS_WITH", "to": 195}, {"from": 189, "title": "CO_OCCURS_WITH", "to": 190}, {"from": 189, "title": "CO_OCCURS_WITH", "to": 191}, {"from": 189, "title": "CO_OCCURS_WITH", "to": 192}, {"from": 189, "title": "CO_OCCURS_WITH", "to": 196}, {"from": 189, "title": "CO_OCCURS_WITH", "to": 197}, {"from": 189, "title": "CO_OCCURS_WITH", "to": 198}, {"from": 189, "title": "CO_OCCURS_WITH", "to": 199}, {"from": 189, "title": "CO_OCCURS_WITH", "to": 200}, {"from": 189, "title": "CO_OCCURS_WITH", "to": 201}, {"from": 189, "title": "CO_OCCURS_WITH", "to": 202}, {"from": 189, "title": "CO_OCCURS_WITH", "to": 203}, {"from": 189, "title": "CO_OCCURS_WITH", "to": 204}, {"from": 189, "title": "CO_OCCURS_WITH", "to": 205}, {"from": 189, "title": "CO_OCCURS_WITH", "to": 206}, {"from": 189, "title": "CO_OCCURS_WITH", "to": 207}, {"from": 189, "title": "CO_OCCURS_WITH", "to": 208}, {"from": 189, "title": "CO_OCCURS_WITH", "to": 209}, {"from": 189, "title": "CO_OCCURS_WITH", "to": 210}, {"from": 189, "title": "WITHIN", "to": "chunk_11"}, {"from": 189, "title": "CO_OCCURS_WITH", "to": 402}, {"from": 189, "title": "CO_OCCURS_WITH", "to": 403}, {"from": 189, "title": "CO_OCCURS_WITH", "to": 405}, {"from": 189, "title": "CO_OCCURS_WITH", "to": 406}, {"from": 189, "title": "CO_OCCURS_WITH", "to": 407}, {"from": 190, "title": "FOUNDER", "to": 210}, {"from": 190, "title": "FOUNDER", "to": 209}, {"from": 190, "title": "FOUNDER", "to": 205}, {"from": 190, "title": "CO_OCCURS_WITH", "to": 191}, {"from": 190, "title": "CO_OCCURS_WITH", "to": 192}, {"from": 190, "title": "CO_OCCURS_WITH", "to": 196}, {"from": 190, "title": "CO_OCCURS_WITH", "to": 197}, {"from": 190, "title": "CO_OCCURS_WITH", "to": 198}, {"from": 190, "title": "CO_OCCURS_WITH", "to": 199}, {"from": 190, "title": "CO_OCCURS_WITH", "to": 200}, {"from": 190, "title": "CO_OCCURS_WITH", "to": 201}, {"from": 190, "title": "CO_OCCURS_WITH", "to": 202}, {"from": 190, "title": "CO_OCCURS_WITH", "to": 203}, {"from": 190, "title": "CO_OCCURS_WITH", "to": 204}, {"from": 190, "title": "CO_OCCURS_WITH", "to": 206}, {"from": 190, "title": "CO_OCCURS_WITH", "to": 207}, {"from": 190, "title": "CO_OCCURS_WITH", "to": 208}, {"from": 190, "title": "WITHIN", "to": "chunk_11"}, {"from": 190, "title": "CO_OCCURS_WITH", "to": 402}, {"from": 190, "title": "CO_OCCURS_WITH", "to": 403}, {"from": 190, "title": "CO_OCCURS_WITH", "to": 405}, {"from": 190, "title": "CO_OCCURS_WITH", "to": 406}, {"from": 190, "title": "CO_OCCURS_WITH", "to": 407}, {"from": 191, "title": "CO_OCCURS_WITH", "to": 192}, {"from": 191, "title": "CO_OCCURS_WITH", "to": 196}, {"from": 191, "title": "CO_OCCURS_WITH", "to": 197}, {"from": 191, "title": "CO_OCCURS_WITH", "to": 198}, {"from": 191, "title": "CO_OCCURS_WITH", "to": 199}, {"from": 191, "title": "CO_OCCURS_WITH", "to": 200}, {"from": 191, "title": "CO_OCCURS_WITH", "to": 201}, {"from": 191, "title": "CO_OCCURS_WITH", "to": 202}, {"from": 191, "title": "CO_OCCURS_WITH", "to": 203}, {"from": 191, "title": "CO_OCCURS_WITH", "to": 204}, {"from": 191, "title": "CO_OCCURS_WITH", "to": 205}, {"from": 191, "title": "CO_OCCURS_WITH", "to": 206}, {"from": 191, "title": "CO_OCCURS_WITH", "to": 207}, {"from": 191, "title": "CO_OCCURS_WITH", "to": 208}, {"from": 191, "title": "CO_OCCURS_WITH", "to": 209}, {"from": 191, "title": "CO_OCCURS_WITH", "to": 210}, {"from": 192, "title": "CO_OCCURS_WITH", "to": 196}, {"from": 192, "title": "CO_OCCURS_WITH", "to": 197}, {"from": 192, "title": "CO_OCCURS_WITH", "to": 198}, {"from": 192, "title": "CO_OCCURS_WITH", "to": 199}, {"from": 192, "title": "CO_OCCURS_WITH", "to": 200}, {"from": 192, "title": "CO_OCCURS_WITH", "to": 201}, {"from": 192, "title": "CO_OCCURS_WITH", "to": 202}, {"from": 192, "title": "CO_OCCURS_WITH", "to": 203}, {"from": 192, "title": "CO_OCCURS_WITH", "to": 204}, {"from": 192, "title": "CO_OCCURS_WITH", "to": 205}, {"from": 192, "title": "CO_OCCURS_WITH", "to": 206}, {"from": 192, "title": "CO_OCCURS_WITH", "to": 207}, {"from": 192, "title": "CO_OCCURS_WITH", "to": 208}, {"from": 192, "title": "CO_OCCURS_WITH", "to": 209}, {"from": 192, "title": "CO_OCCURS_WITH", "to": 210}, {"from": 193, "title": "CO_OCCURS_WITH", "to": 194}, {"from": 193, "title": "CO_OCCURS_WITH", "to": 195}, {"from": 193, "title": "WITHIN", "to": "chunk_11"}, {"from": 193, "title": "CO_OCCURS_WITH", "to": 395}, {"from": 193, "title": "CO_OCCURS_WITH", "to": 396}, {"from": 194, "title": "CO_OCCURS_WITH", "to": 195}, {"from": 196, "title": "CO_OCCURS_WITH", "to": 197}, {"from": 196, "title": "CO_OCCURS_WITH", "to": 198}, {"from": 196, "title": "CO_OCCURS_WITH", "to": 199}, {"from": 196, "title": "CO_OCCURS_WITH", "to": 200}, {"from": 196, "title": "CO_OCCURS_WITH", "to": 201}, {"from": 196, "title": "CO_OCCURS_WITH", "to": 202}, {"from": 196, "title": "CO_OCCURS_WITH", "to": 203}, {"from": 196, "title": "CO_OCCURS_WITH", "to": 204}, {"from": 196, "title": "CO_OCCURS_WITH", "to": 205}, {"from": 196, "title": "CO_OCCURS_WITH", "to": 206}, {"from": 196, "title": "CO_OCCURS_WITH", "to": 207}, {"from": 196, "title": "CO_OCCURS_WITH", "to": 208}, {"from": 196, "title": "CO_OCCURS_WITH", "to": 209}, {"from": 196, "title": "CO_OCCURS_WITH", "to": 210}, {"from": 196, "title": "WITHIN", "to": "chunk_11"}, {"from": 196, "title": "CO_OCCURS_WITH", "to": 402}, {"from": 196, "title": "CO_OCCURS_WITH", "to": 403}, {"from": 196, "title": "CO_OCCURS_WITH", "to": 405}, {"from": 196, "title": "CO_OCCURS_WITH", "to": 406}, {"from": 196, "title": "CO_OCCURS_WITH", "to": 407}, {"from": 197, "title": "CO_OCCURS_WITH", "to": 198}, {"from": 197, "title": "CO_OCCURS_WITH", "to": 199}, {"from": 197, "title": "CO_OCCURS_WITH", "to": 200}, {"from": 197, "title": "CO_OCCURS_WITH", "to": 201}, {"from": 197, "title": "CO_OCCURS_WITH", "to": 202}, {"from": 197, "title": "CO_OCCURS_WITH", "to": 203}, {"from": 197, "title": "CO_OCCURS_WITH", "to": 204}, {"from": 197, "title": "CO_OCCURS_WITH", "to": 205}, {"from": 197, "title": "CO_OCCURS_WITH", "to": 206}, {"from": 197, "title": "CO_OCCURS_WITH", "to": 207}, {"from": 197, "title": "CO_OCCURS_WITH", "to": 208}, {"from": 197, "title": "CO_OCCURS_WITH", "to": 209}, {"from": 197, "title": "CO_OCCURS_WITH", "to": 210}, {"from": 197, "title": "WITHIN", "to": "chunk_11"}, {"from": 197, "title": "CO_OCCURS_WITH", "to": 402}, {"from": 197, "title": "CO_OCCURS_WITH", "to": 403}, {"from": 197, "title": "CO_OCCURS_WITH", "to": 405}, {"from": 197, "title": "CO_OCCURS_WITH", "to": 406}, {"from": 197, "title": "CO_OCCURS_WITH", "to": 407}, {"from": 198, "title": "CO_OCCURS_WITH", "to": 199}, {"from": 198, "title": "CO_OCCURS_WITH", "to": 200}, {"from": 198, "title": "CO_OCCURS_WITH", "to": 201}, {"from": 198, "title": "CO_OCCURS_WITH", "to": 202}, {"from": 198, "title": "CO_OCCURS_WITH", "to": 203}, {"from": 198, "title": "CO_OCCURS_WITH", "to": 204}, {"from": 198, "title": "CO_OCCURS_WITH", "to": 205}, {"from": 198, "title": "CO_OCCURS_WITH", "to": 206}, {"from": 198, "title": "CO_OCCURS_WITH", "to": 207}, {"from": 198, "title": "CO_OCCURS_WITH", "to": 208}, {"from": 198, "title": "CO_OCCURS_WITH", "to": 209}, {"from": 198, "title": "CO_OCCURS_WITH", "to": 210}, {"from": 198, "title": "WITHIN", "to": "chunk_11"}, {"from": 198, "title": "CO_OCCURS_WITH", "to": 402}, {"from": 198, "title": "CO_OCCURS_WITH", "to": 403}, {"from": 198, "title": "CO_OCCURS_WITH", "to": 405}, {"from": 198, "title": "CO_OCCURS_WITH", "to": 406}, {"from": 198, "title": "CO_OCCURS_WITH", "to": 407}, {"from": 199, "title": "CO_OCCURS_WITH", "to": 200}, {"from": 199, "title": "CO_OCCURS_WITH", "to": 201}, {"from": 199, "title": "CO_OCCURS_WITH", "to": 202}, {"from": 199, "title": "CO_OCCURS_WITH", "to": 203}, {"from": 199, "title": "CO_OCCURS_WITH", "to": 204}, {"from": 199, "title": "CO_OCCURS_WITH", "to": 205}, {"from": 199, "title": "CO_OCCURS_WITH", "to": 206}, {"from": 199, "title": "CO_OCCURS_WITH", "to": 207}, {"from": 199, "title": "CO_OCCURS_WITH", "to": 208}, {"from": 199, "title": "CO_OCCURS_WITH", "to": 209}, {"from": 199, "title": "CO_OCCURS_WITH", "to": 210}, {"from": 199, "title": "WITHIN", "to": "chunk_11"}, {"from": 199, "title": "CO_OCCURS_WITH", "to": 402}, {"from": 199, "title": "CO_OCCURS_WITH", "to": 403}, {"from": 199, "title": "CO_OCCURS_WITH", "to": 405}, {"from": 199, "title": "CO_OCCURS_WITH", "to": 406}, {"from": 199, "title": "CO_OCCURS_WITH", "to": 407}, {"from": 200, "title": "CO_OCCURS_WITH", "to": 201}, {"from": 200, "title": "CO_OCCURS_WITH", "to": 202}, {"from": 200, "title": "CO_OCCURS_WITH", "to": 203}, {"from": 200, "title": "CO_OCCURS_WITH", "to": 204}, {"from": 200, "title": "CO_OCCURS_WITH", "to": 205}, {"from": 200, "title": "CO_OCCURS_WITH", "to": 206}, {"from": 200, "title": "CO_OCCURS_WITH", "to": 207}, {"from": 200, "title": "CO_OCCURS_WITH", "to": 208}, {"from": 200, "title": "CO_OCCURS_WITH", "to": 209}, {"from": 200, "title": "CO_OCCURS_WITH", "to": 210}, {"from": 200, "title": "WITHIN", "to": "chunk_11"}, {"from": 200, "title": "CO_OCCURS_WITH", "to": 402}, {"from": 200, "title": "CO_OCCURS_WITH", "to": 403}, {"from": 200, "title": "CO_OCCURS_WITH", "to": 405}, {"from": 200, "title": "CO_OCCURS_WITH", "to": 406}, {"from": 200, "title": "CO_OCCURS_WITH", "to": 407}, {"from": 201, "title": "CO_OCCURS_WITH", "to": 202}, {"from": 201, "title": "CO_OCCURS_WITH", "to": 203}, {"from": 201, "title": "CO_OCCURS_WITH", "to": 204}, {"from": 201, "title": "CO_OCCURS_WITH", "to": 205}, {"from": 201, "title": "CO_OCCURS_WITH", "to": 206}, {"from": 201, "title": "CO_OCCURS_WITH", "to": 207}, {"from": 201, "title": "CO_OCCURS_WITH", "to": 208}, {"from": 201, "title": "CO_OCCURS_WITH", "to": 209}, {"from": 201, "title": "CO_OCCURS_WITH", "to": 210}, {"from": 201, "title": "WITHIN", "to": "chunk_11"}, {"from": 201, "title": "CO_OCCURS_WITH", "to": 402}, {"from": 201, "title": "CO_OCCURS_WITH", "to": 403}, {"from": 201, "title": "CO_OCCURS_WITH", "to": 405}, {"from": 201, "title": "CO_OCCURS_WITH", "to": 406}, {"from": 201, "title": "CO_OCCURS_WITH", "to": 407}, {"from": 202, "title": "CO_OCCURS_WITH", "to": 203}, {"from": 202, "title": "CO_OCCURS_WITH", "to": 204}, {"from": 202, "title": "CO_OCCURS_WITH", "to": 205}, {"from": 202, "title": "CO_OCCURS_WITH", "to": 206}, {"from": 202, "title": "CO_OCCURS_WITH", "to": 207}, {"from": 202, "title": "CO_OCCURS_WITH", "to": 208}, {"from": 202, "title": "CO_OCCURS_WITH", "to": 209}, {"from": 202, "title": "CO_OCCURS_WITH", "to": 210}, {"from": 203, "title": "CO_OCCURS_WITH", "to": 204}, {"from": 203, "title": "CO_OCCURS_WITH", "to": 205}, {"from": 203, "title": "CO_OCCURS_WITH", "to": 206}, {"from": 203, "title": "CO_OCCURS_WITH", "to": 207}, {"from": 203, "title": "CO_OCCURS_WITH", "to": 208}, {"from": 203, "title": "CO_OCCURS_WITH", "to": 209}, {"from": 203, "title": "CO_OCCURS_WITH", "to": 210}, {"from": 204, "title": "CO_OCCURS_WITH", "to": 205}, {"from": 204, "title": "CO_OCCURS_WITH", "to": 206}, {"from": 204, "title": "CO_OCCURS_WITH", "to": 207}, {"from": 204, "title": "CO_OCCURS_WITH", "to": 208}, {"from": 204, "title": "CO_OCCURS_WITH", "to": 209}, {"from": 204, "title": "CO_OCCURS_WITH", "to": 210}, {"from": 205, "title": "SUBSIDIARY_OF", "to": 209}, {"from": 205, "title": "CO_OCCURS_WITH", "to": 206}, {"from": 205, "title": "CO_OCCURS_WITH", "to": 207}, {"from": 205, "title": "CO_OCCURS_WITH", "to": 208}, {"from": 205, "title": "CO_OCCURS_WITH", "to": 210}, {"from": 206, "title": "CO_OCCURS_WITH", "to": 207}, {"from": 206, "title": "CO_OCCURS_WITH", "to": 208}, {"from": 206, "title": "CO_OCCURS_WITH", "to": 209}, {"from": 206, "title": "CO_OCCURS_WITH", "to": 210}, {"from": 207, "title": "CO_OCCURS_WITH", "to": 208}, {"from": 207, "title": "CO_OCCURS_WITH", "to": 209}, {"from": 207, "title": "CO_OCCURS_WITH", "to": 210}, {"from": 208, "title": "CO_OCCURS_WITH", "to": 209}, {"from": 208, "title": "CO_OCCURS_WITH", "to": 210}, {"from": 209, "title": "SUBSIDIARY_OF", "to": 210}, {"from": 214, "title": "CO_OCCURS_WITH", "to": 228}, {"from": 214, "title": "CO_OCCURS_WITH", "to": 229}, {"from": 214, "title": "WITHIN", "to": "chunk_11"}, {"from": 214, "title": "CO_OCCURS_WITH", "to": 404}, {"from": 214, "title": "CO_OCCURS_WITH", "to": 408}, {"from": 214, "title": "CO_OCCURS_WITH", "to": 409}, {"from": 215, "title": "CO_OCCURS_WITH", "to": 228}, {"from": 215, "title": "CO_OCCURS_WITH", "to": 231}, {"from": 215, "title": "CO_OCCURS_WITH", "to": 232}, {"from": 215, "title": "CO_OCCURS_WITH", "to": 222}, {"from": 215, "title": "CO_OCCURS_WITH", "to": 223}, {"from": 215, "title": "WITHIN", "to": "chunk_12"}, {"from": 217, "title": "CO_OCCURS_WITH", "to": 224}, {"from": 217, "title": "CO_OCCURS_WITH", "to": 225}, {"from": 217, "title": "WITHIN", "to": "chunk_12"}, {"from": 217, "title": "CO_OCCURS_WITH", "to": 363}, {"from": 217, "title": "CO_OCCURS_WITH", "to": 371}, {"from": 218, "title": "CO_OCCURS_WITH", "to": 224}, {"from": 218, "title": "CO_OCCURS_WITH", "to": 225}, {"from": 218, "title": "WITHIN", "to": "chunk_12"}, {"from": 221, "title": "CO_OCCURS_WITH", "to": 230}, {"from": 221, "title": "CO_OCCURS_WITH", "to": 231}, {"from": 221, "title": "CO_OCCURS_WITH", "to": 232}, {"from": 221, "title": "WITHIN", "to": "chunk_12"}, {"from": 222, "title": "CO_OCCURS_WITH", "to": 230}, {"from": 222, "title": "CO_OCCURS_WITH", "to": 231}, {"from": 222, "title": "CO_OCCURS_WITH", "to": 232}, {"from": 222, "title": "WITHIN", "to": "chunk_12"}, {"from": 223, "title": "CO_OCCURS_WITH", "to": 230}, {"from": 223, "title": "CO_OCCURS_WITH", "to": 231}, {"from": 223, "title": "CO_OCCURS_WITH", "to": 232}, {"from": 224, "title": "CO_OCCURS_WITH", "to": 225}, {"from": 224, "title": "WITHIN", "to": "chunk_12"}, {"from": 224, "title": "CO_OCCURS_WITH", "to": 357}, {"from": 224, "title": "CO_OCCURS_WITH", "to": 363}, {"from": 224, "title": "CO_OCCURS_WITH", "to": 371}, {"from": 225, "title": "WITHIN", "to": "chunk_12"}, {"from": 225, "title": "CO_OCCURS_WITH", "to": 357}, {"from": 225, "title": "CO_OCCURS_WITH", "to": 363}, {"from": 225, "title": "CO_OCCURS_WITH", "to": 371}, {"from": 226, "title": "CO_OCCURS_WITH", "to": 227}, {"from": 226, "title": "WITHIN", "to": "chunk_11"}, {"from": 227, "title": "WITHIN", "to": "chunk_11"}, {"from": 227, "title": "CO_OCCURS_WITH", "to": 356}, {"from": 227, "title": "CO_OCCURS_WITH", "to": 365}, {"from": 227, "title": "CO_OCCURS_WITH", "to": 366}, {"from": 227, "title": "CO_OCCURS_WITH", "to": 367}, {"from": 227, "title": "CO_OCCURS_WITH", "to": 368}, {"from": 227, "title": "CO_OCCURS_WITH", "to": 369}, {"from": 227, "title": "CO_OCCURS_WITH", "to": 370}, {"from": 228, "title": "CO_OCCURS_WITH", "to": 229}, {"from": 228, "title": "WITHIN", "to": "chunk_11"}, {"from": 228, "title": "CO_OCCURS_WITH", "to": 404}, {"from": 228, "title": "CO_OCCURS_WITH", "to": 408}, {"from": 228, "title": "CO_OCCURS_WITH", "to": 409}, {"from": 229, "title": "WITHIN", "to": "chunk_11"}, {"from": 229, "title": "CO_OCCURS_WITH", "to": 404}, {"from": 229, "title": "CO_OCCURS_WITH", "to": 408}, {"from": 229, "title": "CO_OCCURS_WITH", "to": 409}, {"from": 230, "title": "CO_OCCURS_WITH", "to": 231}, {"from": 230, "title": "CO_OCCURS_WITH", "to": 232}, {"from": 230, "title": "WITHIN", "to": "chunk_12"}, {"from": 231, "title": "CO_OCCURS_WITH", "to": 232}, {"from": 231, "title": "WITHIN", "to": "chunk_12"}, {"from": 232, "title": "WITHIN", "to": "chunk_12"}, {"from": 233, "title": "CO_OCCURS_WITH", "to": 250}, {"from": 233, "title": "CO_OCCURS_WITH", "to": 251}, {"from": 233, "title": "CO_OCCURS_WITH", "to": 253}, {"from": 234, "title": "CO_OCCURS_WITH", "to": 250}, {"from": 234, "title": "CO_OCCURS_WITH", "to": 251}, {"from": 234, "title": "CO_OCCURS_WITH", "to": 253}, {"from": 237, "title": "CO_OCCURS_WITH", "to": 256}, {"from": 237, "title": "CO_OCCURS_WITH", "to": 258}, {"from": 237, "title": "CO_OCCURS_WITH", "to": 259}, {"from": 237, "title": "CO_OCCURS_WITH", "to": 260}, {"from": 237, "title": "CO_OCCURS_WITH", "to": 261}, {"from": 237, "title": "CO_OCCURS_WITH", "to": 262}, {"from": 237, "title": "CO_OCCURS_WITH", "to": 252}, {"from": 237, "title": "CO_OCCURS_WITH", "to": 255}, {"from": 238, "title": "CO_OCCURS_WITH", "to": 256}, {"from": 238, "title": "CO_OCCURS_WITH", "to": 257}, {"from": 238, "title": "CO_OCCURS_WITH", "to": 258}, {"from": 238, "title": "CO_OCCURS_WITH", "to": 259}, {"from": 238, "title": "CO_OCCURS_WITH", "to": 260}, {"from": 238, "title": "CO_OCCURS_WITH", "to": 261}, {"from": 238, "title": "CO_OCCURS_WITH", "to": 262}, {"from": 238, "title": "CO_OCCURS_WITH", "to": 252}, {"from": 238, "title": "CO_OCCURS_WITH", "to": 254}, {"from": 246, "title": "CO_OCCURS_WITH", "to": 264}, {"from": 250, "title": "CO_OCCURS_WITH", "to": 251}, {"from": 250, "title": "CO_OCCURS_WITH", "to": 253}, {"from": 251, "title": "CO_OCCURS_WITH", "to": 253}, {"from": 252, "title": "CO_OCCURS_WITH", "to": 256}, {"from": 252, "title": "CO_OCCURS_WITH", "to": 257}, {"from": 252, "title": "CO_OCCURS_WITH", "to": 258}, {"from": 252, "title": "CO_OCCURS_WITH", "to": 259}, {"from": 252, "title": "CO_OCCURS_WITH", "to": 260}, {"from": 252, "title": "CO_OCCURS_WITH", "to": 261}, {"from": 252, "title": "CO_OCCURS_WITH", "to": 262}, {"from": 252, "title": "CO_OCCURS_WITH", "to": 254}, {"from": 252, "title": "CO_OCCURS_WITH", "to": 255}, {"from": 254, "title": "CO_OCCURS_WITH", "to": 256}, {"from": 254, "title": "CO_OCCURS_WITH", "to": 257}, {"from": 254, "title": "CO_OCCURS_WITH", "to": 258}, {"from": 254, "title": "CO_OCCURS_WITH", "to": 259}, {"from": 254, "title": "CO_OCCURS_WITH", "to": 260}, {"from": 254, "title": "CO_OCCURS_WITH", "to": 261}, {"from": 254, "title": "CO_OCCURS_WITH", "to": 262}, {"from": 254, "title": "CO_OCCURS_WITH", "to": 255}, {"from": 255, "title": "CO_OCCURS_WITH", "to": 256}, {"from": 255, "title": "CO_OCCURS_WITH", "to": 257}, {"from": 255, "title": "CO_OCCURS_WITH", "to": 258}, {"from": 255, "title": "CO_OCCURS_WITH", "to": 259}, {"from": 255, "title": "CO_OCCURS_WITH", "to": 260}, {"from": 255, "title": "CO_OCCURS_WITH", "to": 261}, {"from": 255, "title": "CO_OCCURS_WITH", "to": 262}, {"from": 256, "title": "CO_OCCURS_WITH", "to": 257}, {"from": 256, "title": "CO_OCCURS_WITH", "to": 258}, {"from": 256, "title": "CO_OCCURS_WITH", "to": 259}, {"from": 256, "title": "CO_OCCURS_WITH", "to": 260}, {"from": 256, "title": "CO_OCCURS_WITH", "to": 261}, {"from": 256, "title": "CO_OCCURS_WITH", "to": 262}, {"from": 257, "title": "CO_OCCURS_WITH", "to": 258}, {"from": 257, "title": "CO_OCCURS_WITH", "to": 259}, {"from": 257, "title": "CO_OCCURS_WITH", "to": 260}, {"from": 257, "title": "CO_OCCURS_WITH", "to": 261}, {"from": 257, "title": "CO_OCCURS_WITH", "to": 262}, {"from": 258, "title": "CO_OCCURS_WITH", "to": 259}, {"from": 258, "title": "CO_OCCURS_WITH", "to": 260}, {"from": 258, "title": "CO_OCCURS_WITH", "to": 261}, {"from": 258, "title": "CO_OCCURS_WITH", "to": 262}, {"from": 259, "title": "CO_OCCURS_WITH", "to": 260}, {"from": 259, "title": "CO_OCCURS_WITH", "to": 261}, {"from": 259, "title": "CO_OCCURS_WITH", "to": 262}, {"from": 260, "title": "CO_OCCURS_WITH", "to": 261}, {"from": 260, "title": "CO_OCCURS_WITH", "to": 262}, {"from": 261, "title": "CO_OCCURS_WITH", "to": 262}, {"from": 263, "title": "CO_OCCURS_WITH", "to": 264}, {"from": 265, "title": "CO_OCCURS_WITH", "to": 266}, {"from": 265, "title": "CO_OCCURS_WITH", "to": 267}, {"from": 266, "title": "CO_OCCURS_WITH", "to": 267}, {"from": 278, "title": "CO_OCCURS_WITH", "to": 296}, {"from": 278, "title": "CO_OCCURS_WITH", "to": 297}, {"from": 278, "title": "CO_OCCURS_WITH", "to": 298}, {"from": 278, "title": "CO_OCCURS_WITH", "to": 282}, {"from": 282, "title": "CO_OCCURS_WITH", "to": 295}, {"from": 282, "title": "CO_OCCURS_WITH", "to": 296}, {"from": 282, "title": "CO_OCCURS_WITH", "to": 297}, {"from": 282, "title": "CO_OCCURS_WITH", "to": 298}, {"from": 282, "title": "CO_OCCURS_WITH", "to": 299}, {"from": 282, "title": "CO_OCCURS_WITH", "to": 300}, {"from": 282, "title": "CO_OCCURS_WITH", "to": 301}, {"from": 282, "title": "CO_OCCURS_WITH", "to": 302}, {"from": 282, "title": "CO_OCCURS_WITH", "to": 303}, {"from": 282, "title": "CO_OCCURS_WITH", "to": 304}, {"from": 288, "title": "CO_OCCURS_WITH", "to": 305}, {"from": 288, "title": "CO_OCCURS_WITH", "to": 306}, {"from": 289, "title": "CO_OCCURS_WITH", "to": 290}, {"from": 289, "title": "CO_OCCURS_WITH", "to": 291}, {"from": 289, "title": "CO_OCCURS_WITH", "to": 292}, {"from": 289, "title": "CO_OCCURS_WITH", "to": 293}, {"from": 290, "title": "CO_OCCURS_WITH", "to": 291}, {"from": 290, "title": "CO_OCCURS_WITH", "to": 292}, {"from": 290, "title": "CO_OCCURS_WITH", "to": 293}, {"from": 291, "title": "CO_OCCURS_WITH", "to": 292}, {"from": 291, "title": "CO_OCCURS_WITH", "to": 293}, {"from": 292, "title": "CO_OCCURS_WITH", "to": 293}, {"from": 295, "title": "CO_OCCURS_WITH", "to": 296}, {"from": 295, "title": "CO_OCCURS_WITH", "to": 297}, {"from": 295, "title": "CO_OCCURS_WITH", "to": 298}, {"from": 296, "title": "CO_OCCURS_WITH", "to": 297}, {"from": 296, "title": "CO_OCCURS_WITH", "to": 298}, {"from": 297, "title": "CO_OCCURS_WITH", "to": 298}, {"from": 299, "title": "CO_OCCURS_WITH", "to": 300}, {"from": 299, "title": "CO_OCCURS_WITH", "to": 301}, {"from": 299, "title": "CO_OCCURS_WITH", "to": 302}, {"from": 299, "title": "CO_OCCURS_WITH", "to": 303}, {"from": 299, "title": "CO_OCCURS_WITH", "to": 304}, {"from": 300, "title": "CO_OCCURS_WITH", "to": 301}, {"from": 300, "title": "CO_OCCURS_WITH", "to": 302}, {"from": 300, "title": "CO_OCCURS_WITH", "to": 303}, {"from": 300, "title": "CO_OCCURS_WITH", "to": 304}, {"from": 301, "title": "CO_OCCURS_WITH", "to": 302}, {"from": 301, "title": "CO_OCCURS_WITH", "to": 303}, {"from": 301, "title": "CO_OCCURS_WITH", "to": 304}, {"from": 302, "title": "CO_OCCURS_WITH", "to": 303}, {"from": 302, "title": "CO_OCCURS_WITH", "to": 304}, {"from": 303, "title": "CO_OCCURS_WITH", "to": 304}, {"from": 305, "title": "CO_OCCURS_WITH", "to": 306}, {"from": 308, "title": "CO_OCCURS_WITH", "to": 352}, {"from": 308, "title": "CO_OCCURS_WITH", "to": 353}, {"from": 308, "title": "CO_OCCURS_WITH", "to": 338}, {"from": 308, "title": "CO_OCCURS_WITH", "to": 349}, {"from": 308, "title": "CO_OCCURS_WITH", "to": 350}, {"from": 308, "title": "CO_OCCURS_WITH", "to": 351}, {"from": 338, "title": "CO_OCCURS_WITH", "to": 352}, {"from": 338, "title": "CO_OCCURS_WITH", "to": 353}, {"from": 338, "title": "CO_OCCURS_WITH", "to": 349}, {"from": 338, "title": "CO_OCCURS_WITH", "to": 350}, {"from": 338, "title": "CO_OCCURS_WITH", "to": 351}, {"from": 340, "title": "CO_OCCURS_WITH", "to": 354}, {"from": 340, "title": "CO_OCCURS_WITH", "to": 355}, {"from": 344, "title": "CO_OCCURS_WITH", "to": 345}, {"from": 344, "title": "CO_OCCURS_WITH", "to": 346}, {"from": 344, "title": "CO_OCCURS_WITH", "to": 347}, {"from": 344, "title": "CO_OCCURS_WITH", "to": 348}, {"from": 345, "title": "CO_OCCURS_WITH", "to": 346}, {"from": 345, "title": "CO_OCCURS_WITH", "to": 347}, {"from": 345, "title": "CO_OCCURS_WITH", "to": 348}, {"from": 346, "title": "CO_OCCURS_WITH", "to": 347}, {"from": 346, "title": "CO_OCCURS_WITH", "to": 348}, {"from": 347, "title": "CO_OCCURS_WITH", "to": 348}, {"from": 349, "title": "CO_OCCURS_WITH", "to": 352}, {"from": 349, "title": "CO_OCCURS_WITH", "to": 353}, {"from": 349, "title": "CO_OCCURS_WITH", "to": 350}, {"from": 349, "title": "CO_OCCURS_WITH", "to": 351}, {"from": 350, "title": "CO_OCCURS_WITH", "to": 352}, {"from": 350, "title": "CO_OCCURS_WITH", "to": 353}, {"from": 350, "title": "CO_OCCURS_WITH", "to": 351}, {"from": 351, "title": "CO_OCCURS_WITH", "to": 352}, {"from": 351, "title": "CO_OCCURS_WITH", "to": 353}, {"from": 352, "title": "CO_OCCURS_WITH", "to": 353}, {"from": 354, "title": "CO_OCCURS_WITH", "to": 355}, {"from": "chunk_9", "title": "WITHIN", "to": 4}, {"from": "chunk_9", "title": "WITHIN", "to": 357}, {"from": "chunk_9", "title": "WITHIN", "to": 52}, {"from": "chunk_9", "title": "WITHIN", "to": 363}, {"from": "chunk_9", "title": "WITHIN", "to": 364}, {"from": "chunk_9", "title": "WITHIN", "to": 365}, {"from": "chunk_9", "title": "WITHIN", "to": 366}, {"from": "chunk_9", "title": "WITHIN", "to": 367}, {"from": "chunk_9", "title": "WITHIN", "to": 368}, {"from": "chunk_9", "title": "WITHIN", "to": 369}, {"from": "chunk_9", "title": "WITHIN", "to": 370}, {"from": "chunk_9", "title": "WITHIN", "to": 371}, {"from": "chunk_9", "title": "WITHIN", "to": 372}, {"from": "chunk_9", "title": "WITHIN", "to": 373}, {"from": "chunk_9", "title": "WITHIN", "to": 374}, {"from": "chunk_9", "title": "WITHIN", "to": 376}, {"from": "chunk_9", "title": "WITHIN", "to": 377}, {"from": "chunk_10", "title": "WITHIN", "to": 356}, {"from": "chunk_10", "title": "WITHIN", "to": 360}, {"from": "chunk_10", "title": "WITHIN", "to": 375}, {"from": "chunk_10", "title": "WITHIN", "to": 378}, {"from": "chunk_10", "title": "WITHIN", "to": 379}, {"from": "chunk_10", "title": "WITHIN", "to": 380}, {"from": "chunk_10", "title": "WITHIN", "to": 381}, {"from": "chunk_10", "title": "WITHIN", "to": 341}, {"from": "chunk_10", "title": "WITHIN", "to": 382}, {"from": "chunk_10", "title": "WITHIN", "to": 383}, {"from": "chunk_10", "title": "WITHIN", "to": 384}, {"from": "chunk_10", "title": "WITHIN", "to": 385}, {"from": "chunk_10", "title": "WITHIN", "to": 386}, {"from": "chunk_10", "title": "WITHIN", "to": 387}, {"from": "chunk_10", "title": "WITHIN", "to": 388}, {"from": "chunk_10", "title": "WITHIN", "to": 389}, {"from": "chunk_10", "title": "WITHIN", "to": 390}, {"from": "chunk_10", "title": "WITHIN", "to": 391}, {"from": "chunk_10", "title": "WITHIN", "to": 392}, {"from": "chunk_10", "title": "WITHIN", "to": 393}, {"from": "chunk_10", "title": "WITHIN", "to": 394}, {"from": "chunk_11", "title": "WITHIN", "to": 395}, {"from": "chunk_11", "title": "WITHIN", "to": 396}, {"from": "chunk_11", "title": "WITHIN", "to": 402}, {"from": "chunk_11", "title": "WITHIN", "to": 403}, {"from": "chunk_11", "title": "WITHIN", "to": 404}, {"from": "chunk_11", "title": "WITHIN", "to": 405}, {"from": "chunk_11", "title": "WITHIN", "to": 406}, {"from": "chunk_11", "title": "WITHIN", "to": 407}, {"from": "chunk_11", "title": "WITHIN", "to": 408}, {"from": "chunk_11", "title": "WITHIN", "to": 409}, {"from": "chunk_12", "title": "WITHIN", "to": 419}, {"from": "chunk_12", "title": "WITHIN", "to": 431}, {"from": "chunk_13", "title": "WITHIN", "to": 413}, {"from": "chunk_13", "title": "WITHIN", "to": 417}, {"from": "chunk_13", "title": "WITHIN", "to": 418}, {"from": "chunk_13", "title": "WITHIN", "to": 87}, {"from": "chunk_13", "title": "WITHIN", "to": 420}, {"from": "chunk_13", "title": "WITHIN", "to": 421}, {"from": "chunk_13", "title": "WITHIN", "to": 422}, {"from": "chunk_13", "title": "WITHIN", "to": 423}, {"from": "chunk_13", "title": "WITHIN", "to": 424}, {"from": "chunk_13", "title": "WITHIN", "to": 425}, {"from": "chunk_13", "title": "WITHIN", "to": 426}, {"from": "chunk_13", "title": "WITHIN", "to": 427}, {"from": "chunk_13", "title": "WITHIN", "to": 428}, {"from": "chunk_13", "title": "WITHIN", "to": 429}, {"from": "chunk_13", "title": "WITHIN", "to": 430}, {"from": "chunk_13", "title": "WITHIN", "to": 432}, {"from": "chunk_13", "title": "WITHIN", "to": 434}, {"from": "chunk_13", "title": "WITHIN", "to": 435}, {"from": "chunk_13", "title": "WITHIN", "to": 436}, {"from": "chunk_13", "title": "WITHIN", "to": 437}, {"from": "chunk_13", "title": "WITHIN", "to": 438}, {"from": 356, "title": "CO_OCCURS_WITH", "to": 366}, {"from": 356, "title": "CO_OCCURS_WITH", "to": 367}, {"from": 356, "title": "CO_OCCURS_WITH", "to": 368}, {"from": 356, "title": "CO_OCCURS_WITH", "to": 369}, {"from": 356, "title": "CO_OCCURS_WITH", "to": 370}, {"from": 356, "title": "CO_OCCURS_WITH", "to": 372}, {"from": 356, "title": "CO_OCCURS_WITH", "to": 364}, {"from": 356, "title": "CO_OCCURS_WITH", "to": 374}, {"from": 356, "title": "CO_OCCURS_WITH", "to": 360}, {"from": 356, "title": "CO_OCCURS_WITH", "to": 378}, {"from": 356, "title": "CO_OCCURS_WITH", "to": 379}, {"from": 356, "title": "CO_OCCURS_WITH", "to": 380}, {"from": 356, "title": "CO_OCCURS_WITH", "to": 381}, {"from": 356, "title": "CO_OCCURS_WITH", "to": 383}, {"from": 4, "title": "CO_OCCURS_WITH", "to": 376}, {"from": 4, "title": "CO_OCCURS_WITH", "to": 377}, {"from": 357, "title": "CO_OCCURS_WITH", "to": 371}, {"from": 52, "title": "CO_OCCURS_WITH", "to": 376}, {"from": 52, "title": "CO_OCCURS_WITH", "to": 377}, {"from": 360, "title": "CO_OCCURS_WITH", "to": 375}, {"from": 360, "title": "CO_OCCURS_WITH", "to": 378}, {"from": 360, "title": "CO_OCCURS_WITH", "to": 379}, {"from": 360, "title": "CO_OCCURS_WITH", "to": 380}, {"from": 360, "title": "CO_OCCURS_WITH", "to": 381}, {"from": 360, "title": "CO_OCCURS_WITH", "to": 383}, {"from": 363, "title": "CO_OCCURS_WITH", "to": 371}, {"from": 364, "title": "CO_OCCURS_WITH", "to": 374}, {"from": 364, "title": "CO_OCCURS_WITH", "to": 375}, {"from": 365, "title": "CO_OCCURS_WITH", "to": 366}, {"from": 365, "title": "CO_OCCURS_WITH", "to": 367}, {"from": 365, "title": "CO_OCCURS_WITH", "to": 368}, {"from": 365, "title": "CO_OCCURS_WITH", "to": 369}, {"from": 365, "title": "CO_OCCURS_WITH", "to": 370}, {"from": 365, "title": "CO_OCCURS_WITH", "to": 372}, {"from": 366, "title": "CO_OCCURS_WITH", "to": 367}, {"from": 366, "title": "CO_OCCURS_WITH", "to": 368}, {"from": 366, "title": "CO_OCCURS_WITH", "to": 369}, {"from": 366, "title": "CO_OCCURS_WITH", "to": 370}, {"from": 367, "title": "CO_OCCURS_WITH", "to": 368}, {"from": 367, "title": "CO_OCCURS_WITH", "to": 369}, {"from": 367, "title": "CO_OCCURS_WITH", "to": 370}, {"from": 368, "title": "CO_OCCURS_WITH", "to": 369}, {"from": 368, "title": "CO_OCCURS_WITH", "to": 370}, {"from": 369, "title": "CO_OCCURS_WITH", "to": 370}, {"from": 374, "title": "CO_OCCURS_WITH", "to": 375}, {"from": 375, "title": "CO_OCCURS_WITH", "to": 378}, {"from": 375, "title": "CO_OCCURS_WITH", "to": 379}, {"from": 375, "title": "CO_OCCURS_WITH", "to": 380}, {"from": 375, "title": "CO_OCCURS_WITH", "to": 381}, {"from": 375, "title": "CO_OCCURS_WITH", "to": 383}, {"from": 376, "title": "CO_OCCURS_WITH", "to": 377}, {"from": 378, "title": "CO_OCCURS_WITH", "to": 379}, {"from": 378, "title": "CO_OCCURS_WITH", "to": 380}, {"from": 378, "title": "CO_OCCURS_WITH", "to": 381}, {"from": 378, "title": "CO_OCCURS_WITH", "to": 383}, {"from": 379, "title": "CO_OCCURS_WITH", "to": 380}, {"from": 379, "title": "CO_OCCURS_WITH", "to": 381}, {"from": 379, "title": "CO_OCCURS_WITH", "to": 383}, {"from": 380, "title": "CO_OCCURS_WITH", "to": 381}, {"from": 380, "title": "CO_OCCURS_WITH", "to": 383}, {"from": 381, "title": "CO_OCCURS_WITH", "to": 383}, {"from": 341, "title": "CO_OCCURS_WITH", "to": 385}, {"from": 341, "title": "CO_OCCURS_WITH", "to": 386}, {"from": 341, "title": "CO_OCCURS_WITH", "to": 387}, {"from": 382, "title": "CO_OCCURS_WITH", "to": 384}, {"from": 382, "title": "CO_OCCURS_WITH", "to": 388}, {"from": 382, "title": "CO_OCCURS_WITH", "to": 389}, {"from": 384, "title": "CO_OCCURS_WITH", "to": 388}, {"from": 384, "title": "CO_OCCURS_WITH", "to": 389}, {"from": 385, "title": "CO_OCCURS_WITH", "to": 386}, {"from": 385, "title": "CO_OCCURS_WITH", "to": 387}, {"from": 386, "title": "CO_OCCURS_WITH", "to": 387}, {"from": 388, "title": "CO_OCCURS_WITH", "to": 389}, {"from": 391, "title": "CO_OCCURS_WITH", "to": 392}, {"from": 393, "title": "CO_OCCURS_WITH", "to": 394}, {"from": 395, "title": "CO_OCCURS_WITH", "to": 396}, {"from": 402, "title": "CO_OCCURS_WITH", "to": 403}, {"from": 402, "title": "CO_OCCURS_WITH", "to": 405}, {"from": 402, "title": "CO_OCCURS_WITH", "to": 406}, {"from": 402, "title": "CO_OCCURS_WITH", "to": 407}, {"from": 403, "title": "CO_OCCURS_WITH", "to": 405}, {"from": 403, "title": "CO_OCCURS_WITH", "to": 406}, {"from": 403, "title": "CO_OCCURS_WITH", "to": 407}, {"from": 404, "title": "CO_OCCURS_WITH", "to": 408}, {"from": 404, "title": "CO_OCCURS_WITH", "to": 409}, {"from": 405, "title": "CO_OCCURS_WITH", "to": 406}, {"from": 405, "title": "CO_OCCURS_WITH", "to": 407}, {"from": 406, "title": "CO_OCCURS_WITH", "to": 407}, {"from": 408, "title": "CO_OCCURS_WITH", "to": 409}, {"from": 413, "title": "HEADQUARTERED_IN", "to": 422}, {"from": 413, "title": "CO_OCCURS_WITH", "to": 420}, {"from": 413, "title": "CO_OCCURS_WITH", "to": 421}, {"from": 413, "title": "CO_OCCURS_WITH", "to": 424}, {"from": 413, "title": "CO_OCCURS_WITH", "to": 425}, {"from": 413, "title": "CO_OCCURS_WITH", "to": 426}, {"from": 413, "title": "CO_OCCURS_WITH", "to": 427}, {"from": 413, "title": "CO_OCCURS_WITH", "to": 432}, {"from": 417, "title": "CO_OCCURS_WITH", "to": 418}, {"from": 417, "title": "CO_OCCURS_WITH", "to": 428}, {"from": 417, "title": "CO_OCCURS_WITH", "to": 429}, {"from": 417, "title": "CO_OCCURS_WITH", "to": 430}, {"from": 417, "title": "CO_OCCURS_WITH", "to": 87}, {"from": 418, "title": "CO_OCCURS_WITH", "to": 428}, {"from": 418, "title": "CO_OCCURS_WITH", "to": 429}, {"from": 418, "title": "CO_OCCURS_WITH", "to": 430}, {"from": 87, "title": "CO_OCCURS_WITH", "to": 428}, {"from": 87, "title": "CO_OCCURS_WITH", "to": 429}, {"from": 87, "title": "CO_OCCURS_WITH", "to": 430}, {"from": 419, "title": "CO_OCCURS_WITH", "to": 431}, {"from": 420, "title": "CO_OCCURS_WITH", "to": 421}, {"from": 420, "title": "CO_OCCURS_WITH", "to": 422}, {"from": 420, "title": "CO_OCCURS_WITH", "to": 423}, {"from": 420, "title": "CO_OCCURS_WITH", "to": 424}, {"from": 420, "title": "CO_OCCURS_WITH", "to": 425}, {"from": 420, "title": "CO_OCCURS_WITH", "to": 426}, {"from": 420, "title": "CO_OCCURS_WITH", "to": 427}, {"from": 420, "title": "CO_OCCURS_WITH", "to": 432}, {"from": 421, "title": "CO_OCCURS_WITH", "to": 422}, {"from": 421, "title": "CO_OCCURS_WITH", "to": 423}, {"from": 421, "title": "CO_OCCURS_WITH", "to": 424}, {"from": 421, "title": "CO_OCCURS_WITH", "to": 425}, {"from": 421, "title": "CO_OCCURS_WITH", "to": 426}, {"from": 421, "title": "CO_OCCURS_WITH", "to": 427}, {"from": 421, "title": "CO_OCCURS_WITH", "to": 432}, {"from": 422, "title": "FOUNDER", "to": 431}, {"from": 422, "title": "FOUNDER", "to": 432}, {"from": 422, "title": "CO_OCCURS_WITH", "to": 423}, {"from": 422, "title": "CO_OCCURS_WITH", "to": 424}, {"from": 422, "title": "CO_OCCURS_WITH", "to": 425}, {"from": 422, "title": "CO_OCCURS_WITH", "to": 426}, {"from": 422, "title": "CO_OCCURS_WITH", "to": 427}, {"from": 423, "title": "CO_OCCURS_WITH", "to": 424}, {"from": 423, "title": "CO_OCCURS_WITH", "to": 425}, {"from": 423, "title": "CO_OCCURS_WITH", "to": 426}, {"from": 423, "title": "CO_OCCURS_WITH", "to": 427}, {"from": 423, "title": "CO_OCCURS_WITH", "to": 432}, {"from": 424, "title": "CO_OCCURS_WITH", "to": 425}, {"from": 424, "title": "CO_OCCURS_WITH", "to": 426}, {"from": 424, "title": "CO_OCCURS_WITH", "to": 427}, {"from": 424, "title": "CO_OCCURS_WITH", "to": 432}, {"from": 425, "title": "CO_OCCURS_WITH", "to": 426}, {"from": 425, "title": "CO_OCCURS_WITH", "to": 427}, {"from": 425, "title": "CO_OCCURS_WITH", "to": 432}, {"from": 426, "title": "CO_OCCURS_WITH", "to": 427}, {"from": 426, "title": "CO_OCCURS_WITH", "to": 432}, {"from": 427, "title": "CO_OCCURS_WITH", "to": 432}, {"from": 428, "title": "CO_OCCURS_WITH", "to": 429}, {"from": 428, "title": "CO_OCCURS_WITH", "to": 430}, {"from": 429, "title": "CO_OCCURS_WITH", "to": 430}, {"from": 434, "title": "CO_OCCURS_WITH", "to": 437}, {"from": 434, "title": "CO_OCCURS_WITH", "to": 438}, {"from": 435, "title": "CO_OCCURS_WITH", "to": 436}, {"from": 437, "title": "CO_OCCURS_WITH", "to": 438}]);
nodeColors = {};
allNodes = nodes.get({ returnType: "Object" });
for (nodeId in allNodes) {
nodeColors[nodeId] = allNodes[nodeId].color;
}
allEdges = edges.get({ returnType: "Object" });
// adding nodes and edges to the graph
data = {nodes: nodes, edges: edges};
var options = {
"configure": {
"enabled": true,
"filter": [
"physics"
]
},
"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
}
}
};
// if this network requires displaying the configure window,
// put it in its div
options.configure["container"] = document.getElementById("config");
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>