Created
May 13, 2019 10:11
-
-
Save MaximPiessen/6c4637faeebbdc3fd12ecfd7b67cdd27 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function (global, factory) { | |
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('d3-dispatch'), require('d3-drag'), require('d3-interpolate'), require('d3-selection'), require('d3-transition')) : | |
typeof define === 'function' && define.amd ? define(['exports', 'd3-dispatch', 'd3-drag', 'd3-interpolate', 'd3-selection', 'd3-transition'], factory) : | |
(factory((global.d3 = global.d3 || {}),global.d3,global.d3,global.d3,global.d3,global.d3)); | |
}(this, (function (exports,d3Dispatch,d3Drag,d3Interpolate,d3Selection,d3Transition) { 'use strict'; | |
var constant = function(x) { | |
return function() { | |
return x; | |
}; | |
}; | |
var BrushEvent = function(target, type, selection) { | |
this.target = target; | |
this.type = type; | |
this.selection = selection; | |
}; | |
function nopropagation() { | |
d3Selection.event.stopImmediatePropagation(); | |
} | |
var noevent = function() { | |
d3Selection.event.preventDefault(); | |
d3Selection.event.stopImmediatePropagation(); | |
}; | |
var MODE_DRAG = {name: "drag"}; | |
var MODE_SPACE = {name: "space"}; | |
var MODE_HANDLE = {name: "handle"}; | |
var MODE_CENTER = {name: "center"}; | |
var X = { | |
name: "x", | |
handles: ["e", "w"].map(type), | |
input: function(x, e) { return x && [[x[0], e[0][1]], [x[1], e[1][1]]]; }, | |
output: function(xy) { return xy && [xy[0][0], xy[1][0]]; } | |
}; | |
var Y = { | |
name: "y", | |
handles: ["n", "s"].map(type), | |
input: function(y, e) { return y && [[e[0][0], y[0]], [e[1][0], y[1]]]; }, | |
output: function(xy) { return xy && [xy[0][1], xy[1][1]]; } | |
}; | |
var XY = { | |
name: "xy", | |
handles: ["n", "e", "s", "w", "nw", "ne", "se", "sw"].map(type), | |
input: function(xy) { return xy; }, | |
output: function(xy) { return xy; } | |
}; | |
var cursors = { | |
overlay: "crosshair", | |
selection: "move", | |
n: "ns-resize", | |
e: "ew-resize", | |
s: "ns-resize", | |
w: "ew-resize", | |
nw: "nwse-resize", | |
ne: "nesw-resize", | |
se: "nwse-resize", | |
sw: "nesw-resize" | |
}; | |
var flipX = { | |
e: "w", | |
w: "e", | |
nw: "ne", | |
ne: "nw", | |
se: "sw", | |
sw: "se" | |
}; | |
var flipY = { | |
n: "s", | |
s: "n", | |
nw: "sw", | |
ne: "se", | |
se: "ne", | |
sw: "nw" | |
}; | |
var signsX = { | |
overlay: +1, | |
selection: +1, | |
n: null, | |
e: +1, | |
s: null, | |
w: -1, | |
nw: -1, | |
ne: +1, | |
se: +1, | |
sw: -1 | |
}; | |
var signsY = { | |
overlay: +1, | |
selection: +1, | |
n: -1, | |
e: null, | |
s: +1, | |
w: null, | |
nw: -1, | |
ne: -1, | |
se: +1, | |
sw: +1 | |
}; | |
function type(t) { | |
return {type: t}; | |
} | |
// Ignore right-click, since that should open the context menu. | |
function defaultFilter() { | |
return !d3Selection.event.button; | |
} | |
function defaultExtent() { | |
var svg = this.ownerSVGElement || this; | |
return [[0, 0], [svg.width.baseVal.value, svg.height.baseVal.value]]; | |
} | |
// Like d3.local, but with the name “__brush” rather than auto-generated. | |
function local(node) { | |
while (!node.__brush) if (!(node = node.parentNode)) return; | |
return node.__brush; | |
} | |
function empty(extent) { | |
return extent[0][0] === extent[1][0] | |
|| extent[0][1] === extent[1][1]; | |
} | |
function brushSelection(node) { | |
var state = node.__brush; | |
return state ? state.dim.output(state.selection) : null; | |
} | |
function brushX() { | |
return brush$1(X); | |
} | |
function brushY() { | |
return brush$1(Y); | |
} | |
var brush = function() { | |
return brush$1(XY); | |
}; | |
function brush$1(dim) { | |
var extent = defaultExtent, | |
filter = defaultFilter, | |
listeners = d3Dispatch.dispatch(brush, "start", "brush", "end"), | |
handleSize = 6, | |
touchending; | |
function brush(group) { | |
var overlay = group | |
.property("__brush", initialize) | |
.selectAll(".overlay") | |
.data([type("overlay")]); | |
overlay.enter().append("rect") | |
.attr("class", "overlay") | |
.attr("pointer-events", "all") | |
.attr("cursor", cursors.overlay) | |
.merge(overlay) | |
.each(function() { | |
var extent = local(this).extent; | |
d3Selection.select(this) | |
.attr("x", extent[0][0]) | |
.attr("y", extent[0][1]) | |
.attr("width", extent[1][0] - extent[0][0]) | |
.attr("height", extent[1][1] - extent[0][1]); | |
}); | |
group.selectAll(".selection") | |
.data([type("selection")]) | |
.enter().append("rect") | |
.attr("class", "selection") | |
.attr("cursor", cursors.selection) | |
.attr("fill", "#777") | |
.attr("fill-opacity", 0.3) | |
.attr("stroke", "#fff") | |
.attr("shape-rendering", "crispEdges"); | |
var handle = group.selectAll(".handle") | |
.data(dim.handles, function(d) { return d.type; }); | |
handle.exit().remove(); | |
handle.enter().append("rect") | |
.attr("class", function(d) { return "handle handle--" + d.type; }) | |
.attr("cursor", function(d) { return cursors[d.type]; }); | |
group | |
.each(redraw) | |
.attr("fill", "none") | |
.attr("pointer-events", "all") | |
.style("-webkit-tap-highlight-color", "rgba(0,0,0,0)") | |
.on("mousedown.brush touchstart.brush", started); | |
} | |
brush.move = function(group, selection) { | |
if (group.selection) { | |
group | |
.on("start.brush", function() { emitter(this, arguments).beforestart().start(); }) | |
.on("interrupt.brush end.brush", function() { emitter(this, arguments).end(); }) | |
.tween("brush", function() { | |
var that = this, | |
state = that.__brush, | |
emit = emitter(that, arguments), | |
selection0 = state.selection, | |
selection1 = dim.input(typeof selection === "function" ? selection.apply(this, arguments) : selection, state.extent), | |
i = d3Interpolate.interpolate(selection0, selection1); | |
function tween(t) { | |
state.selection = t === 1 && empty(selection1) ? null : i(t); | |
redraw.call(that); | |
emit.brush(); | |
} | |
return selection0 && selection1 ? tween : tween(1); | |
}); | |
} else { | |
group | |
.each(function() { | |
var that = this, | |
args = arguments, | |
state = that.__brush, | |
selection1 = dim.input(typeof selection === "function" ? selection.apply(that, args) : selection, state.extent), | |
emit = emitter(that, args).beforestart(); | |
d3Transition.interrupt(that); | |
state.selection = selection1 == null || empty(selection1) ? null : selection1; | |
redraw.call(that); | |
emit.start().brush().end(); | |
}); | |
} | |
}; | |
function redraw() { | |
var group = d3Selection.select(this), | |
selection = local(this).selection; | |
if (selection) { | |
group.selectAll(".selection") | |
.style("display", null) | |
.attr("x", selection[0][0]) | |
.attr("y", selection[0][1]) | |
.attr("width", selection[1][0] - selection[0][0]) | |
.attr("height", selection[1][1] - selection[0][1]); | |
group.selectAll(".handle") | |
.style("display", null) | |
.attr("x", function(d) { return d.type[d.type.length - 1] === "e" ? selection[1][0] - handleSize / 2 : selection[0][0] - handleSize / 2; }) | |
.attr("y", function(d) { return d.type[0] === "s" ? selection[1][1] - handleSize / 2 : selection[0][1] - handleSize / 2; }) | |
.attr("width", function(d) { return d.type === "n" || d.type === "s" ? selection[1][0] - selection[0][0] + handleSize : handleSize; }) | |
.attr("height", function(d) { return d.type === "e" || d.type === "w" ? selection[1][1] - selection[0][1] + handleSize : handleSize; }); | |
} | |
else { | |
group.selectAll(".selection,.handle") | |
.style("display", "none") | |
.attr("x", null) | |
.attr("y", null) | |
.attr("width", null) | |
.attr("height", null); | |
} | |
} | |
function emitter(that, args) { | |
return that.__brush.emitter || new Emitter(that, args); | |
} | |
function Emitter(that, args) { | |
this.that = that; | |
this.args = args; | |
this.state = that.__brush; | |
this.active = 0; | |
} | |
Emitter.prototype = { | |
beforestart: function() { | |
if (++this.active === 1) this.state.emitter = this, this.starting = true; | |
return this; | |
}, | |
start: function() { | |
if (this.starting) this.starting = false, this.emit("start"); | |
return this; | |
}, | |
brush: function() { | |
this.emit("brush"); | |
return this; | |
}, | |
end: function() { | |
if (--this.active === 0) delete this.state.emitter, this.emit("end"); | |
return this; | |
}, | |
emit: function(type) { | |
d3Selection.customEvent(new BrushEvent(brush, type, dim.output(this.state.selection)), listeners.apply, listeners, [type, this.that, this.args]); | |
} | |
}; | |
function started() { | |
if (d3Selection.event.touches) { if (d3Selection.event.changedTouches.length < d3Selection.event.touches.length) return noevent(); } | |
else if (touchending) return; | |
if (!filter.apply(this, arguments)) return; | |
var that = this, | |
type = d3Selection.event.target.__data__.type, | |
mode = (d3Selection.event.metaKey ? type = "overlay" : type) === "selection" ? MODE_DRAG : (d3Selection.event.altKey ? MODE_CENTER : MODE_HANDLE), | |
signX = dim === Y ? null : signsX[type], | |
signY = dim === X ? null : signsY[type], | |
state = local(that), | |
extent = state.extent, | |
selection = state.selection, | |
W = extent[0][0], w0, w1, | |
N = extent[0][1], n0, n1, | |
E = extent[1][0], e0, e1, | |
S = extent[1][1], s0, s1, | |
dx, | |
dy, | |
moving, | |
lockX, | |
lockY, | |
point0 = d3Selection.mouse(that), | |
point = point0, | |
emit = emitter(that, arguments).beforestart(); | |
if (type === "overlay") { | |
state.selection = selection = [ | |
[w0 = dim === Y ? W : point0[0], n0 = dim === X ? N : point0[1]], | |
[e0 = dim === Y ? E : w0, s0 = dim === X ? S : n0] | |
]; | |
} else { | |
w0 = selection[0][0]; | |
n0 = selection[0][1]; | |
e0 = selection[1][0]; | |
s0 = selection[1][1]; | |
} | |
w1 = w0; | |
n1 = n0; | |
e1 = e0; | |
s1 = s0; | |
var group = d3Selection.select(that) | |
.attr("pointer-events", "none"); | |
var overlay = group.selectAll(".overlay") | |
.attr("cursor", cursors[type]); | |
if (d3Selection.event.touches) { | |
group | |
.on("touchmove.brush", moved, true) | |
.on("touchend.brush touchcancel.brush", ended, true); | |
} else { | |
var view = d3Selection.select(d3Selection.event.view) | |
.on("keydown.brush", keydowned, true) | |
.on("keyup.brush", keyupped, true) | |
.on("mousemove.brush", moved, true) | |
.on("mouseup.brush", ended, true); | |
d3Drag.dragDisable(d3Selection.event.view); | |
} | |
nopropagation(); | |
d3Transition.interrupt(that); | |
redraw.call(that); | |
emit.start(); | |
function moved() { | |
var point1 = d3Selection.mouse(that); | |
point = point1; | |
moving = true; | |
noevent(); | |
move(); | |
} | |
function move() { | |
var t; | |
dx = point[0] - point0[0]; | |
dy = point[1] - point0[1]; | |
switch (mode) { | |
case MODE_SPACE: | |
case MODE_DRAG: { | |
if (signX) dx = Math.max(W - w0, Math.min(E - e0, dx)), w1 = w0 + dx, e1 = e0 + dx; | |
if (signY) dy = Math.max(N - n0, Math.min(S - s0, dy)), n1 = n0 + dy, s1 = s0 + dy; | |
break; | |
} | |
case MODE_HANDLE: { | |
if (signX < 0) dx = Math.max(W - w0, Math.min(E - w0, dx)), w1 = w0 + dx, e1 = e0; | |
else if (signX > 0) dx = Math.max(W - e0, Math.min(E - e0, dx)), w1 = w0, e1 = e0 + dx; | |
if (signY < 0) dy = Math.max(N - n0, Math.min(S - n0, dy)), n1 = n0 + dy, s1 = s0; | |
else if (signY > 0) dy = Math.max(N - s0, Math.min(S - s0, dy)), n1 = n0, s1 = s0 + dy; | |
break; | |
} | |
case MODE_CENTER: { | |
if (signX) w1 = Math.max(W, Math.min(E, w0 - dx * signX)), e1 = Math.max(W, Math.min(E, e0 + dx * signX)); | |
if (signY) n1 = Math.max(N, Math.min(S, n0 - dy * signY)), s1 = Math.max(N, Math.min(S, s0 + dy * signY)); | |
break; | |
} | |
} | |
if (e1 < w1) { | |
signX *= -1; | |
t = w0, w0 = e0, e0 = t; | |
t = w1, w1 = e1, e1 = t; | |
if (type in flipX) overlay.attr("cursor", cursors[type = flipX[type]]); | |
} | |
if (s1 < n1) { | |
signY *= -1; | |
t = n0, n0 = s0, s0 = t; | |
t = n1, n1 = s1, s1 = t; | |
if (type in flipY) overlay.attr("cursor", cursors[type = flipY[type]]); | |
} | |
if (state.selection) selection = state.selection; // May be set by brush.move! | |
if (lockX) w1 = selection[0][0], e1 = selection[1][0]; | |
if (lockY) n1 = selection[0][1], s1 = selection[1][1]; | |
if (selection[0][0] !== w1 | |
|| selection[0][1] !== n1 | |
|| selection[1][0] !== e1 | |
|| selection[1][1] !== s1) { | |
state.selection = [[w1, n1], [e1, s1]]; | |
redraw.call(that); | |
emit.brush(); | |
} | |
} | |
function ended() { | |
nopropagation(); | |
if (d3Selection.event.touches) { | |
if (d3Selection.event.touches.length) return; | |
if (touchending) clearTimeout(touchending); | |
touchending = setTimeout(function() { touchending = null; }, 500); // Ghost clicks are delayed! | |
group.on("touchmove.brush touchend.brush touchcancel.brush", null); | |
} else { | |
d3Drag.dragEnable(d3Selection.event.view, moving); | |
view.on("keydown.brush keyup.brush mousemove.brush mouseup.brush", null); | |
} | |
group.attr("pointer-events", "all"); | |
overlay.attr("cursor", cursors.overlay); | |
if (state.selection) selection = state.selection; // May be set by brush.move (on start)! | |
if (empty(selection)) state.selection = null, redraw.call(that); | |
emit.end(); | |
} | |
function keydowned() { | |
switch (d3Selection.event.keyCode) { | |
case 18: { // ALT | |
if (mode === MODE_HANDLE) { | |
if (signX) e0 = e1 - dx * signX, w0 = w1 + dx * signX; | |
if (signY) s0 = s1 - dy * signY, n0 = n1 + dy * signY; | |
mode = MODE_CENTER; | |
move(); | |
} | |
break; | |
} | |
case 32: { // SPACE; takes priority over ALT | |
if (mode === MODE_HANDLE || mode === MODE_CENTER) { | |
if (signX < 0) e0 = e1 - dx; else if (signX > 0) w0 = w1 - dx; | |
if (signY < 0) s0 = s1 - dy; else if (signY > 0) n0 = n1 - dy; | |
mode = MODE_SPACE; | |
overlay.attr("cursor", cursors.selection); | |
move(); | |
} | |
break; | |
} | |
default: return; | |
} | |
noevent(); | |
} | |
function keyupped() { | |
switch (d3Selection.event.keyCode) { | |
case 18: { // ALT | |
if (mode === MODE_CENTER) { | |
if (signX < 0) e0 = e1; else if (signX > 0) w0 = w1; | |
if (signY < 0) s0 = s1; else if (signY > 0) n0 = n1; | |
mode = MODE_HANDLE; | |
move(); | |
} | |
break; | |
} | |
case 32: { // SPACE | |
if (mode === MODE_SPACE) { | |
if (d3Selection.event.altKey) { | |
if (signX) e0 = e1 - dx * signX, w0 = w1 + dx * signX; | |
if (signY) s0 = s1 - dy * signY, n0 = n1 + dy * signY; | |
mode = MODE_CENTER; | |
} else { | |
if (signX < 0) e0 = e1; else if (signX > 0) w0 = w1; | |
if (signY < 0) s0 = s1; else if (signY > 0) n0 = n1; | |
mode = MODE_HANDLE; | |
} | |
overlay.attr("cursor", cursors[type]); | |
move(); | |
} | |
break; | |
} | |
default: return; | |
} | |
noevent(); | |
} | |
} | |
function initialize() { | |
var state = this.__brush || {selection: null}; | |
state.extent = extent.apply(this, arguments); | |
state.dim = dim; | |
return state; | |
} | |
brush.extent = function(_) { | |
return arguments.length ? (extent = typeof _ === "function" ? _ : constant([[+_[0][0], +_[0][1]], [+_[1][0], +_[1][1]]]), brush) : extent; | |
}; | |
brush.filter = function(_) { | |
return arguments.length ? (filter = typeof _ === "function" ? _ : constant(!!_), brush) : filter; | |
}; | |
brush.handleSize = function(_) { | |
return arguments.length ? (handleSize = +_, brush) : handleSize; | |
}; | |
brush.on = function() { | |
var value = listeners.on.apply(listeners, arguments); | |
return value === listeners ? brush : value; | |
}; | |
return brush; | |
} | |
exports.brush = brush; | |
exports.brushX = brushX; | |
exports.brushY = brushY; | |
exports.brushSelection = brushSelection; | |
Object.defineProperty(exports, '__esModule', { value: true }); | |
}))); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function createV4SelectableForceDirectedGraph(svg, graph) { | |
// if both d3v3 and d3v4 are loaded, we'll assume | |
// that d3v4 is called d3v4, otherwise we'll assume | |
// that d3v4 is the default (d3) | |
if (typeof d3v4 == 'undefined') | |
d3v4 = d3; | |
var width = +svg.attr("width"), | |
height = +svg.attr("height"); | |
let parentWidth = d3v4.select('svg').node().parentNode.clientWidth; | |
let parentHeight = d3v4.select('svg').node().parentNode.clientHeight; | |
var svg = d3v4.select('svg') | |
.attr('width', parentWidth) | |
.attr('height', parentHeight) | |
// remove any previous graphs | |
svg.selectAll('.g-main').remove(); | |
var gMain = svg.append('g') | |
.classed('g-main', true); | |
var rect = gMain.append('rect') | |
.attr('width', parentWidth) | |
.attr('height', parentHeight) | |
.style('fill', 'white') | |
var gDraw = gMain.append('g') | |
var zoom = d3v4.zoom() | |
.on('zoom', zoomed) | |
gMain.call(zoom); | |
function zoomed() { | |
gDraw.attr('transform', d3v4.event.transform); | |
} | |
var color = d3v4.scaleOrdinal(d3v4.schemeCategory20); | |
if (! ("links" in graph)) { | |
console.log("Graph is missing links"); | |
return; | |
} | |
var nodes = {}; | |
var i; | |
for (i = 0; i < graph.nodes.length; i++) { | |
nodes[graph.nodes[i].id] = graph.nodes[i]; | |
graph.nodes[i].weight = 1.01; | |
} | |
// the brush needs to go before the nodes so that it doesn't | |
// get called when the mouse is over a node | |
var gBrushHolder = gDraw.append('g'); | |
var gBrush = null; | |
// add color gradient to edges | |
function getGradID(d){return "linkGrad-" + d.source + "-"+ d.target;} | |
var defs = d3v4.select("svg").append("defs"); | |
var grads = defs.selectAll("linearGradient") | |
.data(graph.links); | |
var lingrads = grads.enter().append("linearGradient"); | |
lingrads.attr("id", getGradID) | |
.attr("gradientUnits", "userSpaceOnUse") | |
//source = red | |
lingrads.append("stop") | |
.attr("offset", "0%") | |
.attr("stop-color", "#FF0000") | |
//target = green | |
lingrads.append("stop") | |
.attr("offset", "100%") | |
.attr("stop-color", "#39ff14") | |
var link = gDraw.append("g") | |
.attr("class", "links") | |
.selectAll("line") | |
.data(graph.links) | |
.enter().append("line") | |
.attr("stroke-width", function(d) { return Math.sqrt(d.value); }); | |
link.attr("source", function(d){return d.source}) | |
.attr("target", function(d){return d.target}) | |
.style("stroke", function(d){ | |
return "url(#" + getGradID(d) + ")"; | |
}) | |
.attr("class", function(d) { | |
var id1 = d.source.toString(); | |
var id2 = d.target.toString(); | |
if(d.bi_directional){ | |
return "edge link-bi " + id1 + " " + id2; | |
}else{ | |
return "edge link " + id1 + " " + id2; | |
} | |
}) | |
var node = gDraw.append("g") | |
.attr("class", "nodes") | |
.selectAll("circle") | |
.data(graph.nodes) | |
.enter().append("circle") | |
.attr("r", 4) | |
.attr("fill", function(d) { | |
if ('color' in d) | |
return d.color; | |
else | |
return "#626262"; | |
//return color(d.group); | |
}) | |
.call(d3v4.drag() | |
.on("start", dragstarted) | |
.on("drag", dragged) | |
.on("end", dragended)); | |
node.attr("id", function(d){return d.id}) | |
.attr("class", "node") | |
// initialise force graph | |
var simulation = d3v4.forceSimulation() | |
.force("link", d3v4.forceLink() | |
.id(function(d) { return d.id; }) | |
.distance(function(d) { | |
return 30; | |
//var dist = 20 / d.value; | |
//console.log('dist:', dist); | |
return dist; | |
}) | |
) | |
.force("charge", d3v4.forceManyBody()) | |
.force("center", d3v4.forceCenter(parentWidth / 2, parentHeight / 2)) | |
.force("x", d3v4.forceX(parentWidth/2)) | |
.force("y", d3v4.forceY(parentHeight/2)); | |
simulation | |
.nodes(graph.nodes) | |
.on("tick", ticked) | |
simulation.force("link") | |
.links(graph.links); | |
function ticked() { | |
// update node and line positions at every step of | |
// the force simulation | |
link.attr("x1", function(d) { return d.source.x; }) | |
.attr("y1", function(d) { return d.source.y; }) | |
.attr("x2", function(d) { return d.target.x; }) | |
.attr("y2", function(d) { return d.target.y; }); | |
node.attr("cx", function(d) { return d.x; }) | |
.attr("cy", function(d) { return d.y; }); | |
lingrads.attr("x1", function(d){ return d.source.x }) | |
.attr("y1", function(d){ return d.source.y; }) | |
.attr("x2", function(d){ return d.target.x; }) | |
.attr("y2", function(d){ return d.target.y; }); | |
} | |
var brushMode = false; | |
var brushing = false; | |
var brush = d3v4.brush() | |
.on("start", brushstarted) | |
.on("brush", brushed) | |
.on("end", brushended); | |
function brushstarted() { | |
// keep track of whether we're actively brushing so that we | |
// don't remove the brush on keyup in the middle of a selection | |
brushing = true; | |
node.each(function(d) { | |
d.previouslySelected = shiftKey && d.selected; | |
}); | |
} | |
rect.on('click', () => { | |
node.each(function(d) { | |
d.selected = false; | |
d.previouslySelected = false; | |
}); | |
node.classed("selected", false); | |
}); | |
function brushed() { | |
if (!d3v4.event.sourceEvent) return; | |
if (!d3v4.event.selection) return; | |
var extent = d3v4.event.selection; | |
node.classed("selected", function(d) { | |
return d.selected = d.previouslySelected ^ | |
(extent[0][0] <= d.x && d.x < extent[1][0] | |
&& extent[0][1] <= d.y && d.y < extent[1][1]); | |
}); | |
} | |
function brushended() { | |
if (!d3v4.event.sourceEvent) return; | |
if (!d3v4.event.selection) return; | |
if (!gBrush) return; | |
gBrush.call(brush.move, null); | |
if (!brushMode) { | |
// the shift key has been release before we ended our brushing | |
gBrush.remove(); | |
gBrush = null; | |
} | |
brushing = false; | |
} | |
d3v4.select('body').on('keydown', keydown); | |
d3v4.select('body').on('keyup', keyup); | |
var shiftKey; | |
function keydown() { | |
shiftKey = d3v4.event.shiftKey; | |
if (shiftKey) { | |
// if we already have a brush, don't do anything | |
if (gBrush) | |
return; | |
brushMode = true; | |
if (!gBrush) { | |
gBrush = gBrushHolder.append('g'); | |
gBrush.call(brush); | |
} | |
} | |
} | |
function keyup() { | |
shiftKey = false; | |
brushMode = false; | |
if (!gBrush) | |
return; | |
if (!brushing) { | |
// only remove the brush if we're not actively brushing | |
// otherwise it'll be removed when the brushing ends | |
gBrush.remove(); | |
gBrush = null; | |
} | |
} | |
function dragstarted(d) { | |
if (!d3v4.event.active) simulation.alphaTarget(0.9).restart(); | |
if (!d.selected && !shiftKey) { | |
// if this node isn't selected, then we have to unselect every other node | |
node.classed("selected", function(p) { return p.selected = p.previouslySelected = false; }); | |
} | |
d3v4.select(this).classed("selected", function(p) { d.previouslySelected = d.selected; return d.selected = true; }); | |
node.filter(function(d) { return d.selected; }) | |
.each(function(d) { //d.fixed |= 2; | |
d.fx = d.x; | |
d.fy = d.y; | |
}) | |
} | |
function dragged(d) { | |
//d.fx = d3v4.event.x; | |
//d.fy = d3v4.event.y; | |
node.filter(function(d) { return d.selected; }) | |
.each(function(d) { | |
d.fx += d3v4.event.dx; | |
d.fy += d3v4.event.dy; | |
}) | |
} | |
function dragended(d) { | |
if (!d3v4.event.active) simulation.alphaTarget(0); | |
d.fx = null; | |
d.fy = null; | |
node.filter(function(d) { return d.selected; }) | |
.each(function(d) { //d.fixed &= ~6; | |
d.fx = null; | |
d.fy = null; | |
}) | |
} | |
/*var texts = ['Use the scroll wheel to zoom', | |
'Hold the shift key to select nodes'] | |
svg.selectAll('text') | |
.data(texts) | |
.enter() | |
.append('text') | |
.attr('x', 900) | |
.attr('y', function(d,i) { return 470 + i * 18; }) | |
.text(function(d) { return d; }); | |
*/ | |
//change name on title to node clicked | |
// Define the div for the tooltip | |
var div = d3.select("body").append("div") | |
.attr("class", "tooltip") | |
.style("opacity", 0); | |
node.on("mouseover", function(d) { | |
div.transition() | |
.duration(200) | |
.style("opacity", .9); | |
div .html(d.name) | |
.style("left", (d3.event.pageX) + "px") | |
.style("top", (d3.event.pageY - 28) + "px"); | |
}) | |
node.on("mouseout", function(d) { | |
div.transition() | |
.duration(500) | |
.style("opacity", 0); | |
}) | |
// only show edges related to node on click | |
allEdges = $('.edge'); | |
allNodes = $('.node') | |
node.on("click", function(d) { | |
var id = d.id.toString(); | |
allEdges.removeClass('hidden'); | |
allNodes.removeClass('hidden'); | |
nonRelevantEdges = $('.edge:not(.' + id + ')'); | |
nonRelevantEdges.toggleClass('hidden'); | |
relevantNodes = ($('.'+id).map(function(){return $(this).attr("source");}).get()).concat($('.'+id).map(function(){return $(this).attr("target");}).get()); | |
relevantNodes[0] = '#' + relevantNodes[0]; | |
nodeIdList = relevantNodes.join(", #"); | |
allNodes.toggleClass('hidden') | |
$(nodeIdList).removeClass('hidden'); | |
}) | |
// show all edges again when clicking on white space | |
$('rect').on("click", function(d) { | |
allEdges.removeClass('hidden'); | |
allNodes.removeClass('hidden'); | |
}) | |
return graph; | |
}; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<head> | |
<meta charset="utf-8" /> | |
</head> | |
<div align='center' id="d3_selectable_force_directed_graph"> | |
<svg /> | |
</div> | |
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> | |
<script src="https://d3js.org/d3.v4.js"></script> | |
<script src="d3v4-brush-lite.js"></script> | |
<script src="d3v4-selectable-force-directed-graph.js"></script> | |
<script> | |
$(document).ready(function(){ | |
var x=$(window).width(); | |
var y=$(window).height(); | |
$("#d3_selectable_force_directed_graph").css('width', x); | |
$("#d3_selectable_force_directed_graph").css('height', y); | |
var svg = d3.select('#d3_selectable_force_directed_graph'); | |
d3.json('relations.json', function(error, graph) { | |
if (!error) { | |
//console.log('graph', graph); | |
createV4SelectableForceDirectedGraph(svg, graph); | |
} else { | |
console.error(error); | |
} | |
}); | |
}); | |
</script> | |
<style type="text/css"> | |
div.tooltip { | |
position: absolute; | |
text-align: center; | |
padding: 4px; | |
font: 12px sans-serif; | |
background: white; | |
border: 0px; | |
border-radius: 3px; | |
pointer-events: none; | |
} | |
.hidden { | |
opacity: 0.2; | |
} | |
#d3_selectable_force_directed_graph svg { | |
font: 13px sans-serif; | |
text-anchor: end; | |
} | |
#d3_selectable_force_directed_graph .node { | |
stroke: #fff; | |
stroke-width: 1px; | |
} | |
.node .selected { | |
stroke: black; | |
} | |
.link-bi { | |
stroke: #999 !important; | |
} | |
</style> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"nodes": [{"id": 1, "name": "renee_farrow", "group": 1}, {"id": 2, "name": "kollab.eu", "group": 1}, {"id": 3, "name": "emmapittman00", "group": 1}, {"id": 4, "name": "pam_on_gram", "group": 1}, {"id": 5, "name": "mo.jju", "group": 1}, {"id": 6, "name": "shanagheldolf", "group": 1}, {"id": 7, "name": "matteo_adami", "group": 1}, {"id": 8, "name": "personal_trainer_sendu", "group": 1}, {"id": 9, "name": "janvd94", "group": 1}, {"id": 10, "name": "wimmaeyens", "group": 1}, {"id": 11, "name": "lena.coenjaerts", "group": 1}, {"id": 12, "name": "gestelst", "group": 1}, {"id": 13, "name": "celinefernandez1", "group": 1}, {"id": 14, "name": "photrea_com", "group": 1}, {"id": 15, "name": "ashsonnymiller", "group": 1}, {"id": 16, "name": "katrien.luyten", "group": 1}, {"id": 17, "name": "pauliennelissen", "group": 1}, {"id": 18, "name": "mouzi1983", "group": 1}, {"id": 19, "name": "jaanstevens", "group": 1}, {"id": 20, "name": "kiaralauscher", "group": 1}, {"id": 21, "name": "floovds", "group": 1}, {"id": 22, "name": "brandoncomotion", "group": 1}, {"id": 23, "name": "isabelscaxide", "group": 1}, {"id": 24, "name": "rubenvanhaute", "group": 1}, {"id": 25, "name": "youlcee_fundraise_for_charity", "group": 1}, {"id": 26, "name": "tom.dens", "group": 1}, {"id": 27, "name": "gesiiii", "group": 1}, {"id": 28, "name": "riannedr", "group": 1}, {"id": 29, "name": "wannes.vincent", "group": 1}, {"id": 30, "name": "betsgoetschalckx", "group": 1}, {"id": 31, "name": "gturck", "group": 1}, {"id": 32, "name": "stephanewaldz", "group": 1}, {"id": 33, "name": "alexandervolders", "group": 1}, {"id": 34, "name": "charlottepannekoek", "group": 1}, {"id": 35, "name": "lespetitsbonheursdesixtine", "group": 1}, {"id": 36, "name": "yves_bens", "group": 1}, {"id": 37, "name": "stefcoenegrachts", "group": 1}, {"id": 38, "name": "siebertmarien", "group": 1}, {"id": 39, "name": "filleroelants", "group": 1}, {"id": 40, "name": "kjverhae", "group": 1}, {"id": 41, "name": "bohner", "group": 1}, {"id": 42, "name": "sonnenuntergang.official", "group": 1}, {"id": 43, "name": "rebeccavanremoortere", "group": 1}, {"id": 44, "name": "chaimfes", "group": 1}, {"id": 45, "name": "birgitrnd", "group": 1}, {"id": 46, "name": "lanamortelmans", "group": 1}, {"id": 47, "name": "lamsenss", "group": 1}, {"id": 48, "name": "izak_buys_artist", "group": 1}, {"id": 49, "name": "woutbeunens", "group": 1}, {"id": 50, "name": "jazzdeketelaere", "group": 1}, {"id": 51, "name": "zeusuna", "group": 1}, {"id": 52, "name": "vincentvdeynden", "group": 1}, {"id": 53, "name": "gordierae", "group": 1}, {"id": 54, "name": "laurenss_9", "group": 1}, {"id": 55, "name": "laura_dagnolo", "group": 1}, {"id": 56, "name": "billybillay", "group": 1}, {"id": 57, "name": "roxandegeyter", "group": 1}, {"id": 58, "name": "thomasdamanski", "group": 1}, {"id": 59, "name": "dominicdeclercq", "group": 1}, {"id": 60, "name": "robertjohnmarais", "group": 1}, {"id": 61, "name": "sofiequirynen", "group": 1}, {"id": 62, "name": "sydneysiongers", "group": 1}, {"id": 63, "name": "oliviamjb", "group": 1}, {"id": 64, "name": "vogler", "group": 1}, {"id": 65, "name": "marie.delange", "group": 1}, {"id": 66, "name": "emma_clemens", "group": 1}, {"id": 67, "name": "tom.hndrx", "group": 1}, {"id": 68, "name": "youlcee_nl", "group": 1}, {"id": 69, "name": "verstrepenanthony", "group": 1}, {"id": 70, "name": "peter_poppe", "group": 1}, {"id": 71, "name": "kristel.dupont", "group": 1}, {"id": 72, "name": "irisfouq", "group": 1}, {"id": 73, "name": "s_clm", "group": 1}, {"id": 74, "name": "w_i_l_l.m", "group": 1}, {"id": 75, "name": "rdewasse", "group": 1}, {"id": 76, "name": "jeroen_nelissen", "group": 1}, {"id": 77, "name": "momentuumphotography", "group": 1}, {"id": 78, "name": "vhstefan", "group": 1}, {"id": 79, "name": "mathias_mallentjer", "group": 1}, {"id": 80, "name": "xpilar", "group": 1}, {"id": 81, "name": "lfvra", "group": 1}, {"id": 82, "name": "evedockx", "group": 1}, {"id": 83, "name": "ingridvdfotografie", "group": 1}, {"id": 84, "name": "loreickx", "group": 1}, {"id": 85, "name": "jollenbeir", "group": 1}, {"id": 86, "name": "sensudoro", "group": 1}, {"id": 87, "name": "nelvanermengem", "group": 1}, {"id": 88, "name": "jellenoels", "group": 1}, {"id": 89, "name": "jonathan_geubels", "group": 1}, {"id": 90, "name": "bertcampaert", "group": 1}, {"id": 91, "name": "emelinehalleux", "group": 1}, {"id": 92, "name": "teresacaxide", "group": 1}, {"id": 93, "name": "laulalaenen", "group": 1}, {"id": 94, "name": "christope_db", "group": 1}, {"id": 95, "name": "veronikathiers", "group": 1}, {"id": 96, "name": "jamesbrucerae", "group": 1}, {"id": 97, "name": "sophiemeerbergen", "group": 1}, {"id": 98, "name": "samvanbakel123", "group": 1}, {"id": 99, "name": "mashasmirnof", "group": 1}, {"id": 100, "name": "jillvancoppenolle", "group": 1}, {"id": 101, "name": "jezzagreen", "group": 1}, {"id": 102, "name": "oliglorious", "group": 1}, {"id": 103, "name": "daskalides_official", "group": 1}, {"id": 104, "name": "ag.shotz", "group": 1}, {"id": 105, "name": "toondeherdt", "group": 1}, {"id": 106, "name": "collectiv_national", "group": 1}, {"id": 107, "name": "_ann_sophie_____", "group": 1}, {"id": 108, "name": "vidafotocr", "group": 1}, {"id": 109, "name": "insta_brm", "group": 1}, {"id": 110, "name": "stephanie.deman", "group": 1}, {"id": 111, "name": "hazartwo", "group": 1}, {"id": 112, "name": "evelineyaman", "group": 1}, {"id": 113, "name": "duartecalem", "group": 1}, {"id": 114, "name": "victoravonds", "group": 1}, {"id": 115, "name": "kim.matthyssens", "group": 1}, {"id": 116, "name": "petervankeer", "group": 1}, {"id": 117, "name": "maxschoepen", "group": 1}, {"id": 118, "name": "cdecleen", "group": 1}, {"id": 119, "name": "tzmgoetstouwers", "group": 1}, {"id": 120, "name": "m.daeseleire", "group": 1}, {"id": 121, "name": "sven_de_vocht", "group": 1}, {"id": 122, "name": "char_duerloo", "group": 1}, {"id": 123, "name": "alanalazinica", "group": 1}, {"id": 124, "name": "jana._b", "group": 1}, {"id": 125, "name": "tinydreams_fashion", "group": 1}, {"id": 126, "name": "whatsup_im_dude", "group": 1}, {"id": 127, "name": "anouck_verbraken", "group": 1}, {"id": 128, "name": "samdejonghe", "group": 1}, {"id": 129, "name": "juriancuypers", "group": 1}, {"id": 130, "name": "thyshannelore", "group": 1}, {"id": 131, "name": "deblocksebastiaan", "group": 1}, {"id": 132, "name": "evelyn.wyn", "group": 1}, {"id": 133, "name": "christophehopchet", "group": 1}, {"id": 134, "name": "prettyjohn", "group": 1}, {"id": 135, "name": "mxm_macro", "group": 1}, {"id": 136, "name": "_robynrhea_", "group": 1}, {"id": 137, "name": "melanienolens", "group": 1}, {"id": 138, "name": "breedbeeldvzw", "group": 1}, {"id": 139, "name": "janmooijaart", "group": 1}, {"id": 140, "name": "dalegreen1", "group": 1}, {"id": 141, "name": "femkeloosen", "group": 1}, {"id": 142, "name": "juliejeunen", "group": 1}, {"id": 143, "name": "elenajuhuuu", "group": 1}, {"id": 144, "name": "ines.sta", "group": 1}, {"id": 145, "name": "junbroseph", "group": 1}, {"id": 146, "name": "zeguersfien", "group": 1}, {"id": 147, "name": "sophielagrange", "group": 1}, {"id": 148, "name": "plantsofinsta", "group": 1}, {"id": 149, "name": "rubyjanevanzyl", "group": 1}, {"id": 150, "name": "jorwitt", "group": 1}, {"id": 151, "name": "magalie_frank", "group": 1}, {"id": 152, "name": "yemioduwale", "group": 1}, {"id": 153, "name": "engelenjulie", "group": 1}, {"id": 154, "name": "manonlanckneus", "group": 1}, {"id": 155, "name": "botermanpatrick", "group": 1}, {"id": 156, "name": "lex_maes", "group": 1}, {"id": 157, "name": "bartvanleuven", "group": 1}, {"id": 158, "name": "noodle.burger", "group": 1}, {"id": 159, "name": "izakgrapher", "group": 1}, {"id": 160, "name": "mauraneschatteman", "group": 1}, {"id": 161, "name": "nathalieheyman", "group": 1}, {"id": 162, "name": "what_rob_saw", "group": 1}, {"id": 163, "name": "charlottejohnn", "group": 1}, {"id": 164, "name": "tom.goovaerts", "group": 1}, {"id": 165, "name": "rahrah_e", "group": 1}, {"id": 166, "name": "stevenslotte", "group": 1}, {"id": 167, "name": "arthurcornelissen", "group": 1}, {"id": 168, "name": "mcmath_math", "group": 1}, {"id": 169, "name": "charlottescharpe", "group": 1}, {"id": 170, "name": "mathijscop", "group": 1}, {"id": 171, "name": "pierrecollinet", "group": 1}, {"id": 172, "name": "maira_finizola", "group": 1}, {"id": 173, "name": "matvm", "group": 1}, {"id": 174, "name": "vincent_rndn", "group": 1}, {"id": 175, "name": "simonlehaen", "group": 1}, {"id": 176, "name": "fleurmees", "group": 1}, {"id": 177, "name": "cocobutter.kisses", "group": 1}, {"id": 178, "name": "sowfietje", "group": 1}, {"id": 179, "name": "joshjoshmeltzmeltz", "group": 1}, {"id": 180, "name": "jim.declerck", "group": 1}, {"id": 181, "name": "martenskato", "group": 1}, {"id": 182, "name": "donatiennecastelain", "group": 1}, {"id": 183, "name": "thierrydhaenens", "group": 1}, {"id": 184, "name": "oswinvdw", "group": 1}, {"id": 185, "name": "take_me_camping", "group": 1}, {"id": 186, "name": "tumbletalks", "group": 1}, {"id": 187, "name": "lieselotteickx", "group": 1}, {"id": 188, "name": "isabeaudrnck", "group": 1}, {"id": 189, "name": "jonathan_mincier", "group": 1}, {"id": 190, "name": "yyyyyyyytje", "group": 1}, {"id": 191, "name": "mrbernie94", "group": 1}, {"id": 192, "name": "driesquirynen", "group": 1}, {"id": 193, "name": "frederikbakx", "group": 1}, {"id": 194, "name": "janalesinger", "group": 1}, {"id": 195, "name": "andre_coetzee_", "group": 1}, {"id": 196, "name": "versussocks", "group": 1}, {"id": 197, "name": "liedeweivdv", "group": 1}, {"id": 198, "name": "maus_prdn89", "group": 1}, {"id": 199, "name": "direggio_juweliers", "group": 1}, {"id": 200, "name": "gfoxworthy", "group": 1}, {"id": 201, "name": "seba_2666", "group": 1}, {"id": 202, "name": "niki_mertens", "group": 1}, {"id": 203, "name": "alexe_gaspar", "group": 1}, {"id": 204, "name": "eline_habets", "group": 1}, {"id": 205, "name": "evasevrin", "group": 1}, {"id": 206, "name": "emklaurie", "group": 1}, {"id": 207, "name": "carlongo19", "group": 1}, {"id": 208, "name": "kokerellen", "group": 1}, {"id": 209, "name": "arnevanbatenburg", "group": 1}, {"id": 210, "name": "gunslaura", "group": 1}, {"id": 211, "name": "shanesmith10", "group": 1}, {"id": 212, "name": "heuvelmansc", "group": 1}, {"id": 213, "name": "dori.eeckhout", "group": 1}, {"id": 214, "name": "samvanr_", "group": 1}, {"id": 215, "name": "2950kapellen", "group": 1}, {"id": 216, "name": "theowillems", "group": 1}, {"id": 217, "name": "ellen__claes", "group": 1}, {"id": 218, "name": "nathaliedschepper", "group": 1}, {"id": 219, "name": "silvanbrasil", "group": 1}, {"id": 220, "name": "claudiavanderspiegel", "group": 1}, {"id": 221, "name": "olivierjeunen", "group": 1}, {"id": 222, "name": "kristof_dm", "group": 1}, {"id": 223, "name": "thmachatel", "group": 1}, {"id": 224, "name": "hoogtestage_", "group": 1}, {"id": 225, "name": "naomivanwallendael", "group": 1}, {"id": 226, "name": "heidihyperc", "group": 1}, {"id": 227, "name": "dilemmmmmma", "group": 1}, {"id": 228, "name": "lucabral_", "group": 1}, {"id": 229, "name": "charlotteferemans", "group": 1}, {"id": 230, "name": "marievgoe", "group": 1}, {"id": 231, "name": "tomcarels", "group": 1}, {"id": 232, "name": "jaspernackaerts", "group": 1}, {"id": 233, "name": "elienvandenbrande", "group": 1}, {"id": 234, "name": "declansideyrsa", "group": 1}, {"id": 235, "name": "alessandradepaep", "group": 1}, {"id": 236, "name": "juliepiessen", "group": 1}, {"id": 237, "name": "hendriekepardon", "group": 1}, {"id": 238, "name": "nielsw1503", "group": 1}, {"id": 239, "name": "laurabuffel", "group": 1}, {"id": 240, "name": "quinten.perneel", "group": 1}, {"id": 241, "name": "charlottegeubels", "group": 1}, {"id": 242, "name": "max.newll", "group": 1}, {"id": 243, "name": "jorisderaedt", "group": 1}, {"id": 244, "name": "jolienhenderieckx", "group": 1}, {"id": 245, "name": "avalanx", "group": 1}, {"id": 246, "name": "nicolaas_govaert", "group": 1}, {"id": 247, "name": "ngoetstouwers", "group": 1}, {"id": 248, "name": "quintencorthout", "group": 1}, {"id": 249, "name": "cmvschl", "group": 1}, {"id": 250, "name": "timtygran", "group": 1}, {"id": 251, "name": "sincantwerpen", "group": 1}, {"id": 252, "name": "liesgoolaerts", "group": 1}, {"id": 253, "name": "evanackaerts", "group": 1}, {"id": 254, "name": "sptanghe", "group": 1}, {"id": 255, "name": "pietervanhooydonck", "group": 1}, {"id": 256, "name": "thomascortebeeck", "group": 1}, {"id": 257, "name": "jakob_slabbert", "group": 1}, {"id": 258, "name": "charlietindall", "group": 1}, {"id": 259, "name": "jasnarok", "group": 1}, {"id": 260, "name": "danielfknecht", "group": 1}, {"id": 261, "name": "nora.gold", "group": 1}, {"id": 262, "name": "ruschoen", "group": 1}, {"id": 263, "name": "marielanckneus", "group": 1}, {"id": 264, "name": "laurameyvis", "group": 1}, {"id": 265, "name": "edithlagrou", "group": 1}, {"id": 266, "name": "joubranjad", "group": 1}, {"id": 267, "name": "goingsolo", "group": 1}, {"id": 268, "name": "whatup_jack", "group": 1}, {"id": 269, "name": "jens_andreas", "group": 1}, {"id": 270, "name": "stereyou_box", "group": 1}, {"id": 271, "name": "lewagonbelgium", "group": 1}, {"id": 272, "name": "nettewellens", "group": 1}, {"id": 273, "name": "ppallupe", "group": 1}, {"id": 274, "name": "me.and.you.weddingplanner", "group": 1}, {"id": 275, "name": "arnesaen", "group": 1}, {"id": 276, "name": "anna.vanpassel", "group": 1}, {"id": 277, "name": "3percentproperties", "group": 1}, {"id": 278, "name": "arnovan_m", "group": 1}, {"id": 279, "name": "standaertbabs", "group": 1}, {"id": 280, "name": "lorynoe", "group": 1}, {"id": 281, "name": "mattie_lennon", "group": 1}, {"id": 282, "name": "alstrommia", "group": 1}, {"id": 283, "name": "ponsiesaus", "group": 1}, {"id": 284, "name": "hannnahwardo", "group": 1}, {"id": 285, "name": "barbaravonck", "group": 1}, {"id": 286, "name": "granadilla.swim", "group": 1}, {"id": 287, "name": "alexanderbobroske", "group": 1}, {"id": 288, "name": "stevendesoir", "group": 1}, {"id": 289, "name": "fukzyphoto", "group": 1}, {"id": 290, "name": "elaine_fadeux", "group": 1}, {"id": 291, "name": "vdp_jens", "group": 1}, {"id": 292, "name": "jesuschrist_showman", "group": 1}, {"id": 293, "name": "lynnlongueville", "group": 1}, {"id": 294, "name": "sosayscharlotte", "group": 1}, {"id": 295, "name": "geraldine.lens", "group": 1}, {"id": 296, "name": "firfitzadar", "group": 1}, {"id": 297, "name": "elinemeul", "group": 1}, {"id": 298, "name": "victorvandermeiren", "group": 1}, {"id": 299, "name": "olivier_kegels", "group": 1}, {"id": 300, "name": "annsophieschellen", "group": 1}, {"id": 301, "name": "levislap", "group": 1}, {"id": 302, "name": "simoensine", "group": 1}, {"id": 303, "name": "janschiltz", "group": 1}, {"id": 304, "name": "dante.verspaendonck", "group": 1}, {"id": 305, "name": "rozmanroko", "group": 1}, {"id": 306, "name": "marionlouhamelin", "group": 1}, {"id": 307, "name": "tomislav_medimorec", "group": 1}, {"id": 308, "name": "findyourprp", "group": 1}, {"id": 309, "name": "redbullbe", "group": 1}, {"id": 310, "name": "astridjoos", "group": 1}, {"id": 311, "name": "wiesi_will", "group": 1}, {"id": 312, "name": "waumanlana", "group": 1}, {"id": 313, "name": "fittravler", "group": 1}, {"id": 314, "name": "_alexdemo", "group": 1}, {"id": 315, "name": "tanguydh", "group": 1}], "links": [{"id": 0, "source": 81, "target": 230, "value": 0.3, "bi_directional": true}, {"id": 1, "source": 81, "target": 264, "value": 0.3, "bi_directional": true}, {"id": 2, "source": 81, "target": 44, "value": 0.3, "bi_directional": true}, {"id": 3, "source": 81, "target": 115, "value": 0.3, "bi_directional": true}, {"id": 4, "source": 81, "target": 41, "value": 0.3, "bi_directional": false}, {"id": 5, "source": 81, "target": 29, "value": 0.3, "bi_directional": true}, {"id": 6, "source": 81, "target": 314, "value": 0.3, "bi_directional": true}, {"id": 7, "source": 81, "target": 141, "value": 0.3, "bi_directional": true}, {"id": 8, "source": 81, "target": 279, "value": 0.3, "bi_directional": true}, {"id": 9, "source": 81, "target": 117, "value": 0.3, "bi_directional": true}, {"id": 10, "source": 81, "target": 298, "value": 0.3, "bi_directional": true}, {"id": 11, "source": 101, "target": 15, "value": 0.3, "bi_directional": true}, {"id": 12, "source": 101, "target": 262, "value": 0.3, "bi_directional": true}, {"id": 13, "source": 101, "target": 140, "value": 0.3, "bi_directional": true}, {"id": 14, "source": 101, "target": 312, "value": 0.3, "bi_directional": true}, {"id": 15, "source": 101, "target": 134, "value": 0.3, "bi_directional": true}, {"id": 16, "source": 101, "target": 275, "value": 0.3, "bi_directional": true}, {"id": 17, "source": 101, "target": 144, "value": 0.3, "bi_directional": true}, {"id": 18, "source": 101, "target": 281, "value": 0.3, "bi_directional": true}, {"id": 19, "source": 101, "target": 234, "value": 0.3, "bi_directional": true}, {"id": 20, "source": 101, "target": 211, "value": 0.3, "bi_directional": true}, {"id": 21, "source": 101, "target": 282, "value": 0.3, "bi_directional": true}, {"id": 22, "source": 64, "target": 9, "value": 0.3, "bi_directional": true}, {"id": 23, "source": 64, "target": 206, "value": 0.3, "bi_directional": true}, {"id": 24, "source": 64, "target": 1, "value": 0.3, "bi_directional": true}, {"id": 25, "source": 64, "target": 284, "value": 0.3, "bi_directional": true}, {"id": 26, "source": 64, "target": 143, "value": 0.3, "bi_directional": true}, {"id": 27, "source": 64, "target": 258, "value": 0.3, "bi_directional": true}, {"id": 28, "source": 64, "target": 107, "value": 0.3, "bi_directional": true}, {"id": 29, "source": 303, "target": 41, "value": 0.3, "bi_directional": true}, {"id": 30, "source": 303, "target": 298, "value": 0.3, "bi_directional": true}, {"id": 31, "source": 303, "target": 115, "value": 0.3, "bi_directional": true}, {"id": 32, "source": 303, "target": 264, "value": 0.3, "bi_directional": true}, {"id": 33, "source": 303, "target": 270, "value": 0.3, "bi_directional": true}, {"id": 34, "source": 303, "target": 314, "value": 0.3, "bi_directional": true}, {"id": 35, "source": 303, "target": 42, "value": 0.3, "bi_directional": true}, {"id": 36, "source": 303, "target": 309, "value": 0.3, "bi_directional": true}, {"id": 37, "source": 303, "target": 279, "value": 0.3, "bi_directional": true}, {"id": 38, "source": 303, "target": 93, "value": 0.3, "bi_directional": true}, {"id": 39, "source": 303, "target": 276, "value": 0.3, "bi_directional": true}, {"id": 40, "source": 303, "target": 176, "value": 0.3, "bi_directional": true}, {"id": 41, "source": 303, "target": 230, "value": 0.3, "bi_directional": true}, {"id": 42, "source": 303, "target": 29, "value": 0.3, "bi_directional": true}, {"id": 43, "source": 303, "target": 240, "value": 0.3, "bi_directional": true}, {"id": 44, "source": 303, "target": 146, "value": 0.3, "bi_directional": false}, {"id": 45, "source": 303, "target": 160, "value": 0.3, "bi_directional": true}, {"id": 46, "source": 303, "target": 114, "value": 0.3, "bi_directional": true}, {"id": 47, "source": 303, "target": 44, "value": 0.3, "bi_directional": true}, {"id": 48, "source": 167, "target": 278, "value": 0.3, "bi_directional": true}, {"id": 49, "source": 167, "target": 173, "value": 0.3, "bi_directional": true}, {"id": 50, "source": 167, "target": 182, "value": 0.3, "bi_directional": true}, {"id": 51, "source": 167, "target": 92, "value": 0.3, "bi_directional": true}, {"id": 52, "source": 167, "target": 126, "value": 0.3, "bi_directional": true}, {"id": 53, "source": 167, "target": 55, "value": 0.3, "bi_directional": true}, {"id": 54, "source": 86, "target": 299, "value": 0.3, "bi_directional": true}, {"id": 55, "source": 86, "target": 251, "value": 0.3, "bi_directional": true}, {"id": 56, "source": 86, "target": 270, "value": 0.3, "bi_directional": false}, {"id": 57, "source": 86, "target": 209, "value": 0.3, "bi_directional": false}, {"id": 58, "source": 86, "target": 248, "value": 0.3, "bi_directional": true}, {"id": 59, "source": 86, "target": 279, "value": 0.3, "bi_directional": true}, {"id": 60, "source": 86, "target": 44, "value": 0.3, "bi_directional": false}, {"id": 61, "source": 86, "target": 121, "value": 0.3, "bi_directional": true}, {"id": 62, "source": 86, "target": 175, "value": 0.3, "bi_directional": true}, {"id": 63, "source": 86, "target": 193, "value": 0.3, "bi_directional": false}, {"id": 64, "source": 86, "target": 203, "value": 0.3, "bi_directional": true}, {"id": 65, "source": 86, "target": 130, "value": 0.3, "bi_directional": false}, {"id": 66, "source": 86, "target": 223, "value": 0.3, "bi_directional": true}, {"id": 67, "source": 86, "target": 182, "value": 0.3, "bi_directional": false}, {"id": 68, "source": 86, "target": 158, "value": 0.3, "bi_directional": true}, {"id": 69, "source": 86, "target": 156, "value": 0.3, "bi_directional": true}, {"id": 70, "source": 86, "target": 172, "value": 0.3, "bi_directional": false}, {"id": 71, "source": 86, "target": 120, "value": 0.3, "bi_directional": true}, {"id": 72, "source": 86, "target": 218, "value": 0.3, "bi_directional": true}, {"id": 73, "source": 86, "target": 131, "value": 0.3, "bi_directional": false}, {"id": 74, "source": 86, "target": 181, "value": 0.3, "bi_directional": false}, {"id": 75, "source": 86, "target": 116, "value": 0.3, "bi_directional": false}, {"id": 76, "source": 86, "target": 41, "value": 0.3, "bi_directional": false}, {"id": 77, "source": 86, "target": 38, "value": 0.3, "bi_directional": false}, {"id": 78, "source": 86, "target": 115, "value": 0.3, "bi_directional": true}, {"id": 79, "source": 4, "target": 275, "value": 0.3, "bi_directional": true}, {"id": 80, "source": 4, "target": 3, "value": 0.3, "bi_directional": true}, {"id": 81, "source": 4, "target": 1, "value": 0.3, "bi_directional": true}, {"id": 82, "source": 4, "target": 286, "value": 0.3, "bi_directional": false}, {"id": 83, "source": 4, "target": 262, "value": 0.3, "bi_directional": true}, {"id": 84, "source": 4, "target": 154, "value": 0.3, "bi_directional": true}, {"id": 85, "source": 4, "target": 9, "value": 0.3, "bi_directional": true}, {"id": 86, "source": 196, "target": 234, "value": 0.3, "bi_directional": false}, {"id": 87, "source": 196, "target": 281, "value": 0.3, "bi_directional": true}, {"id": 88, "source": 196, "target": 286, "value": 0.3, "bi_directional": false}, {"id": 89, "source": 66, "target": 143, "value": 0.3, "bi_directional": true}, {"id": 90, "source": 66, "target": 262, "value": 0.3, "bi_directional": true}, {"id": 91, "source": 66, "target": 282, "value": 0.3, "bi_directional": true}, {"id": 92, "source": 57, "target": 39, "value": 0.3, "bi_directional": false}, {"id": 93, "source": 57, "target": 44, "value": 0.3, "bi_directional": false}, {"id": 94, "source": 57, "target": 11, "value": 0.3, "bi_directional": true}, {"id": 95, "source": 57, "target": 265, "value": 0.3, "bi_directional": true}, {"id": 96, "source": 57, "target": 292, "value": 0.3, "bi_directional": true}, {"id": 97, "source": 57, "target": 47, "value": 0.3, "bi_directional": true}, {"id": 98, "source": 57, "target": 285, "value": 0.3, "bi_directional": true}, {"id": 99, "source": 57, "target": 290, "value": 0.3, "bi_directional": true}, {"id": 100, "source": 57, "target": 99, "value": 0.3, "bi_directional": false}, {"id": 101, "source": 57, "target": 139, "value": 0.3, "bi_directional": true}, {"id": 102, "source": 57, "target": 210, "value": 0.3, "bi_directional": true}, {"id": 103, "source": 57, "target": 45, "value": 0.3, "bi_directional": true}, {"id": 104, "source": 57, "target": 52, "value": 0.3, "bi_directional": true}, {"id": 105, "source": 57, "target": 31, "value": 0.3, "bi_directional": true}, {"id": 106, "source": 57, "target": 191, "value": 0.3, "bi_directional": true}, {"id": 107, "source": 57, "target": 239, "value": 0.3, "bi_directional": true}, {"id": 108, "source": 57, "target": 224, "value": 0.3, "bi_directional": true}, {"id": 109, "source": 306, "target": 32, "value": 0.3, "bi_directional": true}, {"id": 110, "source": 188, "target": 24, "value": 0.3, "bi_directional": true}, {"id": 111, "source": 188, "target": 76, "value": 0.3, "bi_directional": true}, {"id": 112, "source": 188, "target": 122, "value": 0.3, "bi_directional": true}, {"id": 113, "source": 188, "target": 212, "value": 0.3, "bi_directional": true}, {"id": 114, "source": 188, "target": 95, "value": 0.3, "bi_directional": true}, {"id": 115, "source": 188, "target": 19, "value": 0.3, "bi_directional": true}, {"id": 116, "source": 188, "target": 73, "value": 0.3, "bi_directional": false}, {"id": 117, "source": 188, "target": 300, "value": 0.3, "bi_directional": true}, {"id": 118, "source": 188, "target": 17, "value": 0.3, "bi_directional": true}, {"id": 119, "source": 188, "target": 237, "value": 0.3, "bi_directional": true}, {"id": 120, "source": 188, "target": 6, "value": 0.3, "bi_directional": true}, {"id": 121, "source": 188, "target": 238, "value": 0.3, "bi_directional": true}, {"id": 122, "source": 188, "target": 69, "value": 0.3, "bi_directional": true}, {"id": 123, "source": 188, "target": 117, "value": 0.3, "bi_directional": true}, {"id": 124, "source": 188, "target": 30, "value": 0.3, "bi_directional": true}, {"id": 125, "source": 188, "target": 82, "value": 0.3, "bi_directional": true}, {"id": 126, "source": 118, "target": 13, "value": 0.3, "bi_directional": true}, {"id": 127, "source": 118, "target": 89, "value": 0.3, "bi_directional": true}, {"id": 128, "source": 118, "target": 241, "value": 0.3, "bi_directional": true}, {"id": 129, "source": 265, "target": 218, "value": 0.3, "bi_directional": true}, {"id": 130, "source": 265, "target": 115, "value": 0.3, "bi_directional": true}, {"id": 131, "source": 265, "target": 239, "value": 0.3, "bi_directional": false}, {"id": 132, "source": 265, "target": 127, "value": 0.3, "bi_directional": true}, {"id": 133, "source": 265, "target": 168, "value": 0.3, "bi_directional": true}, {"id": 134, "source": 265, "target": 309, "value": 0.3, "bi_directional": true}, {"id": 135, "source": 265, "target": 125, "value": 0.3, "bi_directional": true}, {"id": 136, "source": 265, "target": 251, "value": 0.3, "bi_directional": false}, {"id": 137, "source": 106, "target": 243, "value": 0.3, "bi_directional": false}, {"id": 138, "source": 106, "target": 141, "value": 0.3, "bi_directional": false}, {"id": 139, "source": 43, "target": 161, "value": 0.3, "bi_directional": true}, {"id": 140, "source": 43, "target": 236, "value": 0.3, "bi_directional": true}, {"id": 141, "source": 43, "target": 151, "value": 0.3, "bi_directional": true}, {"id": 142, "source": 43, "target": 247, "value": 0.3, "bi_directional": true}, {"id": 143, "source": 43, "target": 28, "value": 0.3, "bi_directional": true}, {"id": 144, "source": 43, "target": 302, "value": 0.3, "bi_directional": true}, {"id": 145, "source": 43, "target": 157, "value": 0.3, "bi_directional": true}, {"id": 146, "source": 43, "target": 67, "value": 0.3, "bi_directional": true}, {"id": 147, "source": 43, "target": 91, "value": 0.3, "bi_directional": true}, {"id": 148, "source": 43, "target": 150, "value": 0.3, "bi_directional": true}, {"id": 149, "source": 43, "target": 24, "value": 0.3, "bi_directional": true}, {"id": 150, "source": 43, "target": 6, "value": 0.3, "bi_directional": true}, {"id": 151, "source": 43, "target": 46, "value": 0.3, "bi_directional": false}, {"id": 152, "source": 92, "target": 33, "value": 0.3, "bi_directional": true}, {"id": 153, "source": 92, "target": 229, "value": 0.3, "bi_directional": true}, {"id": 154, "source": 92, "target": 23, "value": 0.3, "bi_directional": true}, {"id": 155, "source": 92, "target": 173, "value": 0.3, "bi_directional": true}, {"id": 156, "source": 92, "target": 199, "value": 0.3, "bi_directional": true}, {"id": 157, "source": 92, "target": 113, "value": 0.3, "bi_directional": true}, {"id": 158, "source": 92, "target": 55, "value": 0.3, "bi_directional": true}, {"id": 159, "source": 92, "target": 126, "value": 0.3, "bi_directional": true}, {"id": 160, "source": 92, "target": 278, "value": 0.3, "bi_directional": true}, {"id": 161, "source": 16, "target": 291, "value": 0.3, "bi_directional": true}, {"id": 162, "source": 16, "target": 293, "value": 0.3, "bi_directional": true}, {"id": 163, "source": 16, "target": 133, "value": 0.3, "bi_directional": true}, {"id": 164, "source": 16, "target": 272, "value": 0.3, "bi_directional": true}, {"id": 165, "source": 16, "target": 221, "value": 0.3, "bi_directional": true}, {"id": 166, "source": 16, "target": 50, "value": 0.3, "bi_directional": true}, {"id": 167, "source": 16, "target": 166, "value": 0.3, "bi_directional": true}, {"id": 168, "source": 16, "target": 117, "value": 0.3, "bi_directional": false}, {"id": 169, "source": 16, "target": 302, "value": 0.3, "bi_directional": true}, {"id": 170, "source": 16, "target": 19, "value": 0.3, "bi_directional": true}, {"id": 171, "source": 16, "target": 6, "value": 0.3, "bi_directional": false}, {"id": 172, "source": 16, "target": 46, "value": 0.3, "bi_directional": false}, {"id": 173, "source": 16, "target": 69, "value": 0.3, "bi_directional": false}, {"id": 174, "source": 16, "target": 187, "value": 0.3, "bi_directional": false}, {"id": 175, "source": 233, "target": 85, "value": 0.3, "bi_directional": true}, {"id": 176, "source": 233, "target": 82, "value": 0.3, "bi_directional": true}, {"id": 177, "source": 233, "target": 129, "value": 0.3, "bi_directional": false}, {"id": 178, "source": 233, "target": 244, "value": 0.3, "bi_directional": true}, {"id": 179, "source": 233, "target": 39, "value": 0.3, "bi_directional": false}, {"id": 180, "source": 231, "target": 110, "value": 0.3, "bi_directional": true}, {"id": 181, "source": 231, "target": 150, "value": 0.3, "bi_directional": true}, {"id": 182, "source": 231, "target": 263, "value": 0.3, "bi_directional": true}, {"id": 183, "source": 231, "target": 154, "value": 0.3, "bi_directional": true}, {"id": 184, "source": 231, "target": 21, "value": 0.3, "bi_directional": true}, {"id": 185, "source": 231, "target": 10, "value": 0.3, "bi_directional": true}, {"id": 186, "source": 231, "target": 262, "value": 0.3, "bi_directional": true}, {"id": 187, "source": 231, "target": 190, "value": 0.3, "bi_directional": true}, {"id": 188, "source": 231, "target": 60, "value": 0.3, "bi_directional": false}, {"id": 189, "source": 231, "target": 223, "value": 0.3, "bi_directional": true}, {"id": 190, "source": 245, "target": 195, "value": 0.3, "bi_directional": true}, {"id": 191, "source": 245, "target": 37, "value": 0.3, "bi_directional": true}, {"id": 192, "source": 245, "target": 262, "value": 0.3, "bi_directional": true}, {"id": 193, "source": 245, "target": 154, "value": 0.3, "bi_directional": true}, {"id": 194, "source": 245, "target": 159, "value": 0.3, "bi_directional": true}, {"id": 195, "source": 245, "target": 48, "value": 0.3, "bi_directional": true}, {"id": 196, "source": 245, "target": 277, "value": 0.3, "bi_directional": true}, {"id": 197, "source": 245, "target": 96, "value": 0.3, "bi_directional": true}, {"id": 198, "source": 245, "target": 196, "value": 0.3, "bi_directional": false}, {"id": 199, "source": 11, "target": 292, "value": 0.3, "bi_directional": true}, {"id": 200, "source": 11, "target": 290, "value": 0.3, "bi_directional": true}, {"id": 201, "source": 11, "target": 49, "value": 0.3, "bi_directional": true}, {"id": 202, "source": 11, "target": 208, "value": 0.3, "bi_directional": false}, {"id": 203, "source": 11, "target": 139, "value": 0.3, "bi_directional": true}, {"id": 204, "source": 11, "target": 239, "value": 0.3, "bi_directional": false}, {"id": 205, "source": 11, "target": 265, "value": 0.3, "bi_directional": false}, {"id": 206, "source": 11, "target": 31, "value": 0.3, "bi_directional": true}, {"id": 207, "source": 11, "target": 39, "value": 0.3, "bi_directional": false}, {"id": 208, "source": 11, "target": 152, "value": 0.3, "bi_directional": false}, {"id": 209, "source": 171, "target": 75, "value": 0.3, "bi_directional": true}, {"id": 210, "source": 171, "target": 216, "value": 0.3, "bi_directional": true}, {"id": 211, "source": 171, "target": 207, "value": 0.3, "bi_directional": true}, {"id": 212, "source": 171, "target": 271, "value": 0.3, "bi_directional": false}, {"id": 213, "source": 171, "target": 308, "value": 0.3, "bi_directional": true}, {"id": 214, "source": 35, "target": 300, "value": 0.3, "bi_directional": true}, {"id": 215, "source": 35, "target": 274, "value": 0.3, "bi_directional": true}, {"id": 216, "source": 35, "target": 117, "value": 0.3, "bi_directional": false}, {"id": 217, "source": 35, "target": 28, "value": 0.3, "bi_directional": false}, {"id": 218, "source": 35, "target": 158, "value": 0.3, "bi_directional": false}, {"id": 219, "source": 35, "target": 225, "value": 0.3, "bi_directional": true}, {"id": 220, "source": 35, "target": 208, "value": 0.3, "bi_directional": false}, {"id": 221, "source": 35, "target": 82, "value": 0.3, "bi_directional": true}, {"id": 222, "source": 35, "target": 12, "value": 0.3, "bi_directional": true}, {"id": 223, "source": 35, "target": 30, "value": 0.3, "bi_directional": true}, {"id": 224, "source": 35, "target": 91, "value": 0.3, "bi_directional": true}, {"id": 225, "source": 35, "target": 252, "value": 0.3, "bi_directional": true}, {"id": 226, "source": 35, "target": 133, "value": 0.3, "bi_directional": true}, {"id": 227, "source": 35, "target": 163, "value": 0.3, "bi_directional": true}, {"id": 228, "source": 35, "target": 67, "value": 0.3, "bi_directional": true}, {"id": 229, "source": 35, "target": 34, "value": 0.3, "bi_directional": true}, {"id": 230, "source": 100, "target": 119, "value": 0.3, "bi_directional": true}, {"id": 231, "source": 100, "target": 9, "value": 0.3, "bi_directional": true}, {"id": 232, "source": 100, "target": 284, "value": 0.3, "bi_directional": true}, {"id": 233, "source": 100, "target": 60, "value": 0.3, "bi_directional": true}, {"id": 234, "source": 100, "target": 262, "value": 0.3, "bi_directional": true}, {"id": 235, "source": 100, "target": 275, "value": 0.3, "bi_directional": false}, {"id": 236, "source": 100, "target": 249, "value": 0.3, "bi_directional": true}, {"id": 237, "source": 100, "target": 84, "value": 0.3, "bi_directional": false}, {"id": 238, "source": 100, "target": 140, "value": 0.3, "bi_directional": false}, {"id": 239, "source": 100, "target": 202, "value": 0.3, "bi_directional": true}, {"id": 240, "source": 100, "target": 1, "value": 0.3, "bi_directional": true}, {"id": 241, "source": 100, "target": 247, "value": 0.3, "bi_directional": true}, {"id": 242, "source": 100, "target": 212, "value": 0.3, "bi_directional": true}, {"id": 243, "source": 100, "target": 154, "value": 0.3, "bi_directional": true}, {"id": 244, "source": 90, "target": 117, "value": 0.3, "bi_directional": true}, {"id": 245, "source": 90, "target": 230, "value": 0.3, "bi_directional": true}, {"id": 246, "source": 90, "target": 223, "value": 0.3, "bi_directional": true}, {"id": 247, "source": 90, "target": 109, "value": 0.3, "bi_directional": true}, {"id": 248, "source": 90, "target": 314, "value": 0.3, "bi_directional": true}, {"id": 249, "source": 90, "target": 111, "value": 0.3, "bi_directional": true}, {"id": 250, "source": 90, "target": 249, "value": 0.3, "bi_directional": true}, {"id": 251, "source": 119, "target": 236, "value": 0.3, "bi_directional": true}, {"id": 252, "source": 119, "target": 247, "value": 0.3, "bi_directional": true}, {"id": 253, "source": 119, "target": 90, "value": 0.3, "bi_directional": false}, {"id": 254, "source": 120, "target": 209, "value": 0.3, "bi_directional": true}, {"id": 255, "source": 120, "target": 183, "value": 0.3, "bi_directional": true}, {"id": 256, "source": 120, "target": 218, "value": 0.3, "bi_directional": true}, {"id": 257, "source": 120, "target": 176, "value": 0.3, "bi_directional": true}, {"id": 258, "source": 120, "target": 193, "value": 0.3, "bi_directional": true}, {"id": 259, "source": 120, "target": 315, "value": 0.3, "bi_directional": true}, {"id": 260, "source": 120, "target": 121, "value": 0.3, "bi_directional": false}, {"id": 261, "source": 120, "target": 44, "value": 0.3, "bi_directional": true}, {"id": 262, "source": 120, "target": 203, "value": 0.3, "bi_directional": true}, {"id": 263, "source": 120, "target": 131, "value": 0.3, "bi_directional": true}, {"id": 264, "source": 120, "target": 299, "value": 0.3, "bi_directional": true}, {"id": 265, "source": 120, "target": 58, "value": 0.3, "bi_directional": true}, {"id": 266, "source": 120, "target": 255, "value": 0.3, "bi_directional": true}, {"id": 267, "source": 120, "target": 248, "value": 0.3, "bi_directional": true}, {"id": 268, "source": 120, "target": 279, "value": 0.3, "bi_directional": false}, {"id": 269, "source": 120, "target": 259, "value": 0.3, "bi_directional": false}, {"id": 270, "source": 120, "target": 223, "value": 0.3, "bi_directional": true}, {"id": 271, "source": 120, "target": 41, "value": 0.3, "bi_directional": true}, {"id": 272, "source": 120, "target": 181, "value": 0.3, "bi_directional": true}, {"id": 273, "source": 120, "target": 156, "value": 0.3, "bi_directional": true}, {"id": 274, "source": 120, "target": 116, "value": 0.3, "bi_directional": false}, {"id": 275, "source": 120, "target": 125, "value": 0.3, "bi_directional": true}, {"id": 276, "source": 120, "target": 130, "value": 0.3, "bi_directional": true}, {"id": 277, "source": 120, "target": 314, "value": 0.3, "bi_directional": true}, {"id": 278, "source": 120, "target": 297, "value": 0.3, "bi_directional": true}, {"id": 279, "source": 120, "target": 73, "value": 0.3, "bi_directional": true}, {"id": 280, "source": 120, "target": 170, "value": 0.3, "bi_directional": true}, {"id": 281, "source": 120, "target": 230, "value": 0.3, "bi_directional": true}, {"id": 282, "source": 120, "target": 264, "value": 0.3, "bi_directional": true}, {"id": 283, "source": 120, "target": 270, "value": 0.3, "bi_directional": true}, {"id": 284, "source": 120, "target": 175, "value": 0.3, "bi_directional": true}, {"id": 285, "source": 120, "target": 172, "value": 0.3, "bi_directional": true}, {"id": 286, "source": 120, "target": 38, "value": 0.3, "bi_directional": true}, {"id": 287, "source": 120, "target": 79, "value": 0.3, "bi_directional": true}, {"id": 288, "source": 120, "target": 251, "value": 0.3, "bi_directional": true}, {"id": 289, "source": 120, "target": 112, "value": 0.3, "bi_directional": true}, {"id": 290, "source": 120, "target": 158, "value": 0.3, "bi_directional": false}, {"id": 291, "source": 120, "target": 115, "value": 0.3, "bi_directional": true}, {"id": 292, "source": 216, "target": 145, "value": 0.3, "bi_directional": true}, {"id": 293, "source": 259, "target": 181, "value": 0.3, "bi_directional": true}, {"id": 294, "source": 259, "target": 121, "value": 0.3, "bi_directional": true}, {"id": 295, "source": 259, "target": 183, "value": 0.3, "bi_directional": true}, {"id": 296, "source": 259, "target": 131, "value": 0.3, "bi_directional": true}, {"id": 297, "source": 259, "target": 158, "value": 0.3, "bi_directional": true}, {"id": 298, "source": 259, "target": 170, "value": 0.3, "bi_directional": true}, {"id": 299, "source": 259, "target": 299, "value": 0.3, "bi_directional": true}, {"id": 300, "source": 259, "target": 39, "value": 0.3, "bi_directional": false}, {"id": 301, "source": 259, "target": 218, "value": 0.3, "bi_directional": true}, {"id": 302, "source": 259, "target": 175, "value": 0.3, "bi_directional": false}, {"id": 303, "source": 259, "target": 116, "value": 0.3, "bi_directional": false}, {"id": 304, "source": 259, "target": 251, "value": 0.3, "bi_directional": true}, {"id": 305, "source": 72, "target": 241, "value": 0.3, "bi_directional": true}, {"id": 306, "source": 50, "target": 6, "value": 0.3, "bi_directional": true}, {"id": 307, "source": 50, "target": 214, "value": 0.3, "bi_directional": false}, {"id": 308, "source": 50, "target": 95, "value": 0.3, "bi_directional": true}, {"id": 309, "source": 50, "target": 82, "value": 0.3, "bi_directional": true}, {"id": 310, "source": 50, "target": 133, "value": 0.3, "bi_directional": true}, {"id": 311, "source": 50, "target": 187, "value": 0.3, "bi_directional": false}, {"id": 312, "source": 50, "target": 24, "value": 0.3, "bi_directional": true}, {"id": 313, "source": 50, "target": 166, "value": 0.3, "bi_directional": true}, {"id": 314, "source": 50, "target": 46, "value": 0.3, "bi_directional": false}, {"id": 315, "source": 50, "target": 221, "value": 0.3, "bi_directional": true}, {"id": 316, "source": 50, "target": 91, "value": 0.3, "bi_directional": false}, {"id": 317, "source": 50, "target": 135, "value": 0.3, "bi_directional": false}, {"id": 318, "source": 50, "target": 142, "value": 0.3, "bi_directional": false}, {"id": 319, "source": 50, "target": 128, "value": 0.3, "bi_directional": false}, {"id": 320, "source": 50, "target": 163, "value": 0.3, "bi_directional": false}, {"id": 321, "source": 50, "target": 88, "value": 0.3, "bi_directional": false}, {"id": 322, "source": 50, "target": 184, "value": 0.3, "bi_directional": false}, {"id": 323, "source": 50, "target": 54, "value": 0.3, "bi_directional": true}, {"id": 324, "source": 50, "target": 302, "value": 0.3, "bi_directional": true}, {"id": 325, "source": 50, "target": 293, "value": 0.3, "bi_directional": true}, {"id": 326, "source": 50, "target": 312, "value": 0.3, "bi_directional": false}, {"id": 327, "source": 50, "target": 122, "value": 0.3, "bi_directional": false}, {"id": 328, "source": 50, "target": 105, "value": 0.3, "bi_directional": true}, {"id": 329, "source": 50, "target": 12, "value": 0.3, "bi_directional": true}, {"id": 330, "source": 50, "target": 30, "value": 0.3, "bi_directional": true}, {"id": 331, "source": 50, "target": 291, "value": 0.3, "bi_directional": true}, {"id": 332, "source": 50, "target": 237, "value": 0.3, "bi_directional": true}, {"id": 333, "source": 50, "target": 34, "value": 0.3, "bi_directional": true}, {"id": 334, "source": 50, "target": 67, "value": 0.3, "bi_directional": true}, {"id": 335, "source": 50, "target": 117, "value": 0.3, "bi_directional": true}, {"id": 336, "source": 50, "target": 272, "value": 0.3, "bi_directional": true}, {"id": 337, "source": 50, "target": 69, "value": 0.3, "bi_directional": true}, {"id": 338, "source": 51, "target": 194, "value": 0.3, "bi_directional": true}, {"id": 339, "source": 251, "target": 299, "value": 0.3, "bi_directional": true}, {"id": 340, "source": 251, "target": 170, "value": 0.3, "bi_directional": true}, {"id": 341, "source": 251, "target": 109, "value": 0.3, "bi_directional": true}, {"id": 342, "source": 251, "target": 203, "value": 0.3, "bi_directional": false}, {"id": 343, "source": 251, "target": 38, "value": 0.3, "bi_directional": true}, {"id": 344, "source": 251, "target": 218, "value": 0.3, "bi_directional": true}, {"id": 345, "source": 251, "target": 58, "value": 0.3, "bi_directional": true}, {"id": 346, "source": 251, "target": 135, "value": 0.3, "bi_directional": false}, {"id": 347, "source": 251, "target": 116, "value": 0.3, "bi_directional": false}, {"id": 348, "source": 251, "target": 172, "value": 0.3, "bi_directional": true}, {"id": 349, "source": 251, "target": 131, "value": 0.3, "bi_directional": true}, {"id": 350, "source": 251, "target": 44, "value": 0.3, "bi_directional": true}, {"id": 351, "source": 251, "target": 270, "value": 0.3, "bi_directional": true}, {"id": 352, "source": 251, "target": 156, "value": 0.3, "bi_directional": false}, {"id": 353, "source": 251, "target": 125, "value": 0.3, "bi_directional": true}, {"id": 354, "source": 251, "target": 209, "value": 0.3, "bi_directional": false}, {"id": 355, "source": 251, "target": 175, "value": 0.3, "bi_directional": true}, {"id": 356, "source": 251, "target": 248, "value": 0.3, "bi_directional": true}, {"id": 357, "source": 251, "target": 158, "value": 0.3, "bi_directional": true}, {"id": 358, "source": 251, "target": 115, "value": 0.3, "bi_directional": true}, {"id": 359, "source": 251, "target": 183, "value": 0.3, "bi_directional": false}, {"id": 360, "source": 251, "target": 181, "value": 0.3, "bi_directional": true}, {"id": 361, "source": 251, "target": 208, "value": 0.3, "bi_directional": false}, {"id": 362, "source": 150, "target": 24, "value": 0.3, "bi_directional": true}, {"id": 363, "source": 150, "target": 161, "value": 0.3, "bi_directional": true}, {"id": 364, "source": 150, "target": 236, "value": 0.3, "bi_directional": true}, {"id": 365, "source": 150, "target": 151, "value": 0.3, "bi_directional": true}, {"id": 366, "source": 150, "target": 18, "value": 0.3, "bi_directional": true}, {"id": 367, "source": 240, "target": 44, "value": 0.3, "bi_directional": true}, {"id": 368, "source": 240, "target": 146, "value": 0.3, "bi_directional": true}, {"id": 369, "source": 240, "target": 81, "value": 0.3, "bi_directional": false}, {"id": 370, "source": 240, "target": 114, "value": 0.3, "bi_directional": true}, {"id": 371, "source": 240, "target": 270, "value": 0.3, "bi_directional": true}, {"id": 372, "source": 240, "target": 115, "value": 0.3, "bi_directional": true}, {"id": 373, "source": 240, "target": 41, "value": 0.3, "bi_directional": true}, {"id": 374, "source": 240, "target": 230, "value": 0.3, "bi_directional": true}, {"id": 375, "source": 240, "target": 264, "value": 0.3, "bi_directional": true}, {"id": 376, "source": 240, "target": 314, "value": 0.3, "bi_directional": true}, {"id": 377, "source": 240, "target": 276, "value": 0.3, "bi_directional": true}, {"id": 378, "source": 240, "target": 297, "value": 0.3, "bi_directional": true}, {"id": 379, "source": 240, "target": 301, "value": 0.3, "bi_directional": true}, {"id": 380, "source": 240, "target": 160, "value": 0.3, "bi_directional": true}, {"id": 381, "source": 240, "target": 42, "value": 0.3, "bi_directional": true}, {"id": 382, "source": 240, "target": 279, "value": 0.3, "bi_directional": true}, {"id": 383, "source": 240, "target": 172, "value": 0.3, "bi_directional": true}, {"id": 384, "source": 240, "target": 29, "value": 0.3, "bi_directional": true}, {"id": 385, "source": 240, "target": 298, "value": 0.3, "bi_directional": true}, {"id": 386, "source": 240, "target": 176, "value": 0.3, "bi_directional": true}, {"id": 387, "source": 298, "target": 146, "value": 0.3, "bi_directional": true}, {"id": 388, "source": 298, "target": 44, "value": 0.3, "bi_directional": true}, {"id": 389, "source": 298, "target": 41, "value": 0.3, "bi_directional": true}, {"id": 390, "source": 298, "target": 115, "value": 0.3, "bi_directional": true}, {"id": 391, "source": 298, "target": 193, "value": 0.3, "bi_directional": true}, {"id": 392, "source": 298, "target": 279, "value": 0.3, "bi_directional": true}, {"id": 393, "source": 298, "target": 183, "value": 0.3, "bi_directional": true}, {"id": 394, "source": 298, "target": 301, "value": 0.3, "bi_directional": true}, {"id": 395, "source": 298, "target": 160, "value": 0.3, "bi_directional": true}, {"id": 396, "source": 298, "target": 230, "value": 0.3, "bi_directional": true}, {"id": 397, "source": 298, "target": 264, "value": 0.3, "bi_directional": true}, {"id": 398, "source": 298, "target": 314, "value": 0.3, "bi_directional": true}, {"id": 399, "source": 298, "target": 276, "value": 0.3, "bi_directional": true}, {"id": 400, "source": 298, "target": 172, "value": 0.3, "bi_directional": true}, {"id": 401, "source": 298, "target": 29, "value": 0.3, "bi_directional": true}, {"id": 402, "source": 298, "target": 114, "value": 0.3, "bi_directional": true}, {"id": 403, "source": 298, "target": 176, "value": 0.3, "bi_directional": true}, {"id": 404, "source": 60, "target": 275, "value": 0.3, "bi_directional": true}, {"id": 405, "source": 60, "target": 10, "value": 0.3, "bi_directional": true}, {"id": 406, "source": 60, "target": 261, "value": 0.3, "bi_directional": true}, {"id": 407, "source": 60, "target": 262, "value": 0.3, "bi_directional": true}, {"id": 408, "source": 60, "target": 9, "value": 0.3, "bi_directional": true}, {"id": 409, "source": 60, "target": 249, "value": 0.3, "bi_directional": false}, {"id": 410, "source": 60, "target": 4, "value": 0.3, "bi_directional": false}, {"id": 411, "source": 60, "target": 284, "value": 0.3, "bi_directional": false}, {"id": 412, "source": 60, "target": 135, "value": 0.3, "bi_directional": false}, {"id": 413, "source": 296, "target": 305, "value": 0.3, "bi_directional": true}, {"id": 414, "source": 98, "target": 30, "value": 0.3, "bi_directional": true}, {"id": 415, "source": 98, "target": 88, "value": 0.3, "bi_directional": true}, {"id": 416, "source": 98, "target": 99, "value": 0.3, "bi_directional": true}, {"id": 417, "source": 98, "target": 139, "value": 0.3, "bi_directional": true}, {"id": 418, "source": 98, "target": 105, "value": 0.3, "bi_directional": true}, {"id": 419, "source": 98, "target": 39, "value": 0.3, "bi_directional": false}, {"id": 420, "source": 98, "target": 221, "value": 0.3, "bi_directional": true}, {"id": 421, "source": 98, "target": 285, "value": 0.3, "bi_directional": true}, {"id": 422, "source": 98, "target": 191, "value": 0.3, "bi_directional": true}, {"id": 423, "source": 235, "target": 138, "value": 0.3, "bi_directional": false}, {"id": 424, "source": 235, "target": 129, "value": 0.3, "bi_directional": false}, {"id": 425, "source": 173, "target": 55, "value": 0.3, "bi_directional": true}, {"id": 426, "source": 173, "target": 278, "value": 0.3, "bi_directional": true}, {"id": 427, "source": 173, "target": 33, "value": 0.3, "bi_directional": true}, {"id": 428, "source": 173, "target": 199, "value": 0.3, "bi_directional": true}, {"id": 429, "source": 173, "target": 229, "value": 0.3, "bi_directional": false}, {"id": 430, "source": 173, "target": 204, "value": 0.3, "bi_directional": false}, {"id": 431, "source": 173, "target": 23, "value": 0.3, "bi_directional": true}, {"id": 432, "source": 173, "target": 126, "value": 0.3, "bi_directional": true}, {"id": 433, "source": 173, "target": 14, "value": 0.3, "bi_directional": false}, {"id": 434, "source": 173, "target": 94, "value": 0.3, "bi_directional": true}, {"id": 435, "source": 173, "target": 97, "value": 0.3, "bi_directional": true}, {"id": 436, "source": 69, "target": 95, "value": 0.3, "bi_directional": true}, {"id": 437, "source": 69, "target": 312, "value": 0.3, "bi_directional": false}, {"id": 438, "source": 69, "target": 272, "value": 0.3, "bi_directional": true}, {"id": 439, "source": 69, "target": 187, "value": 0.3, "bi_directional": true}, {"id": 440, "source": 69, "target": 12, "value": 0.3, "bi_directional": true}, {"id": 441, "source": 69, "target": 212, "value": 0.3, "bi_directional": true}, {"id": 442, "source": 69, "target": 238, "value": 0.3, "bi_directional": true}, {"id": 443, "source": 69, "target": 214, "value": 0.3, "bi_directional": true}, {"id": 444, "source": 69, "target": 117, "value": 0.3, "bi_directional": true}, {"id": 445, "source": 69, "target": 180, "value": 0.3, "bi_directional": true}, {"id": 446, "source": 69, "target": 54, "value": 0.3, "bi_directional": true}, {"id": 447, "source": 69, "target": 201, "value": 0.3, "bi_directional": true}, {"id": 448, "source": 192, "target": 236, "value": 0.3, "bi_directional": true}, {"id": 449, "source": 192, "target": 241, "value": 0.3, "bi_directional": false}, {"id": 450, "source": 192, "target": 247, "value": 0.3, "bi_directional": true}, {"id": 451, "source": 192, "target": 61, "value": 0.3, "bi_directional": true}, {"id": 452, "source": 177, "target": 21, "value": 0.3, "bi_directional": true}, {"id": 453, "source": 177, "target": 37, "value": 0.3, "bi_directional": true}, {"id": 454, "source": 177, "target": 103, "value": 0.3, "bi_directional": true}, {"id": 455, "source": 177, "target": 10, "value": 0.3, "bi_directional": true}, {"id": 456, "source": 177, "target": 154, "value": 0.3, "bi_directional": true}, {"id": 457, "source": 177, "target": 190, "value": 0.3, "bi_directional": true}, {"id": 458, "source": 177, "target": 110, "value": 0.3, "bi_directional": true}, {"id": 459, "source": 31, "target": 139, "value": 0.3, "bi_directional": true}, {"id": 460, "source": 31, "target": 168, "value": 0.3, "bi_directional": false}, {"id": 461, "source": 31, "target": 224, "value": 0.3, "bi_directional": true}, {"id": 462, "source": 31, "target": 210, "value": 0.3, "bi_directional": true}, {"id": 463, "source": 31, "target": 191, "value": 0.3, "bi_directional": true}, {"id": 464, "source": 31, "target": 49, "value": 0.3, "bi_directional": true}, {"id": 465, "source": 31, "target": 285, "value": 0.3, "bi_directional": true}, {"id": 466, "source": 31, "target": 239, "value": 0.3, "bi_directional": true}, {"id": 467, "source": 31, "target": 309, "value": 0.3, "bi_directional": false}, {"id": 468, "source": 31, "target": 152, "value": 0.3, "bi_directional": false}, {"id": 469, "source": 31, "target": 292, "value": 0.3, "bi_directional": true}, {"id": 470, "source": 31, "target": 47, "value": 0.3, "bi_directional": true}, {"id": 471, "source": 31, "target": 39, "value": 0.3, "bi_directional": false}, {"id": 472, "source": 31, "target": 45, "value": 0.3, "bi_directional": true}, {"id": 473, "source": 213, "target": 153, "value": 0.3, "bi_directional": true}, {"id": 474, "source": 213, "target": 90, "value": 0.3, "bi_directional": false}, {"id": 475, "source": 239, "target": 292, "value": 0.3, "bi_directional": true}, {"id": 476, "source": 239, "target": 47, "value": 0.3, "bi_directional": true}, {"id": 477, "source": 239, "target": 39, "value": 0.3, "bi_directional": false}, {"id": 478, "source": 239, "target": 168, "value": 0.3, "bi_directional": true}, {"id": 479, "source": 239, "target": 139, "value": 0.3, "bi_directional": true}, {"id": 480, "source": 239, "target": 285, "value": 0.3, "bi_directional": true}, {"id": 481, "source": 270, "target": 79, "value": 0.3, "bi_directional": false}, {"id": 482, "source": 270, "target": 264, "value": 0.3, "bi_directional": true}, {"id": 483, "source": 270, "target": 42, "value": 0.3, "bi_directional": true}, {"id": 484, "source": 270, "target": 279, "value": 0.3, "bi_directional": false}, {"id": 485, "source": 270, "target": 248, "value": 0.3, "bi_directional": false}, {"id": 486, "source": 270, "target": 183, "value": 0.3, "bi_directional": true}, {"id": 487, "source": 270, "target": 181, "value": 0.3, "bi_directional": true}, {"id": 488, "source": 270, "target": 299, "value": 0.3, "bi_directional": true}, {"id": 489, "source": 270, "target": 47, "value": 0.3, "bi_directional": true}, {"id": 490, "source": 270, "target": 112, "value": 0.3, "bi_directional": false}, {"id": 491, "source": 270, "target": 116, "value": 0.3, "bi_directional": false}, {"id": 492, "source": 270, "target": 46, "value": 0.3, "bi_directional": false}, {"id": 493, "source": 270, "target": 222, "value": 0.3, "bi_directional": false}, {"id": 494, "source": 270, "target": 38, "value": 0.3, "bi_directional": false}, {"id": 495, "source": 270, "target": 29, "value": 0.3, "bi_directional": true}, {"id": 496, "source": 270, "target": 44, "value": 0.3, "bi_directional": true}, {"id": 497, "source": 270, "target": 172, "value": 0.3, "bi_directional": true}, {"id": 498, "source": 270, "target": 276, "value": 0.3, "bi_directional": true}, {"id": 499, "source": 270, "target": 131, "value": 0.3, "bi_directional": false}, {"id": 500, "source": 270, "target": 114, "value": 0.3, "bi_directional": true}, {"id": 501, "source": 270, "target": 285, "value": 0.3, "bi_directional": false}, {"id": 502, "source": 270, "target": 218, "value": 0.3, "bi_directional": true}, {"id": 503, "source": 270, "target": 298, "value": 0.3, "bi_directional": false}, {"id": 504, "source": 270, "target": 166, "value": 0.3, "bi_directional": false}, {"id": 505, "source": 270, "target": 141, "value": 0.3, "bi_directional": true}, {"id": 506, "source": 270, "target": 146, "value": 0.3, "bi_directional": true}, {"id": 507, "source": 270, "target": 158, "value": 0.3, "bi_directional": false}, {"id": 508, "source": 270, "target": 115, "value": 0.3, "bi_directional": true}, {"id": 509, "source": 270, "target": 176, "value": 0.3, "bi_directional": true}, {"id": 510, "source": 270, "target": 175, "value": 0.3, "bi_directional": true}, {"id": 511, "source": 270, "target": 95, "value": 0.3, "bi_directional": false}, {"id": 512, "source": 270, "target": 193, "value": 0.3, "bi_directional": true}, {"id": 513, "source": 270, "target": 210, "value": 0.3, "bi_directional": false}, {"id": 514, "source": 270, "target": 73, "value": 0.3, "bi_directional": true}, {"id": 515, "source": 270, "target": 223, "value": 0.3, "bi_directional": false}, {"id": 516, "source": 270, "target": 41, "value": 0.3, "bi_directional": true}, {"id": 517, "source": 270, "target": 57, "value": 0.3, "bi_directional": false}, {"id": 518, "source": 270, "target": 170, "value": 0.3, "bi_directional": true}, {"id": 519, "source": 270, "target": 230, "value": 0.3, "bi_directional": false}, {"id": 520, "source": 270, "target": 209, "value": 0.3, "bi_directional": false}, {"id": 521, "source": 270, "target": 203, "value": 0.3, "bi_directional": false}, {"id": 522, "source": 270, "target": 130, "value": 0.3, "bi_directional": true}, {"id": 523, "source": 270, "target": 191, "value": 0.3, "bi_directional": true}, {"id": 524, "source": 270, "target": 297, "value": 0.3, "bi_directional": false}, {"id": 525, "source": 270, "target": 315, "value": 0.3, "bi_directional": false}, {"id": 526, "source": 292, "target": 130, "value": 0.3, "bi_directional": true}, {"id": 527, "source": 292, "target": 285, "value": 0.3, "bi_directional": true}, {"id": 528, "source": 292, "target": 49, "value": 0.3, "bi_directional": true}, {"id": 529, "source": 292, "target": 290, "value": 0.3, "bi_directional": true}, {"id": 530, "source": 292, "target": 47, "value": 0.3, "bi_directional": true}, {"id": 531, "source": 292, "target": 265, "value": 0.3, "bi_directional": false}, {"id": 532, "source": 292, "target": 139, "value": 0.3, "bi_directional": true}, {"id": 533, "source": 37, "target": 190, "value": 0.3, "bi_directional": true}, {"id": 534, "source": 37, "target": 144, "value": 0.3, "bi_directional": true}, {"id": 535, "source": 37, "target": 228, "value": 0.3, "bi_directional": true}, {"id": 536, "source": 37, "target": 103, "value": 0.3, "bi_directional": true}, {"id": 537, "source": 37, "target": 262, "value": 0.3, "bi_directional": true}, {"id": 538, "source": 37, "target": 154, "value": 0.3, "bi_directional": true}, {"id": 539, "source": 37, "target": 10, "value": 0.3, "bi_directional": true}, {"id": 540, "source": 37, "target": 231, "value": 0.3, "bi_directional": false}, {"id": 541, "source": 37, "target": 254, "value": 0.3, "bi_directional": true}, {"id": 542, "source": 37, "target": 21, "value": 0.3, "bi_directional": true}, {"id": 543, "source": 37, "target": 147, "value": 0.3, "bi_directional": true}, {"id": 544, "source": 37, "target": 280, "value": 0.3, "bi_directional": true}, {"id": 545, "source": 37, "target": 110, "value": 0.3, "bi_directional": true}, {"id": 546, "source": 12, "target": 164, "value": 0.3, "bi_directional": true}, {"id": 547, "source": 12, "target": 225, "value": 0.3, "bi_directional": true}, {"id": 548, "source": 12, "target": 180, "value": 0.3, "bi_directional": true}, {"id": 549, "source": 12, "target": 54, "value": 0.3, "bi_directional": true}, {"id": 550, "source": 12, "target": 274, "value": 0.3, "bi_directional": true}, {"id": 551, "source": 12, "target": 184, "value": 0.3, "bi_directional": false}, {"id": 552, "source": 12, "target": 157, "value": 0.3, "bi_directional": false}, {"id": 553, "source": 12, "target": 88, "value": 0.3, "bi_directional": true}, {"id": 554, "source": 12, "target": 166, "value": 0.3, "bi_directional": true}, {"id": 555, "source": 12, "target": 252, "value": 0.3, "bi_directional": true}, {"id": 556, "source": 12, "target": 30, "value": 0.3, "bi_directional": true}, {"id": 557, "source": 12, "target": 187, "value": 0.3, "bi_directional": true}, {"id": 558, "source": 12, "target": 91, "value": 0.3, "bi_directional": true}, {"id": 559, "source": 12, "target": 105, "value": 0.3, "bi_directional": true}, {"id": 560, "source": 12, "target": 133, "value": 0.3, "bi_directional": true}, {"id": 561, "source": 12, "target": 221, "value": 0.3, "bi_directional": true}, {"id": 562, "source": 12, "target": 67, "value": 0.3, "bi_directional": true}, {"id": 563, "source": 12, "target": 46, "value": 0.3, "bi_directional": true}, {"id": 564, "source": 12, "target": 300, "value": 0.3, "bi_directional": false}, {"id": 565, "source": 12, "target": 63, "value": 0.3, "bi_directional": false}, {"id": 566, "source": 12, "target": 238, "value": 0.3, "bi_directional": true}, {"id": 567, "source": 12, "target": 6, "value": 0.3, "bi_directional": true}, {"id": 568, "source": 12, "target": 272, "value": 0.3, "bi_directional": true}, {"id": 569, "source": 12, "target": 293, "value": 0.3, "bi_directional": true}, {"id": 570, "source": 12, "target": 34, "value": 0.3, "bi_directional": true}, {"id": 571, "source": 12, "target": 117, "value": 0.3, "bi_directional": true}, {"id": 572, "source": 12, "target": 237, "value": 0.3, "bi_directional": true}, {"id": 573, "source": 12, "target": 24, "value": 0.3, "bi_directional": true}, {"id": 574, "source": 12, "target": 142, "value": 0.3, "bi_directional": true}, {"id": 575, "source": 12, "target": 163, "value": 0.3, "bi_directional": true}, {"id": 576, "source": 12, "target": 95, "value": 0.3, "bi_directional": true}, {"id": 577, "source": 12, "target": 82, "value": 0.3, "bi_directional": true}, {"id": 578, "source": 12, "target": 291, "value": 0.3, "bi_directional": true}, {"id": 579, "source": 12, "target": 201, "value": 0.3, "bi_directional": false}, {"id": 580, "source": 293, "target": 302, "value": 0.3, "bi_directional": true}, {"id": 581, "source": 293, "target": 157, "value": 0.3, "bi_directional": true}, {"id": 582, "source": 293, "target": 238, "value": 0.3, "bi_directional": true}, {"id": 583, "source": 293, "target": 291, "value": 0.3, "bi_directional": true}, {"id": 584, "source": 293, "target": 6, "value": 0.3, "bi_directional": false}, {"id": 585, "source": 293, "target": 46, "value": 0.3, "bi_directional": true}, {"id": 586, "source": 293, "target": 133, "value": 0.3, "bi_directional": true}, {"id": 587, "source": 293, "target": 187, "value": 0.3, "bi_directional": true}, {"id": 588, "source": 293, "target": 272, "value": 0.3, "bi_directional": true}, {"id": 589, "source": 293, "target": 69, "value": 0.3, "bi_directional": false}, {"id": 590, "source": 293, "target": 166, "value": 0.3, "bi_directional": true}, {"id": 591, "source": 293, "target": 88, "value": 0.3, "bi_directional": false}, {"id": 592, "source": 293, "target": 19, "value": 0.3, "bi_directional": true}, {"id": 593, "source": 293, "target": 95, "value": 0.3, "bi_directional": true}, {"id": 594, "source": 293, "target": 54, "value": 0.3, "bi_directional": true}, {"id": 595, "source": 293, "target": 180, "value": 0.3, "bi_directional": true}, {"id": 596, "source": 293, "target": 221, "value": 0.3, "bi_directional": true}, {"id": 597, "source": 293, "target": 299, "value": 0.3, "bi_directional": true}, {"id": 598, "source": 293, "target": 24, "value": 0.3, "bi_directional": true}, {"id": 599, "source": 293, "target": 117, "value": 0.3, "bi_directional": true}, {"id": 600, "source": 293, "target": 142, "value": 0.3, "bi_directional": false}, {"id": 601, "source": 293, "target": 105, "value": 0.3, "bi_directional": false}, {"id": 602, "source": 293, "target": 30, "value": 0.3, "bi_directional": true}, {"id": 603, "source": 17, "target": 153, "value": 0.3, "bi_directional": true}, {"id": 604, "source": 17, "target": 288, "value": 0.3, "bi_directional": false}, {"id": 605, "source": 17, "target": 76, "value": 0.3, "bi_directional": true}, {"id": 606, "source": 17, "target": 236, "value": 0.3, "bi_directional": true}, {"id": 607, "source": 116, "target": 279, "value": 0.3, "bi_directional": true}, {"id": 608, "source": 116, "target": 299, "value": 0.3, "bi_directional": true}, {"id": 609, "source": 116, "target": 183, "value": 0.3, "bi_directional": true}, {"id": 610, "source": 45, "target": 49, "value": 0.3, "bi_directional": true}, {"id": 611, "source": 45, "target": 191, "value": 0.3, "bi_directional": true}, {"id": 612, "source": 45, "target": 285, "value": 0.3, "bi_directional": true}, {"id": 613, "source": 45, "target": 290, "value": 0.3, "bi_directional": true}, {"id": 614, "source": 45, "target": 47, "value": 0.3, "bi_directional": true}, {"id": 615, "source": 45, "target": 139, "value": 0.3, "bi_directional": true}, {"id": 616, "source": 45, "target": 309, "value": 0.3, "bi_directional": true}, {"id": 617, "source": 45, "target": 210, "value": 0.3, "bi_directional": true}, {"id": 618, "source": 45, "target": 224, "value": 0.3, "bi_directional": true}, {"id": 619, "source": 45, "target": 152, "value": 0.3, "bi_directional": false}, {"id": 620, "source": 74, "target": 138, "value": 0.3, "bi_directional": true}, {"id": 621, "source": 133, "target": 69, "value": 0.3, "bi_directional": false}, {"id": 622, "source": 133, "target": 221, "value": 0.3, "bi_directional": true}, {"id": 623, "source": 133, "target": 225, "value": 0.3, "bi_directional": true}, {"id": 624, "source": 133, "target": 117, "value": 0.3, "bi_directional": true}, {"id": 625, "source": 133, "target": 312, "value": 0.3, "bi_directional": false}, {"id": 626, "source": 133, "target": 166, "value": 0.3, "bi_directional": false}, {"id": 627, "source": 133, "target": 249, "value": 0.3, "bi_directional": false}, {"id": 628, "source": 133, "target": 187, "value": 0.3, "bi_directional": false}, {"id": 629, "source": 133, "target": 252, "value": 0.3, "bi_directional": true}, {"id": 630, "source": 133, "target": 6, "value": 0.3, "bi_directional": false}, {"id": 631, "source": 133, "target": 300, "value": 0.3, "bi_directional": true}, {"id": 632, "source": 133, "target": 46, "value": 0.3, "bi_directional": true}, {"id": 633, "source": 133, "target": 201, "value": 0.3, "bi_directional": false}, {"id": 634, "source": 133, "target": 91, "value": 0.3, "bi_directional": true}, {"id": 635, "source": 133, "target": 291, "value": 0.3, "bi_directional": false}, {"id": 636, "source": 133, "target": 30, "value": 0.3, "bi_directional": true}, {"id": 637, "source": 133, "target": 34, "value": 0.3, "bi_directional": true}, {"id": 638, "source": 133, "target": 105, "value": 0.3, "bi_directional": true}, {"id": 639, "source": 133, "target": 180, "value": 0.3, "bi_directional": true}, {"id": 640, "source": 133, "target": 54, "value": 0.3, "bi_directional": true}, {"id": 641, "source": 133, "target": 214, "value": 0.3, "bi_directional": true}, {"id": 642, "source": 133, "target": 302, "value": 0.3, "bi_directional": true}, {"id": 643, "source": 133, "target": 95, "value": 0.3, "bi_directional": true}, {"id": 644, "source": 133, "target": 82, "value": 0.3, "bi_directional": true}, {"id": 645, "source": 133, "target": 142, "value": 0.3, "bi_directional": false}, {"id": 646, "source": 133, "target": 272, "value": 0.3, "bi_directional": true}, {"id": 647, "source": 133, "target": 184, "value": 0.3, "bi_directional": false}, {"id": 648, "source": 133, "target": 67, "value": 0.3, "bi_directional": true}, {"id": 649, "source": 133, "target": 28, "value": 0.3, "bi_directional": true}, {"id": 650, "source": 178, "target": 236, "value": 0.3, "bi_directional": true}, {"id": 651, "source": 178, "target": 18, "value": 0.3, "bi_directional": true}, {"id": 652, "source": 234, "target": 211, "value": 0.3, "bi_directional": true}, {"id": 653, "source": 234, "target": 134, "value": 0.3, "bi_directional": true}, {"id": 654, "source": 234, "target": 281, "value": 0.3, "bi_directional": true}, {"id": 655, "source": 234, "target": 140, "value": 0.3, "bi_directional": true}, {"id": 656, "source": 234, "target": 15, "value": 0.3, "bi_directional": true}, {"id": 657, "source": 8, "target": 212, "value": 0.3, "bi_directional": true}, {"id": 658, "source": 8, "target": 6, "value": 0.3, "bi_directional": false}, {"id": 659, "source": 8, "target": 253, "value": 0.3, "bi_directional": false}, {"id": 660, "source": 273, "target": 194, "value": 0.3, "bi_directional": true}, {"id": 661, "source": 138, "target": 14, "value": 0.3, "bi_directional": false}, {"id": 662, "source": 247, "target": 161, "value": 0.3, "bi_directional": true}, {"id": 663, "source": 247, "target": 28, "value": 0.3, "bi_directional": true}, {"id": 664, "source": 247, "target": 236, "value": 0.3, "bi_directional": true}, {"id": 665, "source": 247, "target": 151, "value": 0.3, "bi_directional": true}, {"id": 666, "source": 247, "target": 202, "value": 0.3, "bi_directional": true}, {"id": 667, "source": 247, "target": 84, "value": 0.3, "bi_directional": true}, {"id": 668, "source": 247, "target": 26, "value": 0.3, "bi_directional": true}, {"id": 669, "source": 247, "target": 61, "value": 0.3, "bi_directional": false}, {"id": 670, "source": 247, "target": 24, "value": 0.3, "bi_directional": true}, {"id": 671, "source": 247, "target": 89, "value": 0.3, "bi_directional": false}, {"id": 672, "source": 247, "target": 212, "value": 0.3, "bi_directional": true}, {"id": 673, "source": 33, "target": 278, "value": 0.3, "bi_directional": false}, {"id": 674, "source": 33, "target": 238, "value": 0.3, "bi_directional": true}, {"id": 675, "source": 33, "target": 55, "value": 0.3, "bi_directional": true}, {"id": 676, "source": 33, "target": 248, "value": 0.3, "bi_directional": true}, {"id": 677, "source": 33, "target": 141, "value": 0.3, "bi_directional": true}, {"id": 678, "source": 33, "target": 229, "value": 0.3, "bi_directional": true}, {"id": 679, "source": 33, "target": 126, "value": 0.3, "bi_directional": false}, {"id": 680, "source": 33, "target": 113, "value": 0.3, "bi_directional": true}, {"id": 681, "source": 202, "target": 84, "value": 0.3, "bi_directional": true}, {"id": 682, "source": 202, "target": 128, "value": 0.3, "bi_directional": false}, {"id": 683, "source": 202, "target": 237, "value": 0.3, "bi_directional": true}, {"id": 684, "source": 202, "target": 187, "value": 0.3, "bi_directional": true}, {"id": 685, "source": 202, "target": 198, "value": 0.3, "bi_directional": true}, {"id": 686, "source": 274, "target": 133, "value": 0.3, "bi_directional": false}, {"id": 687, "source": 274, "target": 34, "value": 0.3, "bi_directional": true}, {"id": 688, "source": 274, "target": 91, "value": 0.3, "bi_directional": true}, {"id": 689, "source": 274, "target": 252, "value": 0.3, "bi_directional": true}, {"id": 690, "source": 274, "target": 163, "value": 0.3, "bi_directional": true}, {"id": 691, "source": 282, "target": 144, "value": 0.3, "bi_directional": true}, {"id": 692, "source": 282, "target": 140, "value": 0.3, "bi_directional": true}, {"id": 693, "source": 282, "target": 275, "value": 0.3, "bi_directional": true}, {"id": 694, "source": 282, "target": 1, "value": 0.3, "bi_directional": true}, {"id": 695, "source": 282, "target": 281, "value": 0.3, "bi_directional": true}, {"id": 696, "source": 282, "target": 254, "value": 0.3, "bi_directional": true}, {"id": 697, "source": 282, "target": 9, "value": 0.3, "bi_directional": true}, {"id": 698, "source": 282, "target": 262, "value": 0.3, "bi_directional": true}, {"id": 699, "source": 282, "target": 134, "value": 0.3, "bi_directional": true}, {"id": 700, "source": 63, "target": 244, "value": 0.3, "bi_directional": true}, {"id": 701, "source": 63, "target": 125, "value": 0.3, "bi_directional": false}, {"id": 702, "source": 63, "target": 39, "value": 0.3, "bi_directional": false}, {"id": 703, "source": 1, "target": 284, "value": 0.3, "bi_directional": true}, {"id": 704, "source": 1, "target": 9, "value": 0.3, "bi_directional": true}, {"id": 705, "source": 1, "target": 206, "value": 0.3, "bi_directional": true}, {"id": 706, "source": 1, "target": 275, "value": 0.3, "bi_directional": false}, {"id": 707, "source": 1, "target": 143, "value": 0.3, "bi_directional": true}, {"id": 708, "source": 165, "target": 268, "value": 0.3, "bi_directional": true}, {"id": 709, "source": 256, "target": 63, "value": 0.3, "bi_directional": false}, {"id": 710, "source": 256, "target": 183, "value": 0.3, "bi_directional": true}, {"id": 711, "source": 256, "target": 238, "value": 0.3, "bi_directional": true}, {"id": 712, "source": 256, "target": 315, "value": 0.3, "bi_directional": true}, {"id": 713, "source": 256, "target": 271, "value": 0.3, "bi_directional": false}, {"id": 714, "source": 256, "target": 222, "value": 0.3, "bi_directional": false}, {"id": 715, "source": 256, "target": 89, "value": 0.3, "bi_directional": false}, {"id": 716, "source": 256, "target": 41, "value": 0.3, "bi_directional": false}, {"id": 717, "source": 262, "target": 260, "value": 0.3, "bi_directional": true}, {"id": 718, "source": 262, "target": 9, "value": 0.3, "bi_directional": true}, {"id": 719, "source": 262, "target": 7, "value": 0.3, "bi_directional": true}, {"id": 720, "source": 262, "target": 134, "value": 0.3, "bi_directional": true}, {"id": 721, "source": 262, "target": 20, "value": 0.3, "bi_directional": true}, {"id": 722, "source": 262, "target": 179, "value": 0.3, "bi_directional": true}, {"id": 723, "source": 262, "target": 110, "value": 0.3, "bi_directional": true}, {"id": 724, "source": 262, "target": 286, "value": 0.3, "bi_directional": false}, {"id": 725, "source": 262, "target": 254, "value": 0.3, "bi_directional": true}, {"id": 726, "source": 262, "target": 15, "value": 0.3, "bi_directional": true}, {"id": 727, "source": 262, "target": 228, "value": 0.3, "bi_directional": true}, {"id": 728, "source": 262, "target": 144, "value": 0.3, "bi_directional": true}, {"id": 729, "source": 262, "target": 154, "value": 0.3, "bi_directional": true}, {"id": 730, "source": 262, "target": 312, "value": 0.3, "bi_directional": true}, {"id": 731, "source": 262, "target": 281, "value": 0.3, "bi_directional": true}, {"id": 732, "source": 262, "target": 1, "value": 0.3, "bi_directional": false}, {"id": 733, "source": 262, "target": 275, "value": 0.3, "bi_directional": true}, {"id": 734, "source": 262, "target": 249, "value": 0.3, "bi_directional": true}, {"id": 735, "source": 262, "target": 309, "value": 0.3, "bi_directional": false}, {"id": 736, "source": 262, "target": 280, "value": 0.3, "bi_directional": true}, {"id": 737, "source": 262, "target": 140, "value": 0.3, "bi_directional": true}, {"id": 738, "source": 262, "target": 211, "value": 0.3, "bi_directional": true}, {"id": 739, "source": 24, "target": 272, "value": 0.3, "bi_directional": true}, {"id": 740, "source": 24, "target": 6, "value": 0.3, "bi_directional": false}, {"id": 741, "source": 24, "target": 302, "value": 0.3, "bi_directional": true}, {"id": 742, "source": 24, "target": 34, "value": 0.3, "bi_directional": true}, {"id": 743, "source": 24, "target": 117, "value": 0.3, "bi_directional": true}, {"id": 744, "source": 24, "target": 151, "value": 0.3, "bi_directional": true}, {"id": 745, "source": 24, "target": 163, "value": 0.3, "bi_directional": true}, {"id": 746, "source": 24, "target": 291, "value": 0.3, "bi_directional": true}, {"id": 747, "source": 24, "target": 157, "value": 0.3, "bi_directional": false}, {"id": 748, "source": 24, "target": 225, "value": 0.3, "bi_directional": true}, {"id": 749, "source": 24, "target": 88, "value": 0.3, "bi_directional": false}, {"id": 750, "source": 24, "target": 161, "value": 0.3, "bi_directional": true}, {"id": 751, "source": 24, "target": 187, "value": 0.3, "bi_directional": false}, {"id": 752, "source": 24, "target": 105, "value": 0.3, "bi_directional": true}, {"id": 753, "source": 24, "target": 221, "value": 0.3, "bi_directional": true}, {"id": 754, "source": 24, "target": 122, "value": 0.3, "bi_directional": true}, {"id": 755, "source": 24, "target": 236, "value": 0.3, "bi_directional": true}, {"id": 756, "source": 24, "target": 46, "value": 0.3, "bi_directional": false}, {"id": 757, "source": 244, "target": 39, "value": 0.3, "bi_directional": false}, {"id": 758, "source": 9, "target": 66, "value": 0.3, "bi_directional": false}, {"id": 759, "source": 9, "target": 309, "value": 0.3, "bi_directional": false}, {"id": 760, "source": 9, "target": 249, "value": 0.3, "bi_directional": false}, {"id": 761, "source": 9, "target": 261, "value": 0.3, "bi_directional": true}, {"id": 762, "source": 9, "target": 263, "value": 0.3, "bi_directional": false}, {"id": 763, "source": 9, "target": 10, "value": 0.3, "bi_directional": true}, {"id": 764, "source": 9, "target": 284, "value": 0.3, "bi_directional": true}, {"id": 765, "source": 9, "target": 3, "value": 0.3, "bi_directional": true}, {"id": 766, "source": 9, "target": 245, "value": 0.3, "bi_directional": false}, {"id": 767, "source": 9, "target": 206, "value": 0.3, "bi_directional": true}, {"id": 768, "source": 9, "target": 154, "value": 0.3, "bi_directional": true}, {"id": 769, "source": 257, "target": 136, "value": 0.3, "bi_directional": true}, {"id": 770, "source": 257, "target": 124, "value": 0.3, "bi_directional": true}, {"id": 771, "source": 257, "target": 162, "value": 0.3, "bi_directional": true}, {"id": 772, "source": 257, "target": 227, "value": 0.3, "bi_directional": true}, {"id": 773, "source": 229, "target": 55, "value": 0.3, "bi_directional": true}, {"id": 774, "source": 229, "target": 182, "value": 0.3, "bi_directional": true}, {"id": 775, "source": 229, "target": 35, "value": 0.3, "bi_directional": false}, {"id": 776, "source": 182, "target": 204, "value": 0.3, "bi_directional": true}, {"id": 777, "source": 182, "target": 241, "value": 0.3, "bi_directional": true}, {"id": 778, "source": 182, "target": 89, "value": 0.3, "bi_directional": true}, {"id": 779, "source": 182, "target": 203, "value": 0.3, "bi_directional": true}, {"id": 780, "source": 254, "target": 309, "value": 0.3, "bi_directional": false}, {"id": 781, "source": 254, "target": 275, "value": 0.3, "bi_directional": true}, {"id": 782, "source": 254, "target": 286, "value": 0.3, "bi_directional": false}, {"id": 783, "source": 254, "target": 110, "value": 0.3, "bi_directional": true}, {"id": 784, "source": 254, "target": 154, "value": 0.3, "bi_directional": true}, {"id": 785, "source": 254, "target": 144, "value": 0.3, "bi_directional": true}, {"id": 786, "source": 254, "target": 179, "value": 0.3, "bi_directional": true}, {"id": 787, "source": 139, "target": 285, "value": 0.3, "bi_directional": true}, {"id": 788, "source": 139, "target": 47, "value": 0.3, "bi_directional": true}, {"id": 789, "source": 139, "target": 39, "value": 0.3, "bi_directional": false}, {"id": 790, "source": 139, "target": 290, "value": 0.3, "bi_directional": true}, {"id": 791, "source": 139, "target": 265, "value": 0.3, "bi_directional": false}, {"id": 792, "source": 139, "target": 152, "value": 0.3, "bi_directional": false}, {"id": 793, "source": 139, "target": 210, "value": 0.3, "bi_directional": true}, {"id": 794, "source": 139, "target": 224, "value": 0.3, "bi_directional": true}, {"id": 795, "source": 139, "target": 191, "value": 0.3, "bi_directional": true}, {"id": 796, "source": 139, "target": 49, "value": 0.3, "bi_directional": true}, {"id": 797, "source": 162, "target": 227, "value": 0.3, "bi_directional": true}, {"id": 798, "source": 237, "target": 302, "value": 0.3, "bi_directional": false}, {"id": 799, "source": 237, "target": 19, "value": 0.3, "bi_directional": true}, {"id": 800, "source": 237, "target": 187, "value": 0.3, "bi_directional": true}, {"id": 801, "source": 237, "target": 95, "value": 0.3, "bi_directional": true}, {"id": 802, "source": 237, "target": 6, "value": 0.3, "bi_directional": true}, {"id": 803, "source": 237, "target": 46, "value": 0.3, "bi_directional": true}, {"id": 804, "source": 237, "target": 34, "value": 0.3, "bi_directional": true}, {"id": 805, "source": 237, "target": 198, "value": 0.3, "bi_directional": true}, {"id": 806, "source": 237, "target": 219, "value": 0.3, "bi_directional": false}, {"id": 807, "source": 237, "target": 163, "value": 0.3, "bi_directional": true}, {"id": 808, "source": 237, "target": 272, "value": 0.3, "bi_directional": true}, {"id": 809, "source": 237, "target": 84, "value": 0.3, "bi_directional": true}, {"id": 810, "source": 237, "target": 122, "value": 0.3, "bi_directional": true}, {"id": 811, "source": 237, "target": 166, "value": 0.3, "bi_directional": true}, {"id": 812, "source": 237, "target": 238, "value": 0.3, "bi_directional": true}, {"id": 813, "source": 237, "target": 142, "value": 0.3, "bi_directional": true}, {"id": 814, "source": 224, "target": 49, "value": 0.3, "bi_directional": true}, {"id": 815, "source": 224, "target": 191, "value": 0.3, "bi_directional": true}, {"id": 816, "source": 224, "target": 285, "value": 0.3, "bi_directional": true}, {"id": 817, "source": 224, "target": 152, "value": 0.3, "bi_directional": false}, {"id": 818, "source": 224, "target": 239, "value": 0.3, "bi_directional": false}, {"id": 819, "source": 224, "target": 98, "value": 0.3, "bi_directional": false}, {"id": 820, "source": 224, "target": 47, "value": 0.3, "bi_directional": false}, {"id": 821, "source": 224, "target": 210, "value": 0.3, "bi_directional": false}, {"id": 822, "source": 95, "target": 122, "value": 0.3, "bi_directional": true}, {"id": 823, "source": 95, "target": 99, "value": 0.3, "bi_directional": true}, {"id": 824, "source": 95, "target": 225, "value": 0.3, "bi_directional": true}, {"id": 825, "source": 95, "target": 30, "value": 0.3, "bi_directional": true}, {"id": 826, "source": 95, "target": 54, "value": 0.3, "bi_directional": true}, {"id": 827, "source": 95, "target": 43, "value": 0.3, "bi_directional": false}, {"id": 828, "source": 95, "target": 117, "value": 0.3, "bi_directional": true}, {"id": 829, "source": 95, "target": 6, "value": 0.3, "bi_directional": true}, {"id": 830, "source": 95, "target": 272, "value": 0.3, "bi_directional": true}, {"id": 831, "source": 95, "target": 163, "value": 0.3, "bi_directional": true}, {"id": 832, "source": 95, "target": 34, "value": 0.3, "bi_directional": true}, {"id": 833, "source": 95, "target": 46, "value": 0.3, "bi_directional": true}, {"id": 834, "source": 95, "target": 26, "value": 0.3, "bi_directional": true}, {"id": 835, "source": 95, "target": 19, "value": 0.3, "bi_directional": true}, {"id": 836, "source": 95, "target": 300, "value": 0.3, "bi_directional": true}, {"id": 837, "source": 95, "target": 142, "value": 0.3, "bi_directional": true}, {"id": 838, "source": 95, "target": 28, "value": 0.3, "bi_directional": true}, {"id": 839, "source": 95, "target": 212, "value": 0.3, "bi_directional": true}, {"id": 840, "source": 95, "target": 221, "value": 0.3, "bi_directional": true}, {"id": 841, "source": 95, "target": 302, "value": 0.3, "bi_directional": true}, {"id": 842, "source": 95, "target": 238, "value": 0.3, "bi_directional": true}, {"id": 843, "source": 95, "target": 105, "value": 0.3, "bi_directional": true}, {"id": 844, "source": 95, "target": 73, "value": 0.3, "bi_directional": true}, {"id": 845, "source": 95, "target": 82, "value": 0.3, "bi_directional": true}, {"id": 846, "source": 95, "target": 91, "value": 0.3, "bi_directional": true}, {"id": 847, "source": 95, "target": 166, "value": 0.3, "bi_directional": true}, {"id": 848, "source": 141, "target": 297, "value": 0.3, "bi_directional": true}, {"id": 849, "source": 141, "target": 238, "value": 0.3, "bi_directional": true}, {"id": 850, "source": 141, "target": 264, "value": 0.3, "bi_directional": true}, {"id": 851, "source": 141, "target": 279, "value": 0.3, "bi_directional": false}, {"id": 852, "source": 141, "target": 130, "value": 0.3, "bi_directional": true}, {"id": 853, "source": 141, "target": 44, "value": 0.3, "bi_directional": true}, {"id": 854, "source": 141, "target": 41, "value": 0.3, "bi_directional": true}, {"id": 855, "source": 141, "target": 115, "value": 0.3, "bi_directional": true}, {"id": 856, "source": 104, "target": 111, "value": 0.3, "bi_directional": true}, {"id": 857, "source": 104, "target": 129, "value": 0.3, "bi_directional": true}, {"id": 858, "source": 76, "target": 183, "value": 0.3, "bi_directional": true}, {"id": 859, "source": 76, "target": 236, "value": 0.3, "bi_directional": true}, {"id": 860, "source": 134, "target": 281, "value": 0.3, "bi_directional": true}, {"id": 861, "source": 134, "target": 140, "value": 0.3, "bi_directional": true}, {"id": 862, "source": 134, "target": 275, "value": 0.3, "bi_directional": true}, {"id": 863, "source": 134, "target": 211, "value": 0.3, "bi_directional": true}, {"id": 864, "source": 134, "target": 15, "value": 0.3, "bi_directional": true}, {"id": 865, "source": 114, "target": 44, "value": 0.3, "bi_directional": true}, {"id": 866, "source": 114, "target": 146, "value": 0.3, "bi_directional": true}, {"id": 867, "source": 114, "target": 160, "value": 0.3, "bi_directional": true}, {"id": 868, "source": 114, "target": 176, "value": 0.3, "bi_directional": true}, {"id": 869, "source": 114, "target": 115, "value": 0.3, "bi_directional": false}, {"id": 870, "source": 114, "target": 264, "value": 0.3, "bi_directional": true}, {"id": 871, "source": 114, "target": 29, "value": 0.3, "bi_directional": true}, {"id": 872, "source": 114, "target": 41, "value": 0.3, "bi_directional": true}, {"id": 873, "source": 114, "target": 276, "value": 0.3, "bi_directional": true}, {"id": 874, "source": 114, "target": 279, "value": 0.3, "bi_directional": false}, {"id": 875, "source": 114, "target": 230, "value": 0.3, "bi_directional": true}, {"id": 876, "source": 283, "target": 25, "value": 0.3, "bi_directional": false}, {"id": 877, "source": 283, "target": 208, "value": 0.3, "bi_directional": false}, {"id": 878, "source": 283, "target": 217, "value": 0.3, "bi_directional": true}, {"id": 879, "source": 283, "target": 125, "value": 0.3, "bi_directional": false}, {"id": 880, "source": 283, "target": 68, "value": 0.3, "bi_directional": true}, {"id": 881, "source": 283, "target": 311, "value": 0.3, "bi_directional": true}, {"id": 882, "source": 47, "target": 152, "value": 0.3, "bi_directional": false}, {"id": 883, "source": 47, "target": 210, "value": 0.3, "bi_directional": true}, {"id": 884, "source": 47, "target": 44, "value": 0.3, "bi_directional": true}, {"id": 885, "source": 47, "target": 265, "value": 0.3, "bi_directional": false}, {"id": 886, "source": 47, "target": 290, "value": 0.3, "bi_directional": true}, {"id": 887, "source": 47, "target": 285, "value": 0.3, "bi_directional": true}, {"id": 888, "source": 47, "target": 39, "value": 0.3, "bi_directional": false}, {"id": 889, "source": 47, "target": 191, "value": 0.3, "bi_directional": true}, {"id": 890, "source": 47, "target": 49, "value": 0.3, "bi_directional": true}, {"id": 891, "source": 10, "target": 110, "value": 0.3, "bi_directional": true}, {"id": 892, "source": 10, "target": 261, "value": 0.3, "bi_directional": true}, {"id": 893, "source": 10, "target": 263, "value": 0.3, "bi_directional": true}, {"id": 894, "source": 10, "target": 21, "value": 0.3, "bi_directional": true}, {"id": 895, "source": 10, "target": 154, "value": 0.3, "bi_directional": true}, {"id": 896, "source": 10, "target": 4, "value": 0.3, "bi_directional": false}, {"id": 897, "source": 10, "target": 190, "value": 0.3, "bi_directional": true}, {"id": 898, "source": 10, "target": 147, "value": 0.3, "bi_directional": false}, {"id": 899, "source": 20, "target": 228, "value": 0.3, "bi_directional": true}, {"id": 900, "source": 248, "target": 175, "value": 0.3, "bi_directional": true}, {"id": 901, "source": 248, "target": 203, "value": 0.3, "bi_directional": true}, {"id": 902, "source": 248, "target": 299, "value": 0.3, "bi_directional": true}, {"id": 903, "source": 248, "target": 193, "value": 0.3, "bi_directional": true}, {"id": 904, "source": 248, "target": 41, "value": 0.3, "bi_directional": true}, {"id": 905, "source": 248, "target": 58, "value": 0.3, "bi_directional": true}, {"id": 906, "source": 248, "target": 181, "value": 0.3, "bi_directional": true}, {"id": 907, "source": 248, "target": 115, "value": 0.3, "bi_directional": true}, {"id": 908, "source": 248, "target": 209, "value": 0.3, "bi_directional": false}, {"id": 909, "source": 248, "target": 38, "value": 0.3, "bi_directional": true}, {"id": 910, "source": 248, "target": 170, "value": 0.3, "bi_directional": true}, {"id": 911, "source": 248, "target": 44, "value": 0.3, "bi_directional": true}, {"id": 912, "source": 248, "target": 52, "value": 0.3, "bi_directional": true}, {"id": 913, "source": 248, "target": 172, "value": 0.3, "bi_directional": true}, {"id": 914, "source": 248, "target": 183, "value": 0.3, "bi_directional": true}, {"id": 915, "source": 248, "target": 223, "value": 0.3, "bi_directional": true}, {"id": 916, "source": 248, "target": 204, "value": 0.3, "bi_directional": true}, {"id": 917, "source": 80, "target": 275, "value": 0.3, "bi_directional": false}, {"id": 918, "source": 80, "target": 107, "value": 0.3, "bi_directional": true}, {"id": 919, "source": 80, "target": 282, "value": 0.3, "bi_directional": false}, {"id": 920, "source": 80, "target": 206, "value": 0.3, "bi_directional": true}, {"id": 921, "source": 80, "target": 4, "value": 0.3, "bi_directional": false}, {"id": 922, "source": 109, "target": 249, "value": 0.3, "bi_directional": true}, {"id": 923, "source": 109, "target": 117, "value": 0.3, "bi_directional": true}, {"id": 924, "source": 109, "target": 135, "value": 0.3, "bi_directional": false}, {"id": 925, "source": 109, "target": 230, "value": 0.3, "bi_directional": true}, {"id": 926, "source": 109, "target": 58, "value": 0.3, "bi_directional": false}, {"id": 927, "source": 109, "target": 111, "value": 0.3, "bi_directional": true}, {"id": 928, "source": 109, "target": 213, "value": 0.3, "bi_directional": false}, {"id": 929, "source": 109, "target": 223, "value": 0.3, "bi_directional": true}, {"id": 930, "source": 109, "target": 300, "value": 0.3, "bi_directional": false}, {"id": 931, "source": 309, "target": 128, "value": 0.3, "bi_directional": true}, {"id": 932, "source": 309, "target": 44, "value": 0.3, "bi_directional": false}, {"id": 933, "source": 309, "target": 39, "value": 0.3, "bi_directional": true}, {"id": 934, "source": 7, "target": 275, "value": 0.3, "bi_directional": true}, {"id": 935, "source": 164, "target": 193, "value": 0.3, "bi_directional": true}, {"id": 936, "source": 164, "target": 148, "value": 0.3, "bi_directional": false}, {"id": 937, "source": 164, "target": 304, "value": 0.3, "bi_directional": true}, {"id": 938, "source": 164, "target": 312, "value": 0.3, "bi_directional": false}, {"id": 939, "source": 164, "target": 79, "value": 0.3, "bi_directional": true}, {"id": 940, "source": 164, "target": 119, "value": 0.3, "bi_directional": false}, {"id": 941, "source": 164, "target": 28, "value": 0.3, "bi_directional": false}, {"id": 942, "source": 164, "target": 157, "value": 0.3, "bi_directional": true}, {"id": 943, "source": 40, "target": 75, "value": 0.3, "bi_directional": true}, {"id": 944, "source": 40, "target": 266, "value": 0.3, "bi_directional": true}, {"id": 945, "source": 40, "target": 271, "value": 0.3, "bi_directional": true}, {"id": 946, "source": 40, "target": 207, "value": 0.3, "bi_directional": true}, {"id": 947, "source": 40, "target": 171, "value": 0.3, "bi_directional": false}, {"id": 948, "source": 113, "target": 23, "value": 0.3, "bi_directional": true}, {"id": 949, "source": 113, "target": 126, "value": 0.3, "bi_directional": true}, {"id": 950, "source": 113, "target": 278, "value": 0.3, "bi_directional": false}, {"id": 951, "source": 113, "target": 55, "value": 0.3, "bi_directional": true}, {"id": 952, "source": 197, "target": 288, "value": 0.3, "bi_directional": true}, {"id": 953, "source": 249, "target": 117, "value": 0.3, "bi_directional": true}, {"id": 954, "source": 249, "target": 275, "value": 0.3, "bi_directional": true}, {"id": 955, "source": 249, "target": 223, "value": 0.3, "bi_directional": true}, {"id": 956, "source": 275, "target": 15, "value": 0.3, "bi_directional": true}, {"id": 957, "source": 275, "target": 260, "value": 0.3, "bi_directional": true}, {"id": 958, "source": 275, "target": 281, "value": 0.3, "bi_directional": true}, {"id": 959, "source": 275, "target": 154, "value": 0.3, "bi_directional": true}, {"id": 960, "source": 275, "target": 280, "value": 0.3, "bi_directional": true}, {"id": 961, "source": 275, "target": 135, "value": 0.3, "bi_directional": false}, {"id": 962, "source": 275, "target": 140, "value": 0.3, "bi_directional": true}, {"id": 963, "source": 144, "target": 110, "value": 0.3, "bi_directional": true}, {"id": 964, "source": 144, "target": 286, "value": 0.3, "bi_directional": false}, {"id": 965, "source": 144, "target": 140, "value": 0.3, "bi_directional": true}, {"id": 966, "source": 144, "target": 154, "value": 0.3, "bi_directional": true}, {"id": 967, "source": 126, "target": 199, "value": 0.3, "bi_directional": true}, {"id": 968, "source": 126, "target": 278, "value": 0.3, "bi_directional": true}, {"id": 969, "source": 126, "target": 55, "value": 0.3, "bi_directional": true}, {"id": 970, "source": 126, "target": 23, "value": 0.3, "bi_directional": true}, {"id": 971, "source": 243, "target": 14, "value": 0.3, "bi_directional": true}, {"id": 972, "source": 243, "target": 135, "value": 0.3, "bi_directional": true}, {"id": 973, "source": 158, "target": 44, "value": 0.3, "bi_directional": true}, {"id": 974, "source": 158, "target": 218, "value": 0.3, "bi_directional": true}, {"id": 975, "source": 158, "target": 131, "value": 0.3, "bi_directional": true}, {"id": 976, "source": 158, "target": 125, "value": 0.3, "bi_directional": true}, {"id": 977, "source": 158, "target": 175, "value": 0.3, "bi_directional": true}, {"id": 978, "source": 158, "target": 58, "value": 0.3, "bi_directional": true}, {"id": 979, "source": 158, "target": 208, "value": 0.3, "bi_directional": false}, {"id": 980, "source": 158, "target": 299, "value": 0.3, "bi_directional": true}, {"id": 981, "source": 158, "target": 170, "value": 0.3, "bi_directional": true}, {"id": 982, "source": 158, "target": 315, "value": 0.3, "bi_directional": true}, {"id": 983, "source": 158, "target": 121, "value": 0.3, "bi_directional": true}, {"id": 984, "source": 158, "target": 183, "value": 0.3, "bi_directional": true}, {"id": 985, "source": 158, "target": 79, "value": 0.3, "bi_directional": false}, {"id": 986, "source": 158, "target": 137, "value": 0.3, "bi_directional": true}, {"id": 987, "source": 14, "target": 70, "value": 0.3, "bi_directional": true}, {"id": 988, "source": 14, "target": 289, "value": 0.3, "bi_directional": true}, {"id": 989, "source": 14, "target": 129, "value": 0.3, "bi_directional": false}, {"id": 990, "source": 14, "target": 219, "value": 0.3, "bi_directional": false}, {"id": 991, "source": 14, "target": 155, "value": 0.3, "bi_directional": true}, {"id": 992, "source": 205, "target": 241, "value": 0.3, "bi_directional": true}, {"id": 993, "source": 205, "target": 204, "value": 0.3, "bi_directional": true}, {"id": 994, "source": 42, "target": 130, "value": 0.3, "bi_directional": true}, {"id": 995, "source": 42, "target": 176, "value": 0.3, "bi_directional": false}, {"id": 996, "source": 42, "target": 191, "value": 0.3, "bi_directional": false}, {"id": 997, "source": 42, "target": 172, "value": 0.3, "bi_directional": true}, {"id": 998, "source": 42, "target": 146, "value": 0.3, "bi_directional": true}, {"id": 999, "source": 42, "target": 183, "value": 0.3, "bi_directional": false}, {"id": 1000, "source": 42, "target": 120, "value": 0.3, "bi_directional": false}, {"id": 1001, "source": 42, "target": 95, "value": 0.3, "bi_directional": false}, {"id": 1002, "source": 42, "target": 276, "value": 0.3, "bi_directional": true}, {"id": 1003, "source": 42, "target": 299, "value": 0.3, "bi_directional": false}, {"id": 1004, "source": 42, "target": 41, "value": 0.3, "bi_directional": false}, {"id": 1005, "source": 42, "target": 47, "value": 0.3, "bi_directional": false}, {"id": 1006, "source": 42, "target": 114, "value": 0.3, "bi_directional": false}, {"id": 1007, "source": 42, "target": 29, "value": 0.3, "bi_directional": true}, {"id": 1008, "source": 42, "target": 166, "value": 0.3, "bi_directional": false}, {"id": 1009, "source": 42, "target": 73, "value": 0.3, "bi_directional": true}, {"id": 1010, "source": 42, "target": 251, "value": 0.3, "bi_directional": false}, {"id": 1011, "source": 42, "target": 264, "value": 0.3, "bi_directional": true}, {"id": 1012, "source": 42, "target": 44, "value": 0.3, "bi_directional": false}, {"id": 1013, "source": 42, "target": 170, "value": 0.3, "bi_directional": true}, {"id": 1014, "source": 42, "target": 193, "value": 0.3, "bi_directional": true}, {"id": 1015, "source": 42, "target": 218, "value": 0.3, "bi_directional": false}, {"id": 1016, "source": 42, "target": 175, "value": 0.3, "bi_directional": false}, {"id": 1017, "source": 42, "target": 181, "value": 0.3, "bi_directional": false}, {"id": 1018, "source": 42, "target": 115, "value": 0.3, "bi_directional": true}, {"id": 1019, "source": 42, "target": 141, "value": 0.3, "bi_directional": false}, {"id": 1020, "source": 94, "target": 204, "value": 0.3, "bi_directional": true}, {"id": 1021, "source": 97, "target": 55, "value": 0.3, "bi_directional": true}, {"id": 1022, "source": 97, "target": 229, "value": 0.3, "bi_directional": false}, {"id": 1023, "source": 19, "target": 255, "value": 0.3, "bi_directional": true}, {"id": 1024, "source": 19, "target": 209, "value": 0.3, "bi_directional": true}, {"id": 1025, "source": 19, "target": 82, "value": 0.3, "bi_directional": true}, {"id": 1026, "source": 19, "target": 166, "value": 0.3, "bi_directional": true}, {"id": 1027, "source": 19, "target": 78, "value": 0.3, "bi_directional": true}, {"id": 1028, "source": 19, "target": 122, "value": 0.3, "bi_directional": true}, {"id": 1029, "source": 19, "target": 30, "value": 0.3, "bi_directional": true}, {"id": 1030, "source": 19, "target": 238, "value": 0.3, "bi_directional": true}, {"id": 1031, "source": 199, "target": 23, "value": 0.3, "bi_directional": true}, {"id": 1032, "source": 199, "target": 278, "value": 0.3, "bi_directional": true}, {"id": 1033, "source": 199, "target": 55, "value": 0.3, "bi_directional": true}, {"id": 1034, "source": 190, "target": 135, "value": 0.3, "bi_directional": false}, {"id": 1035, "source": 190, "target": 154, "value": 0.3, "bi_directional": true}, {"id": 1036, "source": 190, "target": 21, "value": 0.3, "bi_directional": true}, {"id": 1037, "source": 190, "target": 110, "value": 0.3, "bi_directional": true}, {"id": 1038, "source": 190, "target": 147, "value": 0.3, "bi_directional": true}, {"id": 1039, "source": 23, "target": 55, "value": 0.3, "bi_directional": true}, {"id": 1040, "source": 23, "target": 278, "value": 0.3, "bi_directional": true}, {"id": 1041, "source": 260, "target": 281, "value": 0.3, "bi_directional": true}, {"id": 1042, "source": 260, "target": 282, "value": 0.3, "bi_directional": false}, {"id": 1043, "source": 260, "target": 312, "value": 0.3, "bi_directional": true}, {"id": 1044, "source": 203, "target": 181, "value": 0.3, "bi_directional": true}, {"id": 1045, "source": 203, "target": 209, "value": 0.3, "bi_directional": false}, {"id": 1046, "source": 203, "target": 193, "value": 0.3, "bi_directional": true}, {"id": 1047, "source": 203, "target": 156, "value": 0.3, "bi_directional": true}, {"id": 1048, "source": 203, "target": 14, "value": 0.3, "bi_directional": false}, {"id": 1049, "source": 84, "target": 28, "value": 0.3, "bi_directional": false}, {"id": 1050, "source": 84, "target": 212, "value": 0.3, "bi_directional": true}, {"id": 1051, "source": 84, "target": 236, "value": 0.3, "bi_directional": true}, {"id": 1052, "source": 84, "target": 198, "value": 0.3, "bi_directional": true}, {"id": 1053, "source": 84, "target": 272, "value": 0.3, "bi_directional": true}, {"id": 1054, "source": 84, "target": 187, "value": 0.3, "bi_directional": true}, {"id": 1055, "source": 56, "target": 78, "value": 0.3, "bi_directional": true}, {"id": 1056, "source": 56, "target": 14, "value": 0.3, "bi_directional": false}, {"id": 1057, "source": 232, "target": 253, "value": 0.3, "bi_directional": true}, {"id": 1058, "source": 232, "target": 250, "value": 0.3, "bi_directional": false}, {"id": 1059, "source": 49, "target": 239, "value": 0.3, "bi_directional": false}, {"id": 1060, "source": 49, "target": 290, "value": 0.3, "bi_directional": true}, {"id": 1061, "source": 49, "target": 39, "value": 0.3, "bi_directional": false}, {"id": 1062, "source": 176, "target": 81, "value": 0.3, "bi_directional": false}, {"id": 1063, "source": 176, "target": 115, "value": 0.3, "bi_directional": true}, {"id": 1064, "source": 176, "target": 193, "value": 0.3, "bi_directional": true}, {"id": 1065, "source": 176, "target": 41, "value": 0.3, "bi_directional": true}, {"id": 1066, "source": 176, "target": 181, "value": 0.3, "bi_directional": false}, {"id": 1067, "source": 176, "target": 276, "value": 0.3, "bi_directional": true}, {"id": 1068, "source": 176, "target": 230, "value": 0.3, "bi_directional": true}, {"id": 1069, "source": 176, "target": 146, "value": 0.3, "bi_directional": true}, {"id": 1070, "source": 176, "target": 130, "value": 0.3, "bi_directional": true}, {"id": 1071, "source": 176, "target": 264, "value": 0.3, "bi_directional": true}, {"id": 1072, "source": 176, "target": 29, "value": 0.3, "bi_directional": true}, {"id": 1073, "source": 176, "target": 85, "value": 0.3, "bi_directional": false}, {"id": 1074, "source": 176, "target": 172, "value": 0.3, "bi_directional": true}, {"id": 1075, "source": 176, "target": 44, "value": 0.3, "bi_directional": true}, {"id": 1076, "source": 176, "target": 160, "value": 0.3, "bi_directional": true}, {"id": 1077, "source": 176, "target": 314, "value": 0.3, "bi_directional": true}, {"id": 1078, "source": 176, "target": 279, "value": 0.3, "bi_directional": true}, {"id": 1079, "source": 53, "target": 245, "value": 0.3, "bi_directional": false}, {"id": 1080, "source": 53, "target": 96, "value": 0.3, "bi_directional": true}, {"id": 1081, "source": 111, "target": 5, "value": 0.3, "bi_directional": false}, {"id": 1082, "source": 111, "target": 117, "value": 0.3, "bi_directional": false}, {"id": 1083, "source": 111, "target": 223, "value": 0.3, "bi_directional": true}, {"id": 1084, "source": 204, "target": 263, "value": 0.3, "bi_directional": true}, {"id": 1085, "source": 204, "target": 241, "value": 0.3, "bi_directional": true}, {"id": 1086, "source": 204, "target": 278, "value": 0.3, "bi_directional": false}, {"id": 1087, "source": 221, "target": 310, "value": 0.3, "bi_directional": true}, {"id": 1088, "source": 221, "target": 46, "value": 0.3, "bi_directional": true}, {"id": 1089, "source": 221, "target": 82, "value": 0.3, "bi_directional": true}, {"id": 1090, "source": 221, "target": 6, "value": 0.3, "bi_directional": false}, {"id": 1091, "source": 221, "target": 302, "value": 0.3, "bi_directional": true}, {"id": 1092, "source": 221, "target": 291, "value": 0.3, "bi_directional": true}, {"id": 1093, "source": 221, "target": 166, "value": 0.3, "bi_directional": true}, {"id": 1094, "source": 221, "target": 222, "value": 0.3, "bi_directional": true}, {"id": 1095, "source": 221, "target": 142, "value": 0.3, "bi_directional": true}, {"id": 1096, "source": 221, "target": 117, "value": 0.3, "bi_directional": true}, {"id": 1097, "source": 221, "target": 67, "value": 0.3, "bi_directional": false}, {"id": 1098, "source": 221, "target": 252, "value": 0.3, "bi_directional": false}, {"id": 1099, "source": 221, "target": 163, "value": 0.3, "bi_directional": true}, {"id": 1100, "source": 221, "target": 105, "value": 0.3, "bi_directional": true}, {"id": 1101, "source": 221, "target": 238, "value": 0.3, "bi_directional": true}, {"id": 1102, "source": 221, "target": 187, "value": 0.3, "bi_directional": false}, {"id": 1103, "source": 221, "target": 30, "value": 0.3, "bi_directional": true}, {"id": 1104, "source": 221, "target": 272, "value": 0.3, "bi_directional": true}, {"id": 1105, "source": 221, "target": 26, "value": 0.3, "bi_directional": true}, {"id": 1106, "source": 221, "target": 237, "value": 0.3, "bi_directional": false}, {"id": 1107, "source": 221, "target": 184, "value": 0.3, "bi_directional": false}, {"id": 1108, "source": 221, "target": 312, "value": 0.3, "bi_directional": false}, {"id": 1109, "source": 221, "target": 201, "value": 0.3, "bi_directional": false}, {"id": 1110, "source": 221, "target": 19, "value": 0.3, "bi_directional": false}, {"id": 1111, "source": 221, "target": 54, "value": 0.3, "bi_directional": true}, {"id": 1112, "source": 130, "target": 299, "value": 0.3, "bi_directional": true}, {"id": 1113, "source": 130, "target": 251, "value": 0.3, "bi_directional": false}, {"id": 1114, "source": 130, "target": 156, "value": 0.3, "bi_directional": true}, {"id": 1115, "source": 130, "target": 209, "value": 0.3, "bi_directional": true}, {"id": 1116, "source": 130, "target": 279, "value": 0.3, "bi_directional": false}, {"id": 1117, "source": 130, "target": 181, "value": 0.3, "bi_directional": true}, {"id": 1118, "source": 130, "target": 230, "value": 0.3, "bi_directional": false}, {"id": 1119, "source": 130, "target": 218, "value": 0.3, "bi_directional": true}, {"id": 1120, "source": 130, "target": 193, "value": 0.3, "bi_directional": true}, {"id": 1121, "source": 130, "target": 112, "value": 0.3, "bi_directional": true}, {"id": 1122, "source": 130, "target": 203, "value": 0.3, "bi_directional": false}, {"id": 1123, "source": 130, "target": 115, "value": 0.3, "bi_directional": true}, {"id": 1124, "source": 130, "target": 172, "value": 0.3, "bi_directional": true}, {"id": 1125, "source": 130, "target": 276, "value": 0.3, "bi_directional": true}, {"id": 1126, "source": 130, "target": 175, "value": 0.3, "bi_directional": true}, {"id": 1127, "source": 130, "target": 38, "value": 0.3, "bi_directional": true}, {"id": 1128, "source": 130, "target": 183, "value": 0.3, "bi_directional": true}, {"id": 1129, "source": 130, "target": 73, "value": 0.3, "bi_directional": true}, {"id": 1130, "source": 130, "target": 297, "value": 0.3, "bi_directional": true}, {"id": 1131, "source": 278, "target": 55, "value": 0.3, "bi_directional": true}, {"id": 1132, "source": 183, "target": 44, "value": 0.3, "bi_directional": true}, {"id": 1133, "source": 183, "target": 41, "value": 0.3, "bi_directional": true}, {"id": 1134, "source": 183, "target": 172, "value": 0.3, "bi_directional": true}, {"id": 1135, "source": 183, "target": 115, "value": 0.3, "bi_directional": true}, {"id": 1136, "source": 183, "target": 315, "value": 0.3, "bi_directional": true}, {"id": 1137, "source": 183, "target": 137, "value": 0.3, "bi_directional": true}, {"id": 1138, "source": 183, "target": 175, "value": 0.3, "bi_directional": true}, {"id": 1139, "source": 183, "target": 209, "value": 0.3, "bi_directional": true}, {"id": 1140, "source": 183, "target": 255, "value": 0.3, "bi_directional": true}, {"id": 1141, "source": 183, "target": 222, "value": 0.3, "bi_directional": true}, {"id": 1142, "source": 183, "target": 223, "value": 0.3, "bi_directional": true}, {"id": 1143, "source": 183, "target": 279, "value": 0.3, "bi_directional": true}, {"id": 1144, "source": 183, "target": 128, "value": 0.3, "bi_directional": false}, {"id": 1145, "source": 183, "target": 131, "value": 0.3, "bi_directional": true}, {"id": 1146, "source": 183, "target": 58, "value": 0.3, "bi_directional": true}, {"id": 1147, "source": 183, "target": 297, "value": 0.3, "bi_directional": true}, {"id": 1148, "source": 183, "target": 170, "value": 0.3, "bi_directional": true}, {"id": 1149, "source": 183, "target": 79, "value": 0.3, "bi_directional": true}, {"id": 1150, "source": 183, "target": 189, "value": 0.3, "bi_directional": true}, {"id": 1151, "source": 183, "target": 38, "value": 0.3, "bi_directional": true}, {"id": 1152, "source": 183, "target": 193, "value": 0.3, "bi_directional": true}, {"id": 1153, "source": 183, "target": 203, "value": 0.3, "bi_directional": false}, {"id": 1154, "source": 183, "target": 294, "value": 0.3, "bi_directional": true}, {"id": 1155, "source": 210, "target": 44, "value": 0.3, "bi_directional": true}, {"id": 1156, "source": 210, "target": 265, "value": 0.3, "bi_directional": false}, {"id": 1157, "source": 210, "target": 285, "value": 0.3, "bi_directional": true}, {"id": 1158, "source": 210, "target": 191, "value": 0.3, "bi_directional": true}, {"id": 1159, "source": 222, "target": 27, "value": 0.3, "bi_directional": false}, {"id": 1160, "source": 222, "target": 44, "value": 0.3, "bi_directional": true}, {"id": 1161, "source": 222, "target": 251, "value": 0.3, "bi_directional": false}, {"id": 1162, "source": 222, "target": 186, "value": 0.3, "bi_directional": false}, {"id": 1163, "source": 222, "target": 218, "value": 0.3, "bi_directional": false}, {"id": 1164, "source": 222, "target": 41, "value": 0.3, "bi_directional": true}, {"id": 1165, "source": 222, "target": 158, "value": 0.3, "bi_directional": false}, {"id": 1166, "source": 26, "target": 219, "value": 0.3, "bi_directional": true}, {"id": 1167, "source": 26, "target": 105, "value": 0.3, "bi_directional": true}, {"id": 1168, "source": 26, "target": 187, "value": 0.3, "bi_directional": false}, {"id": 1169, "source": 26, "target": 54, "value": 0.3, "bi_directional": true}, {"id": 1170, "source": 26, "target": 46, "value": 0.3, "bi_directional": true}, {"id": 1171, "source": 26, "target": 67, "value": 0.3, "bi_directional": false}, {"id": 1172, "source": 26, "target": 43, "value": 0.3, "bi_directional": false}, {"id": 1173, "source": 26, "target": 142, "value": 0.3, "bi_directional": true}, {"id": 1174, "source": 26, "target": 272, "value": 0.3, "bi_directional": true}, {"id": 1175, "source": 304, "target": 117, "value": 0.3, "bi_directional": true}, {"id": 1176, "source": 304, "target": 160, "value": 0.3, "bi_directional": true}, {"id": 1177, "source": 304, "target": 29, "value": 0.3, "bi_directional": true}, {"id": 1178, "source": 304, "target": 148, "value": 0.3, "bi_directional": false}, {"id": 1179, "source": 284, "target": 154, "value": 0.3, "bi_directional": true}, {"id": 1180, "source": 284, "target": 206, "value": 0.3, "bi_directional": true}, {"id": 1181, "source": 30, "target": 252, "value": 0.3, "bi_directional": true}, {"id": 1182, "source": 30, "target": 6, "value": 0.3, "bi_directional": false}, {"id": 1183, "source": 30, "target": 82, "value": 0.3, "bi_directional": true}, {"id": 1184, "source": 30, "target": 67, "value": 0.3, "bi_directional": true}, {"id": 1185, "source": 30, "target": 91, "value": 0.3, "bi_directional": true}, {"id": 1186, "source": 30, "target": 166, "value": 0.3, "bi_directional": true}, {"id": 1187, "source": 30, "target": 163, "value": 0.3, "bi_directional": true}, {"id": 1188, "source": 30, "target": 122, "value": 0.3, "bi_directional": true}, {"id": 1189, "source": 30, "target": 105, "value": 0.3, "bi_directional": true}, {"id": 1190, "source": 30, "target": 34, "value": 0.3, "bi_directional": true}, {"id": 1191, "source": 30, "target": 46, "value": 0.3, "bi_directional": true}, {"id": 1192, "source": 30, "target": 142, "value": 0.3, "bi_directional": true}, {"id": 1193, "source": 30, "target": 157, "value": 0.3, "bi_directional": true}, {"id": 1194, "source": 30, "target": 99, "value": 0.3, "bi_directional": true}, {"id": 1195, "source": 30, "target": 28, "value": 0.3, "bi_directional": false}, {"id": 1196, "source": 211, "target": 15, "value": 0.3, "bi_directional": true}, {"id": 1197, "source": 211, "target": 281, "value": 0.3, "bi_directional": true}, {"id": 1198, "source": 211, "target": 140, "value": 0.3, "bi_directional": true}, {"id": 1199, "source": 312, "target": 151, "value": 0.3, "bi_directional": true}, {"id": 1200, "source": 312, "target": 281, "value": 0.3, "bi_directional": true}, {"id": 1201, "source": 312, "target": 208, "value": 0.3, "bi_directional": false}, {"id": 1202, "source": 312, "target": 187, "value": 0.3, "bi_directional": true}, {"id": 1203, "source": 58, "target": 170, "value": 0.3, "bi_directional": true}, {"id": 1204, "source": 58, "target": 128, "value": 0.3, "bi_directional": false}, {"id": 1205, "source": 58, "target": 189, "value": 0.3, "bi_directional": true}, {"id": 1206, "source": 58, "target": 218, "value": 0.3, "bi_directional": true}, {"id": 1207, "source": 58, "target": 44, "value": 0.3, "bi_directional": true}, {"id": 1208, "source": 58, "target": 299, "value": 0.3, "bi_directional": true}, {"id": 1209, "source": 58, "target": 131, "value": 0.3, "bi_directional": true}, {"id": 1210, "source": 58, "target": 294, "value": 0.3, "bi_directional": true}, {"id": 1211, "source": 58, "target": 125, "value": 0.3, "bi_directional": true}, {"id": 1212, "source": 58, "target": 38, "value": 0.3, "bi_directional": false}, {"id": 1213, "source": 58, "target": 175, "value": 0.3, "bi_directional": true}, {"id": 1214, "source": 58, "target": 115, "value": 0.3, "bi_directional": true}, {"id": 1215, "source": 155, "target": 70, "value": 0.3, "bi_directional": true}, {"id": 1216, "source": 155, "target": 83, "value": 0.3, "bi_directional": true}, {"id": 1217, "source": 154, "target": 297, "value": 0.3, "bi_directional": true}, {"id": 1218, "source": 154, "target": 3, "value": 0.3, "bi_directional": true}, {"id": 1219, "source": 154, "target": 313, "value": 0.3, "bi_directional": false}, {"id": 1220, "source": 154, "target": 206, "value": 0.3, "bi_directional": true}, {"id": 1221, "source": 154, "target": 280, "value": 0.3, "bi_directional": true}, {"id": 1222, "source": 154, "target": 286, "value": 0.3, "bi_directional": false}, {"id": 1223, "source": 154, "target": 110, "value": 0.3, "bi_directional": true}, {"id": 1224, "source": 154, "target": 60, "value": 0.3, "bi_directional": false}, {"id": 1225, "source": 154, "target": 263, "value": 0.3, "bi_directional": true}, {"id": 1226, "source": 154, "target": 21, "value": 0.3, "bi_directional": true}, {"id": 1227, "source": 154, "target": 228, "value": 0.3, "bi_directional": true}, {"id": 1228, "source": 68, "target": 137, "value": 0.3, "bi_directional": true}, {"id": 1229, "source": 68, "target": 102, "value": 0.3, "bi_directional": false}, {"id": 1230, "source": 68, "target": 25, "value": 0.3, "bi_directional": true}, {"id": 1231, "source": 102, "target": 137, "value": 0.3, "bi_directional": false}, {"id": 1232, "source": 315, "target": 189, "value": 0.3, "bi_directional": true}, {"id": 1233, "source": 315, "target": 116, "value": 0.3, "bi_directional": false}, {"id": 1234, "source": 315, "target": 115, "value": 0.3, "bi_directional": true}, {"id": 1235, "source": 315, "target": 44, "value": 0.3, "bi_directional": true}, {"id": 1236, "source": 193, "target": 29, "value": 0.3, "bi_directional": true}, {"id": 1237, "source": 193, "target": 115, "value": 0.3, "bi_directional": true}, {"id": 1238, "source": 193, "target": 131, "value": 0.3, "bi_directional": false}, {"id": 1239, "source": 193, "target": 156, "value": 0.3, "bi_directional": true}, {"id": 1240, "source": 193, "target": 79, "value": 0.3, "bi_directional": false}, {"id": 1241, "source": 193, "target": 251, "value": 0.3, "bi_directional": false}, {"id": 1242, "source": 193, "target": 297, "value": 0.3, "bi_directional": true}, {"id": 1243, "source": 193, "target": 181, "value": 0.3, "bi_directional": true}, {"id": 1244, "source": 193, "target": 135, "value": 0.3, "bi_directional": false}, {"id": 1245, "source": 193, "target": 44, "value": 0.3, "bi_directional": true}, {"id": 1246, "source": 193, "target": 38, "value": 0.3, "bi_directional": true}, {"id": 1247, "source": 193, "target": 41, "value": 0.3, "bi_directional": true}, {"id": 1248, "source": 193, "target": 175, "value": 0.3, "bi_directional": true}, {"id": 1249, "source": 193, "target": 309, "value": 0.3, "bi_directional": false}, {"id": 1250, "source": 193, "target": 299, "value": 0.3, "bi_directional": true}, {"id": 1251, "source": 193, "target": 112, "value": 0.3, "bi_directional": false}, {"id": 1252, "source": 193, "target": 33, "value": 0.3, "bi_directional": false}, {"id": 1253, "source": 193, "target": 209, "value": 0.3, "bi_directional": true}, {"id": 1254, "source": 193, "target": 73, "value": 0.3, "bi_directional": true}, {"id": 1255, "source": 110, "target": 14, "value": 0.3, "bi_directional": false}, {"id": 1256, "source": 110, "target": 135, "value": 0.3, "bi_directional": true}, {"id": 1257, "source": 110, "target": 20, "value": 0.3, "bi_directional": false}, {"id": 1258, "source": 110, "target": 280, "value": 0.3, "bi_directional": true}, {"id": 1259, "source": 110, "target": 275, "value": 0.3, "bi_directional": false}, {"id": 1260, "source": 110, "target": 228, "value": 0.3, "bi_directional": true}, {"id": 1261, "source": 110, "target": 21, "value": 0.3, "bi_directional": true}, {"id": 1262, "source": 110, "target": 147, "value": 0.3, "bi_directional": true}, {"id": 1263, "source": 88, "target": 122, "value": 0.3, "bi_directional": true}, {"id": 1264, "source": 88, "target": 264, "value": 0.3, "bi_directional": true}, {"id": 1265, "source": 88, "target": 105, "value": 0.3, "bi_directional": true}, {"id": 1266, "source": 88, "target": 214, "value": 0.3, "bi_directional": true}, {"id": 1267, "source": 88, "target": 46, "value": 0.3, "bi_directional": true}, {"id": 1268, "source": 137, "target": 311, "value": 0.3, "bi_directional": false}, {"id": 1269, "source": 137, "target": 299, "value": 0.3, "bi_directional": true}, {"id": 1270, "source": 137, "target": 218, "value": 0.3, "bi_directional": true}, {"id": 1271, "source": 137, "target": 128, "value": 0.3, "bi_directional": true}, {"id": 1272, "source": 137, "target": 116, "value": 0.3, "bi_directional": false}, {"id": 1273, "source": 137, "target": 217, "value": 0.3, "bi_directional": true}, {"id": 1274, "source": 137, "target": 125, "value": 0.3, "bi_directional": true}, {"id": 1275, "source": 137, "target": 175, "value": 0.3, "bi_directional": true}, {"id": 1276, "source": 184, "target": 212, "value": 0.3, "bi_directional": false}, {"id": 1277, "source": 184, "target": 312, "value": 0.3, "bi_directional": false}, {"id": 1278, "source": 184, "target": 272, "value": 0.3, "bi_directional": false}, {"id": 1279, "source": 184, "target": 127, "value": 0.3, "bi_directional": true}, {"id": 1280, "source": 184, "target": 291, "value": 0.3, "bi_directional": true}, {"id": 1281, "source": 184, "target": 187, "value": 0.3, "bi_directional": true}, {"id": 1282, "source": 184, "target": 95, "value": 0.3, "bi_directional": false}, {"id": 1283, "source": 184, "target": 238, "value": 0.3, "bi_directional": true}, {"id": 1284, "source": 184, "target": 6, "value": 0.3, "bi_directional": true}, {"id": 1285, "source": 184, "target": 166, "value": 0.3, "bi_directional": true}, {"id": 1286, "source": 184, "target": 180, "value": 0.3, "bi_directional": true}, {"id": 1287, "source": 289, "target": 129, "value": 0.3, "bi_directional": true}, {"id": 1288, "source": 152, "target": 168, "value": 0.3, "bi_directional": true}, {"id": 1289, "source": 152, "target": 46, "value": 0.3, "bi_directional": true}, {"id": 1290, "source": 156, "target": 38, "value": 0.3, "bi_directional": true}, {"id": 1291, "source": 156, "target": 41, "value": 0.3, "bi_directional": false}, {"id": 1292, "source": 156, "target": 115, "value": 0.3, "bi_directional": true}, {"id": 1293, "source": 156, "target": 299, "value": 0.3, "bi_directional": true}, {"id": 1294, "source": 156, "target": 81, "value": 0.3, "bi_directional": false}, {"id": 1295, "source": 156, "target": 175, "value": 0.3, "bi_directional": true}, {"id": 1296, "source": 156, "target": 218, "value": 0.3, "bi_directional": true}, {"id": 1297, "source": 156, "target": 170, "value": 0.3, "bi_directional": true}, {"id": 1298, "source": 156, "target": 209, "value": 0.3, "bi_directional": true}, {"id": 1299, "source": 156, "target": 181, "value": 0.3, "bi_directional": false}, {"id": 1300, "source": 156, "target": 183, "value": 0.3, "bi_directional": false}, {"id": 1301, "source": 156, "target": 44, "value": 0.3, "bi_directional": false}, {"id": 1302, "source": 156, "target": 172, "value": 0.3, "bi_directional": true}, {"id": 1303, "source": 21, "target": 223, "value": 0.3, "bi_directional": true}, {"id": 1304, "source": 21, "target": 147, "value": 0.3, "bi_directional": true}, {"id": 1305, "source": 21, "target": 103, "value": 0.3, "bi_directional": false}, {"id": 1306, "source": 15, "target": 140, "value": 0.3, "bi_directional": true}, {"id": 1307, "source": 15, "target": 281, "value": 0.3, "bi_directional": true}, {"id": 1308, "source": 143, "target": 32, "value": 0.3, "bi_directional": true}, {"id": 1309, "source": 143, "target": 282, "value": 0.3, "bi_directional": false}, {"id": 1310, "source": 146, "target": 230, "value": 0.3, "bi_directional": true}, {"id": 1311, "source": 146, "target": 172, "value": 0.3, "bi_directional": true}, {"id": 1312, "source": 146, "target": 160, "value": 0.3, "bi_directional": true}, {"id": 1313, "source": 146, "target": 264, "value": 0.3, "bi_directional": true}, {"id": 1314, "source": 146, "target": 29, "value": 0.3, "bi_directional": true}, {"id": 1315, "source": 146, "target": 41, "value": 0.3, "bi_directional": true}, {"id": 1316, "source": 146, "target": 279, "value": 0.3, "bi_directional": true}, {"id": 1317, "source": 146, "target": 276, "value": 0.3, "bi_directional": true}, {"id": 1318, "source": 271, "target": 266, "value": 0.3, "bi_directional": true}, {"id": 1319, "source": 78, "target": 255, "value": 0.3, "bi_directional": true}, {"id": 1320, "source": 78, "target": 209, "value": 0.3, "bi_directional": true}, {"id": 1321, "source": 78, "target": 39, "value": 0.3, "bi_directional": false}, {"id": 1322, "source": 302, "target": 67, "value": 0.3, "bi_directional": false}, {"id": 1323, "source": 302, "target": 272, "value": 0.3, "bi_directional": true}, {"id": 1324, "source": 302, "target": 6, "value": 0.3, "bi_directional": false}, {"id": 1325, "source": 302, "target": 117, "value": 0.3, "bi_directional": true}, {"id": 1326, "source": 302, "target": 142, "value": 0.3, "bi_directional": false}, {"id": 1327, "source": 302, "target": 157, "value": 0.3, "bi_directional": true}, {"id": 1328, "source": 302, "target": 82, "value": 0.3, "bi_directional": false}, {"id": 1329, "source": 302, "target": 91, "value": 0.3, "bi_directional": false}, {"id": 1330, "source": 302, "target": 291, "value": 0.3, "bi_directional": true}, {"id": 1331, "source": 302, "target": 187, "value": 0.3, "bi_directional": false}, {"id": 1332, "source": 302, "target": 28, "value": 0.3, "bi_directional": false}, {"id": 1333, "source": 302, "target": 161, "value": 0.3, "bi_directional": true}, {"id": 1334, "source": 302, "target": 151, "value": 0.3, "bi_directional": true}, {"id": 1335, "source": 302, "target": 236, "value": 0.3, "bi_directional": true}, {"id": 1336, "source": 302, "target": 166, "value": 0.3, "bi_directional": true}, {"id": 1337, "source": 179, "target": 286, "value": 0.3, "bi_directional": false}, {"id": 1338, "source": 201, "target": 105, "value": 0.3, "bi_directional": true}, {"id": 1339, "source": 201, "target": 117, "value": 0.3, "bi_directional": true}, {"id": 1340, "source": 291, "target": 238, "value": 0.3, "bi_directional": true}, {"id": 1341, "source": 291, "target": 180, "value": 0.3, "bi_directional": true}, {"id": 1342, "source": 291, "target": 187, "value": 0.3, "bi_directional": false}, {"id": 1343, "source": 291, "target": 252, "value": 0.3, "bi_directional": false}, {"id": 1344, "source": 291, "target": 312, "value": 0.3, "bi_directional": false}, {"id": 1345, "source": 291, "target": 19, "value": 0.3, "bi_directional": false}, {"id": 1346, "source": 291, "target": 105, "value": 0.3, "bi_directional": false}, {"id": 1347, "source": 291, "target": 142, "value": 0.3, "bi_directional": true}, {"id": 1348, "source": 291, "target": 46, "value": 0.3, "bi_directional": true}, {"id": 1349, "source": 291, "target": 54, "value": 0.3, "bi_directional": true}, {"id": 1350, "source": 291, "target": 69, "value": 0.3, "bi_directional": false}, {"id": 1351, "source": 291, "target": 117, "value": 0.3, "bi_directional": true}, {"id": 1352, "source": 291, "target": 272, "value": 0.3, "bi_directional": false}, {"id": 1353, "source": 291, "target": 166, "value": 0.3, "bi_directional": true}, {"id": 1354, "source": 291, "target": 6, "value": 0.3, "bi_directional": false}, {"id": 1355, "source": 212, "target": 238, "value": 0.3, "bi_directional": true}, {"id": 1356, "source": 212, "target": 43, "value": 0.3, "bi_directional": false}, {"id": 1357, "source": 212, "target": 28, "value": 0.3, "bi_directional": false}, {"id": 1358, "source": 212, "target": 236, "value": 0.3, "bi_directional": true}, {"id": 1359, "source": 212, "target": 187, "value": 0.3, "bi_directional": true}, {"id": 1360, "source": 212, "target": 272, "value": 0.3, "bi_directional": true}, {"id": 1361, "source": 127, "target": 242, "value": 0.3, "bi_directional": true}, {"id": 1362, "source": 127, "target": 54, "value": 0.3, "bi_directional": true}, {"id": 1363, "source": 127, "target": 238, "value": 0.3, "bi_directional": true}, {"id": 1364, "source": 127, "target": 116, "value": 0.3, "bi_directional": false}, {"id": 1365, "source": 127, "target": 212, "value": 0.3, "bi_directional": false}, {"id": 1366, "source": 132, "target": 220, "value": 0.3, "bi_directional": true}, {"id": 1367, "source": 175, "target": 218, "value": 0.3, "bi_directional": true}, {"id": 1368, "source": 175, "target": 209, "value": 0.3, "bi_directional": true}, {"id": 1369, "source": 175, "target": 186, "value": 0.3, "bi_directional": false}, {"id": 1370, "source": 175, "target": 170, "value": 0.3, "bi_directional": true}, {"id": 1371, "source": 175, "target": 79, "value": 0.3, "bi_directional": true}, {"id": 1372, "source": 175, "target": 131, "value": 0.3, "bi_directional": true}, {"id": 1373, "source": 175, "target": 223, "value": 0.3, "bi_directional": true}, {"id": 1374, "source": 175, "target": 203, "value": 0.3, "bi_directional": false}, {"id": 1375, "source": 175, "target": 125, "value": 0.3, "bi_directional": true}, {"id": 1376, "source": 175, "target": 172, "value": 0.3, "bi_directional": true}, {"id": 1377, "source": 175, "target": 44, "value": 0.3, "bi_directional": true}, {"id": 1378, "source": 175, "target": 121, "value": 0.3, "bi_directional": true}, {"id": 1379, "source": 175, "target": 115, "value": 0.3, "bi_directional": true}, {"id": 1380, "source": 175, "target": 208, "value": 0.3, "bi_directional": false}, {"id": 1381, "source": 175, "target": 116, "value": 0.3, "bi_directional": false}, {"id": 1382, "source": 175, "target": 299, "value": 0.3, "bi_directional": true}, {"id": 1383, "source": 175, "target": 38, "value": 0.3, "bi_directional": true}, {"id": 1384, "source": 175, "target": 41, "value": 0.3, "bi_directional": true}, {"id": 1385, "source": 157, "target": 300, "value": 0.3, "bi_directional": true}, {"id": 1386, "source": 157, "target": 236, "value": 0.3, "bi_directional": true}, {"id": 1387, "source": 157, "target": 67, "value": 0.3, "bi_directional": true}, {"id": 1388, "source": 157, "target": 82, "value": 0.3, "bi_directional": true}, {"id": 1389, "source": 157, "target": 279, "value": 0.3, "bi_directional": true}, {"id": 1390, "source": 157, "target": 272, "value": 0.3, "bi_directional": false}, {"id": 1391, "source": 157, "target": 150, "value": 0.3, "bi_directional": false}, {"id": 1392, "source": 157, "target": 28, "value": 0.3, "bi_directional": true}, {"id": 1393, "source": 157, "target": 91, "value": 0.3, "bi_directional": true}, {"id": 1394, "source": 157, "target": 252, "value": 0.3, "bi_directional": true}, {"id": 1395, "source": 157, "target": 151, "value": 0.3, "bi_directional": true}, {"id": 1396, "source": 157, "target": 34, "value": 0.3, "bi_directional": true}, {"id": 1397, "source": 157, "target": 161, "value": 0.3, "bi_directional": true}, {"id": 1398, "source": 157, "target": 50, "value": 0.3, "bi_directional": false}, {"id": 1399, "source": 157, "target": 105, "value": 0.3, "bi_directional": true}, {"id": 1400, "source": 314, "target": 115, "value": 0.3, "bi_directional": true}, {"id": 1401, "source": 314, "target": 172, "value": 0.3, "bi_directional": true}, {"id": 1402, "source": 314, "target": 299, "value": 0.3, "bi_directional": true}, {"id": 1403, "source": 314, "target": 276, "value": 0.3, "bi_directional": true}, {"id": 1404, "source": 314, "target": 41, "value": 0.3, "bi_directional": false}, {"id": 1405, "source": 314, "target": 264, "value": 0.3, "bi_directional": true}, {"id": 1406, "source": 314, "target": 230, "value": 0.3, "bi_directional": true}, {"id": 1407, "source": 314, "target": 131, "value": 0.3, "bi_directional": false}, {"id": 1408, "source": 314, "target": 279, "value": 0.3, "bi_directional": true}, {"id": 1409, "source": 314, "target": 29, "value": 0.3, "bi_directional": true}, {"id": 1410, "source": 314, "target": 141, "value": 0.3, "bi_directional": false}, {"id": 1411, "source": 314, "target": 44, "value": 0.3, "bi_directional": false}, {"id": 1412, "source": 314, "target": 270, "value": 0.3, "bi_directional": false}, {"id": 1413, "source": 290, "target": 191, "value": 0.3, "bi_directional": false}, {"id": 1414, "source": 290, "target": 285, "value": 0.3, "bi_directional": true}, {"id": 1415, "source": 290, "target": 239, "value": 0.3, "bi_directional": false}, {"id": 1416, "source": 290, "target": 152, "value": 0.3, "bi_directional": false}, {"id": 1417, "source": 209, "target": 44, "value": 0.3, "bi_directional": true}, {"id": 1418, "source": 209, "target": 279, "value": 0.3, "bi_directional": true}, {"id": 1419, "source": 209, "target": 299, "value": 0.3, "bi_directional": true}, {"id": 1420, "source": 209, "target": 172, "value": 0.3, "bi_directional": true}, {"id": 1421, "source": 209, "target": 79, "value": 0.3, "bi_directional": false}, {"id": 1422, "source": 209, "target": 115, "value": 0.3, "bi_directional": true}, {"id": 1423, "source": 209, "target": 181, "value": 0.3, "bi_directional": true}, {"id": 1424, "source": 209, "target": 116, "value": 0.3, "bi_directional": false}, {"id": 1425, "source": 6, "target": 28, "value": 0.3, "bi_directional": true}, {"id": 1426, "source": 6, "target": 69, "value": 0.3, "bi_directional": false}, {"id": 1427, "source": 6, "target": 117, "value": 0.3, "bi_directional": true}, {"id": 1428, "source": 6, "target": 310, "value": 0.3, "bi_directional": false}, {"id": 1429, "source": 6, "target": 166, "value": 0.3, "bi_directional": true}, {"id": 1430, "source": 6, "target": 67, "value": 0.3, "bi_directional": true}, {"id": 1431, "source": 6, "target": 46, "value": 0.3, "bi_directional": true}, {"id": 1432, "source": 6, "target": 187, "value": 0.3, "bi_directional": false}, {"id": 1433, "source": 6, "target": 163, "value": 0.3, "bi_directional": true}, {"id": 1434, "source": 6, "target": 272, "value": 0.3, "bi_directional": true}, {"id": 1435, "source": 6, "target": 34, "value": 0.3, "bi_directional": true}, {"id": 1436, "source": 6, "target": 151, "value": 0.3, "bi_directional": true}, {"id": 1437, "source": 6, "target": 312, "value": 0.3, "bi_directional": false}, {"id": 1438, "source": 6, "target": 122, "value": 0.3, "bi_directional": true}, {"id": 1439, "source": 6, "target": 238, "value": 0.3, "bi_directional": true}, {"id": 1440, "source": 6, "target": 214, "value": 0.3, "bi_directional": false}, {"id": 1441, "source": 6, "target": 105, "value": 0.3, "bi_directional": true}, {"id": 1442, "source": 87, "target": 163, "value": 0.3, "bi_directional": true}, {"id": 1443, "source": 87, "target": 255, "value": 0.3, "bi_directional": true}, {"id": 1444, "source": 87, "target": 54, "value": 0.3, "bi_directional": true}, {"id": 1445, "source": 87, "target": 238, "value": 0.3, "bi_directional": true}, {"id": 1446, "source": 161, "target": 236, "value": 0.3, "bi_directional": true}, {"id": 1447, "source": 161, "target": 89, "value": 0.3, "bi_directional": false}, {"id": 1448, "source": 161, "target": 91, "value": 0.3, "bi_directional": false}, {"id": 1449, "source": 161, "target": 88, "value": 0.3, "bi_directional": false}, {"id": 1450, "source": 161, "target": 28, "value": 0.3, "bi_directional": true}, {"id": 1451, "source": 161, "target": 151, "value": 0.3, "bi_directional": true}, {"id": 1452, "source": 161, "target": 272, "value": 0.3, "bi_directional": true}, {"id": 1453, "source": 145, "target": 75, "value": 0.3, "bi_directional": true}, {"id": 1454, "source": 145, "target": 171, "value": 0.3, "bi_directional": false}, {"id": 1455, "source": 145, "target": 207, "value": 0.3, "bi_directional": false}, {"id": 1456, "source": 145, "target": 271, "value": 0.3, "bi_directional": false}, {"id": 1457, "source": 228, "target": 226, "value": 0.3, "bi_directional": true}, {"id": 1458, "source": 228, "target": 135, "value": 0.3, "bi_directional": false}, {"id": 1459, "source": 131, "target": 44, "value": 0.3, "bi_directional": true}, {"id": 1460, "source": 131, "target": 181, "value": 0.3, "bi_directional": true}, {"id": 1461, "source": 131, "target": 128, "value": 0.3, "bi_directional": false}, {"id": 1462, "source": 131, "target": 218, "value": 0.3, "bi_directional": true}, {"id": 1463, "source": 131, "target": 115, "value": 0.3, "bi_directional": true}, {"id": 1464, "source": 131, "target": 299, "value": 0.3, "bi_directional": true}, {"id": 1465, "source": 131, "target": 294, "value": 0.3, "bi_directional": true}, {"id": 1466, "source": 117, "target": 252, "value": 0.3, "bi_directional": true}, {"id": 1467, "source": 117, "target": 135, "value": 0.3, "bi_directional": true}, {"id": 1468, "source": 117, "target": 34, "value": 0.3, "bi_directional": true}, {"id": 1469, "source": 117, "target": 166, "value": 0.3, "bi_directional": true}, {"id": 1470, "source": 117, "target": 28, "value": 0.3, "bi_directional": true}, {"id": 1471, "source": 117, "target": 300, "value": 0.3, "bi_directional": true}, {"id": 1472, "source": 117, "target": 67, "value": 0.3, "bi_directional": true}, {"id": 1473, "source": 117, "target": 105, "value": 0.3, "bi_directional": true}, {"id": 1474, "source": 117, "target": 54, "value": 0.3, "bi_directional": true}, {"id": 1475, "source": 117, "target": 122, "value": 0.3, "bi_directional": true}, {"id": 1476, "source": 117, "target": 187, "value": 0.3, "bi_directional": true}, {"id": 1477, "source": 117, "target": 180, "value": 0.3, "bi_directional": true}, {"id": 1478, "source": 117, "target": 91, "value": 0.3, "bi_directional": true}, {"id": 1479, "source": 117, "target": 148, "value": 0.3, "bi_directional": true}, {"id": 1480, "source": 117, "target": 272, "value": 0.3, "bi_directional": true}, {"id": 1481, "source": 117, "target": 85, "value": 0.3, "bi_directional": true}, {"id": 1482, "source": 117, "target": 223, "value": 0.3, "bi_directional": true}, {"id": 1483, "source": 117, "target": 208, "value": 0.3, "bi_directional": false}, {"id": 1484, "source": 117, "target": 243, "value": 0.3, "bi_directional": false}, {"id": 1485, "source": 117, "target": 142, "value": 0.3, "bi_directional": true}, {"id": 1486, "source": 117, "target": 184, "value": 0.3, "bi_directional": false}, {"id": 1487, "source": 117, "target": 14, "value": 0.3, "bi_directional": false}, {"id": 1488, "source": 166, "target": 142, "value": 0.3, "bi_directional": true}, {"id": 1489, "source": 166, "target": 122, "value": 0.3, "bi_directional": true}, {"id": 1490, "source": 166, "target": 238, "value": 0.3, "bi_directional": true}, {"id": 1491, "source": 166, "target": 187, "value": 0.3, "bi_directional": false}, {"id": 1492, "source": 166, "target": 46, "value": 0.3, "bi_directional": false}, {"id": 1493, "source": 166, "target": 105, "value": 0.3, "bi_directional": true}, {"id": 1494, "source": 166, "target": 180, "value": 0.3, "bi_directional": true}, {"id": 1495, "source": 166, "target": 272, "value": 0.3, "bi_directional": true}, {"id": 1496, "source": 241, "target": 89, "value": 0.3, "bi_directional": true}, {"id": 1497, "source": 91, "target": 142, "value": 0.3, "bi_directional": true}, {"id": 1498, "source": 91, "target": 252, "value": 0.3, "bi_directional": true}, {"id": 1499, "source": 91, "target": 151, "value": 0.3, "bi_directional": true}, {"id": 1500, "source": 91, "target": 34, "value": 0.3, "bi_directional": true}, {"id": 1501, "source": 91, "target": 28, "value": 0.3, "bi_directional": true}, {"id": 1502, "source": 91, "target": 67, "value": 0.3, "bi_directional": true}, {"id": 1503, "source": 91, "target": 82, "value": 0.3, "bi_directional": true}, {"id": 1504, "source": 91, "target": 105, "value": 0.3, "bi_directional": true}, {"id": 1505, "source": 142, "target": 46, "value": 0.3, "bi_directional": true}, {"id": 1506, "source": 142, "target": 272, "value": 0.3, "bi_directional": false}, {"id": 1507, "source": 142, "target": 163, "value": 0.3, "bi_directional": true}, {"id": 1508, "source": 142, "target": 214, "value": 0.3, "bi_directional": true}, {"id": 1509, "source": 142, "target": 6, "value": 0.3, "bi_directional": false}, {"id": 1510, "source": 142, "target": 255, "value": 0.3, "bi_directional": true}, {"id": 1511, "source": 142, "target": 187, "value": 0.3, "bi_directional": false}, {"id": 1512, "source": 142, "target": 105, "value": 0.3, "bi_directional": true}, {"id": 1513, "source": 142, "target": 67, "value": 0.3, "bi_directional": true}, {"id": 1514, "source": 142, "target": 34, "value": 0.3, "bi_directional": true}, {"id": 1515, "source": 142, "target": 252, "value": 0.3, "bi_directional": true}, {"id": 1516, "source": 142, "target": 201, "value": 0.3, "bi_directional": false}, {"id": 1517, "source": 142, "target": 274, "value": 0.3, "bi_directional": false}, {"id": 1518, "source": 255, "target": 125, "value": 0.3, "bi_directional": true}, {"id": 1519, "source": 255, "target": 218, "value": 0.3, "bi_directional": true}, {"id": 1520, "source": 153, "target": 90, "value": 0.3, "bi_directional": false}, {"id": 1521, "source": 153, "target": 270, "value": 0.3, "bi_directional": false}, {"id": 1522, "source": 41, "target": 218, "value": 0.3, "bi_directional": true}, {"id": 1523, "source": 41, "target": 297, "value": 0.3, "bi_directional": true}, {"id": 1524, "source": 41, "target": 115, "value": 0.3, "bi_directional": false}, {"id": 1525, "source": 41, "target": 251, "value": 0.3, "bi_directional": false}, {"id": 1526, "source": 41, "target": 299, "value": 0.3, "bi_directional": true}, {"id": 1527, "source": 41, "target": 29, "value": 0.3, "bi_directional": true}, {"id": 1528, "source": 41, "target": 276, "value": 0.3, "bi_directional": true}, {"id": 1529, "source": 41, "target": 279, "value": 0.3, "bi_directional": true}, {"id": 1530, "source": 41, "target": 203, "value": 0.3, "bi_directional": false}, {"id": 1531, "source": 41, "target": 209, "value": 0.3, "bi_directional": false}, {"id": 1532, "source": 41, "target": 172, "value": 0.3, "bi_directional": true}, {"id": 1533, "source": 41, "target": 130, "value": 0.3, "bi_directional": false}, {"id": 1534, "source": 41, "target": 160, "value": 0.3, "bi_directional": true}, {"id": 1535, "source": 41, "target": 38, "value": 0.3, "bi_directional": true}, {"id": 1536, "source": 41, "target": 264, "value": 0.3, "bi_directional": true}, {"id": 1537, "source": 41, "target": 131, "value": 0.3, "bi_directional": false}, {"id": 1538, "source": 41, "target": 230, "value": 0.3, "bi_directional": true}, {"id": 1539, "source": 41, "target": 223, "value": 0.3, "bi_directional": true}, {"id": 1540, "source": 41, "target": 44, "value": 0.3, "bi_directional": true}, {"id": 1541, "source": 308, "target": 266, "value": 0.3, "bi_directional": true}, {"id": 1542, "source": 308, "target": 75, "value": 0.3, "bi_directional": true}, {"id": 1543, "source": 112, "target": 73, "value": 0.3, "bi_directional": true}, {"id": 1544, "source": 112, "target": 181, "value": 0.3, "bi_directional": true}, {"id": 1545, "source": 112, "target": 219, "value": 0.3, "bi_directional": true}, {"id": 1546, "source": 112, "target": 172, "value": 0.3, "bi_directional": true}, {"id": 1547, "source": 112, "target": 297, "value": 0.3, "bi_directional": true}, {"id": 1548, "source": 112, "target": 44, "value": 0.3, "bi_directional": true}, {"id": 1549, "source": 191, "target": 44, "value": 0.3, "bi_directional": true}, {"id": 1550, "source": 191, "target": 152, "value": 0.3, "bi_directional": false}, {"id": 1551, "source": 191, "target": 39, "value": 0.3, "bi_directional": false}, {"id": 1552, "source": 191, "target": 81, "value": 0.3, "bi_directional": false}, {"id": 1553, "source": 191, "target": 285, "value": 0.3, "bi_directional": true}, {"id": 1554, "source": 191, "target": 309, "value": 0.3, "bi_directional": false}, {"id": 1555, "source": 191, "target": 292, "value": 0.3, "bi_directional": false}, {"id": 1556, "source": 191, "target": 239, "value": 0.3, "bi_directional": false}, {"id": 1557, "source": 191, "target": 168, "value": 0.3, "bi_directional": true}, {"id": 1558, "source": 191, "target": 11, "value": 0.3, "bi_directional": false}, {"id": 1559, "source": 191, "target": 99, "value": 0.3, "bi_directional": false}, {"id": 1560, "source": 294, "target": 125, "value": 0.3, "bi_directional": true}, {"id": 1561, "source": 294, "target": 299, "value": 0.3, "bi_directional": true}, {"id": 1562, "source": 294, "target": 218, "value": 0.3, "bi_directional": true}, {"id": 1563, "source": 294, "target": 297, "value": 0.3, "bi_directional": true}, {"id": 1564, "source": 294, "target": 251, "value": 0.3, "bi_directional": false}, {"id": 1565, "source": 294, "target": 44, "value": 0.3, "bi_directional": true}, {"id": 1566, "source": 294, "target": 170, "value": 0.3, "bi_directional": true}, {"id": 1567, "source": 128, "target": 236, "value": 0.3, "bi_directional": true}, {"id": 1568, "source": 214, "target": 122, "value": 0.3, "bi_directional": true}, {"id": 1569, "source": 214, "target": 236, "value": 0.3, "bi_directional": false}, {"id": 1570, "source": 214, "target": 54, "value": 0.3, "bi_directional": true}, {"id": 1571, "source": 214, "target": 187, "value": 0.3, "bi_directional": true}, {"id": 1572, "source": 25, "target": 217, "value": 0.3, "bi_directional": true}, {"id": 1573, "source": 25, "target": 14, "value": 0.3, "bi_directional": false}, {"id": 1574, "source": 25, "target": 102, "value": 0.3, "bi_directional": false}, {"id": 1575, "source": 25, "target": 137, "value": 0.3, "bi_directional": false}, {"id": 1576, "source": 25, "target": 311, "value": 0.3, "bi_directional": false}, {"id": 1577, "source": 122, "target": 238, "value": 0.3, "bi_directional": true}, {"id": 1578, "source": 122, "target": 187, "value": 0.3, "bi_directional": false}, {"id": 1579, "source": 122, "target": 82, "value": 0.3, "bi_directional": true}, {"id": 1580, "source": 122, "target": 54, "value": 0.3, "bi_directional": true}, {"id": 1581, "source": 159, "target": 277, "value": 0.3, "bi_directional": true}, {"id": 1582, "source": 159, "target": 195, "value": 0.3, "bi_directional": true}, {"id": 1583, "source": 159, "target": 48, "value": 0.3, "bi_directional": true}, {"id": 1584, "source": 189, "target": 175, "value": 0.3, "bi_directional": false}, {"id": 1585, "source": 189, "target": 39, "value": 0.3, "bi_directional": false}, {"id": 1586, "source": 189, "target": 41, "value": 0.3, "bi_directional": false}, {"id": 1587, "source": 189, "target": 209, "value": 0.3, "bi_directional": false}, {"id": 1588, "source": 189, "target": 78, "value": 0.3, "bi_directional": false}, {"id": 1589, "source": 189, "target": 128, "value": 0.3, "bi_directional": false}, {"id": 1590, "source": 189, "target": 299, "value": 0.3, "bi_directional": false}, {"id": 1591, "source": 189, "target": 114, "value": 0.3, "bi_directional": false}, {"id": 1592, "source": 189, "target": 251, "value": 0.3, "bi_directional": false}, {"id": 1593, "source": 189, "target": 44, "value": 0.3, "bi_directional": true}, {"id": 1594, "source": 189, "target": 279, "value": 0.3, "bi_directional": true}, {"id": 1595, "source": 28, "target": 67, "value": 0.3, "bi_directional": true}, {"id": 1596, "source": 28, "target": 236, "value": 0.3, "bi_directional": true}, {"id": 1597, "source": 28, "target": 135, "value": 0.3, "bi_directional": false}, {"id": 1598, "source": 28, "target": 151, "value": 0.3, "bi_directional": true}, {"id": 1599, "source": 28, "target": 82, "value": 0.3, "bi_directional": true}, {"id": 1600, "source": 79, "target": 135, "value": 0.3, "bi_directional": false}, {"id": 1601, "source": 79, "target": 90, "value": 0.3, "bi_directional": false}, {"id": 1602, "source": 79, "target": 208, "value": 0.3, "bi_directional": true}, {"id": 1603, "source": 79, "target": 251, "value": 0.3, "bi_directional": false}, {"id": 1604, "source": 79, "target": 44, "value": 0.3, "bi_directional": false}, {"id": 1605, "source": 85, "target": 238, "value": 0.3, "bi_directional": true}, {"id": 1606, "source": 124, "target": 227, "value": 0.3, "bi_directional": true}, {"id": 1607, "source": 124, "target": 136, "value": 0.3, "bi_directional": true}, {"id": 1608, "source": 124, "target": 162, "value": 0.3, "bi_directional": false}, {"id": 1609, "source": 225, "target": 6, "value": 0.3, "bi_directional": false}, {"id": 1610, "source": 225, "target": 272, "value": 0.3, "bi_directional": true}, {"id": 1611, "source": 225, "target": 300, "value": 0.3, "bi_directional": true}, {"id": 1612, "source": 225, "target": 67, "value": 0.3, "bi_directional": true}, {"id": 1613, "source": 225, "target": 117, "value": 0.3, "bi_directional": false}, {"id": 1614, "source": 225, "target": 50, "value": 0.3, "bi_directional": false}, {"id": 1615, "source": 225, "target": 82, "value": 0.3, "bi_directional": false}, {"id": 1616, "source": 225, "target": 236, "value": 0.3, "bi_directional": false}, {"id": 1617, "source": 225, "target": 252, "value": 0.3, "bi_directional": false}, {"id": 1618, "source": 225, "target": 91, "value": 0.3, "bi_directional": false}, {"id": 1619, "source": 225, "target": 34, "value": 0.3, "bi_directional": true}, {"id": 1620, "source": 225, "target": 163, "value": 0.3, "bi_directional": true}, {"id": 1621, "source": 121, "target": 251, "value": 0.3, "bi_directional": false}, {"id": 1622, "source": 121, "target": 218, "value": 0.3, "bi_directional": true}, {"id": 1623, "source": 121, "target": 299, "value": 0.3, "bi_directional": true}, {"id": 1624, "source": 121, "target": 125, "value": 0.3, "bi_directional": true}, {"id": 1625, "source": 121, "target": 183, "value": 0.3, "bi_directional": false}, {"id": 1626, "source": 151, "target": 236, "value": 0.3, "bi_directional": true}, {"id": 1627, "source": 151, "target": 67, "value": 0.3, "bi_directional": true}, {"id": 1628, "source": 115, "target": 230, "value": 0.3, "bi_directional": true}, {"id": 1629, "source": 115, "target": 279, "value": 0.3, "bi_directional": true}, {"id": 1630, "source": 115, "target": 73, "value": 0.3, "bi_directional": true}, {"id": 1631, "source": 115, "target": 38, "value": 0.3, "bi_directional": true}, {"id": 1632, "source": 115, "target": 111, "value": 0.3, "bi_directional": false}, {"id": 1633, "source": 115, "target": 109, "value": 0.3, "bi_directional": false}, {"id": 1634, "source": 115, "target": 29, "value": 0.3, "bi_directional": true}, {"id": 1635, "source": 115, "target": 125, "value": 0.3, "bi_directional": false}, {"id": 1636, "source": 115, "target": 276, "value": 0.3, "bi_directional": true}, {"id": 1637, "source": 115, "target": 39, "value": 0.3, "bi_directional": false}, {"id": 1638, "source": 115, "target": 181, "value": 0.3, "bi_directional": true}, {"id": 1639, "source": 115, "target": 218, "value": 0.3, "bi_directional": true}, {"id": 1640, "source": 115, "target": 44, "value": 0.3, "bi_directional": true}, {"id": 1641, "source": 115, "target": 121, "value": 0.3, "bi_directional": false}, {"id": 1642, "source": 115, "target": 203, "value": 0.3, "bi_directional": false}, {"id": 1643, "source": 115, "target": 79, "value": 0.3, "bi_directional": false}, {"id": 1644, "source": 115, "target": 160, "value": 0.3, "bi_directional": true}, {"id": 1645, "source": 115, "target": 172, "value": 0.3, "bi_directional": true}, {"id": 1646, "source": 115, "target": 170, "value": 0.3, "bi_directional": true}, {"id": 1647, "source": 115, "target": 299, "value": 0.3, "bi_directional": true}, {"id": 1648, "source": 46, "target": 252, "value": 0.3, "bi_directional": true}, {"id": 1649, "source": 46, "target": 67, "value": 0.3, "bi_directional": true}, {"id": 1650, "source": 46, "target": 272, "value": 0.3, "bi_directional": true}, {"id": 1651, "source": 46, "target": 19, "value": 0.3, "bi_directional": false}, {"id": 1652, "source": 46, "target": 34, "value": 0.3, "bi_directional": true}, {"id": 1653, "source": 46, "target": 82, "value": 0.3, "bi_directional": true}, {"id": 1654, "source": 46, "target": 105, "value": 0.3, "bi_directional": true}, {"id": 1655, "source": 46, "target": 163, "value": 0.3, "bi_directional": true}, {"id": 1656, "source": 105, "target": 225, "value": 0.3, "bi_directional": false}, {"id": 1657, "source": 105, "target": 67, "value": 0.3, "bi_directional": true}, {"id": 1658, "source": 105, "target": 272, "value": 0.3, "bi_directional": true}, {"id": 1659, "source": 105, "target": 302, "value": 0.3, "bi_directional": false}, {"id": 1660, "source": 105, "target": 237, "value": 0.3, "bi_directional": false}, {"id": 1661, "source": 105, "target": 34, "value": 0.3, "bi_directional": true}, {"id": 1662, "source": 105, "target": 180, "value": 0.3, "bi_directional": true}, {"id": 1663, "source": 105, "target": 163, "value": 0.3, "bi_directional": true}, {"id": 1664, "source": 105, "target": 252, "value": 0.3, "bi_directional": true}, {"id": 1665, "source": 264, "target": 128, "value": 0.3, "bi_directional": false}, {"id": 1666, "source": 264, "target": 309, "value": 0.3, "bi_directional": false}, {"id": 1667, "source": 264, "target": 130, "value": 0.3, "bi_directional": false}, {"id": 1668, "source": 264, "target": 29, "value": 0.3, "bi_directional": true}, {"id": 1669, "source": 264, "target": 160, "value": 0.3, "bi_directional": true}, {"id": 1670, "source": 264, "target": 297, "value": 0.3, "bi_directional": true}, {"id": 1671, "source": 264, "target": 172, "value": 0.3, "bi_directional": true}, {"id": 1672, "source": 264, "target": 276, "value": 0.3, "bi_directional": true}, {"id": 1673, "source": 264, "target": 230, "value": 0.3, "bi_directional": true}, {"id": 1674, "source": 264, "target": 279, "value": 0.3, "bi_directional": true}, {"id": 1675, "source": 264, "target": 38, "value": 0.3, "bi_directional": false}, {"id": 1676, "source": 264, "target": 115, "value": 0.3, "bi_directional": false}, {"id": 1677, "source": 264, "target": 44, "value": 0.3, "bi_directional": true}, {"id": 1678, "source": 297, "target": 301, "value": 0.3, "bi_directional": true}, {"id": 1679, "source": 297, "target": 33, "value": 0.3, "bi_directional": false}, {"id": 1680, "source": 297, "target": 238, "value": 0.3, "bi_directional": true}, {"id": 1681, "source": 297, "target": 73, "value": 0.3, "bi_directional": true}, {"id": 1682, "source": 297, "target": 44, "value": 0.3, "bi_directional": true}, {"id": 1683, "source": 297, "target": 114, "value": 0.3, "bi_directional": false}, {"id": 1684, "source": 297, "target": 29, "value": 0.3, "bi_directional": true}, {"id": 1685, "source": 99, "target": 82, "value": 0.3, "bi_directional": true}, {"id": 1686, "source": 99, "target": 39, "value": 0.3, "bi_directional": false}, {"id": 1687, "source": 195, "target": 48, "value": 0.3, "bi_directional": true}, {"id": 1688, "source": 195, "target": 96, "value": 0.3, "bi_directional": true}, {"id": 1689, "source": 266, "target": 207, "value": 0.3, "bi_directional": true}, {"id": 1690, "source": 266, "target": 75, "value": 0.3, "bi_directional": true}, {"id": 1691, "source": 136, "target": 227, "value": 0.3, "bi_directional": true}, {"id": 1692, "source": 38, "target": 170, "value": 0.3, "bi_directional": true}, {"id": 1693, "source": 38, "target": 44, "value": 0.3, "bi_directional": true}, {"id": 1694, "source": 38, "target": 299, "value": 0.3, "bi_directional": true}, {"id": 1695, "source": 38, "target": 259, "value": 0.3, "bi_directional": false}, {"id": 1696, "source": 38, "target": 218, "value": 0.3, "bi_directional": false}, {"id": 1697, "source": 38, "target": 223, "value": 0.3, "bi_directional": true}, {"id": 1698, "source": 38, "target": 209, "value": 0.3, "bi_directional": false}, {"id": 1699, "source": 38, "target": 181, "value": 0.3, "bi_directional": true}, {"id": 1700, "source": 71, "target": 253, "value": 0.3, "bi_directional": true}, {"id": 1701, "source": 163, "target": 272, "value": 0.3, "bi_directional": true}, {"id": 1702, "source": 163, "target": 82, "value": 0.3, "bi_directional": true}, {"id": 1703, "source": 163, "target": 34, "value": 0.3, "bi_directional": true}, {"id": 1704, "source": 140, "target": 281, "value": 0.3, "bi_directional": true}, {"id": 1705, "source": 310, "target": 46, "value": 0.3, "bi_directional": false}, {"id": 1706, "source": 310, "target": 238, "value": 0.3, "bi_directional": true}, {"id": 1707, "source": 75, "target": 271, "value": 0.3, "bi_directional": false}, {"id": 1708, "source": 75, "target": 207, "value": 0.3, "bi_directional": true}, {"id": 1709, "source": 55, "target": 94, "value": 0.3, "bi_directional": false}, {"id": 1710, "source": 55, "target": 204, "value": 0.3, "bi_directional": false}, {"id": 1711, "source": 107, "target": 206, "value": 0.3, "bi_directional": true}, {"id": 1712, "source": 208, "target": 218, "value": 0.3, "bi_directional": true}, {"id": 1713, "source": 208, "target": 125, "value": 0.3, "bi_directional": true}, {"id": 1714, "source": 226, "target": 206, "value": 0.3, "bi_directional": true}, {"id": 1715, "source": 29, "target": 73, "value": 0.3, "bi_directional": true}, {"id": 1716, "source": 29, "target": 130, "value": 0.3, "bi_directional": false}, {"id": 1717, "source": 29, "target": 44, "value": 0.3, "bi_directional": true}, {"id": 1718, "source": 29, "target": 160, "value": 0.3, "bi_directional": true}, {"id": 1719, "source": 29, "target": 172, "value": 0.3, "bi_directional": true}, {"id": 1720, "source": 29, "target": 279, "value": 0.3, "bi_directional": true}, {"id": 1721, "source": 29, "target": 230, "value": 0.3, "bi_directional": true}, {"id": 1722, "source": 29, "target": 141, "value": 0.3, "bi_directional": false}, {"id": 1723, "source": 29, "target": 276, "value": 0.3, "bi_directional": true}, {"id": 1724, "source": 299, "target": 181, "value": 0.3, "bi_directional": true}, {"id": 1725, "source": 299, "target": 135, "value": 0.3, "bi_directional": false}, {"id": 1726, "source": 299, "target": 125, "value": 0.3, "bi_directional": false}, {"id": 1727, "source": 299, "target": 279, "value": 0.3, "bi_directional": true}, {"id": 1728, "source": 299, "target": 170, "value": 0.3, "bi_directional": true}, {"id": 1729, "source": 299, "target": 172, "value": 0.3, "bi_directional": true}, {"id": 1730, "source": 299, "target": 44, "value": 0.3, "bi_directional": true}, {"id": 1731, "source": 299, "target": 223, "value": 0.3, "bi_directional": true}, {"id": 1732, "source": 299, "target": 249, "value": 0.3, "bi_directional": false}, {"id": 1733, "source": 299, "target": 128, "value": 0.3, "bi_directional": false}, {"id": 1734, "source": 299, "target": 11, "value": 0.3, "bi_directional": false}, {"id": 1735, "source": 299, "target": 218, "value": 0.3, "bi_directional": true}, {"id": 1736, "source": 299, "target": 208, "value": 0.3, "bi_directional": false}, {"id": 1737, "source": 299, "target": 183, "value": 0.3, "bi_directional": false}, {"id": 1738, "source": 299, "target": 203, "value": 0.3, "bi_directional": false}, {"id": 1739, "source": 149, "target": 286, "value": 0.3, "bi_directional": false}, {"id": 1740, "source": 149, "target": 196, "value": 0.3, "bi_directional": false}, {"id": 1741, "source": 149, "target": 96, "value": 0.3, "bi_directional": true}, {"id": 1742, "source": 67, "target": 223, "value": 0.3, "bi_directional": true}, {"id": 1743, "source": 67, "target": 90, "value": 0.3, "bi_directional": false}, {"id": 1744, "source": 67, "target": 148, "value": 0.3, "bi_directional": true}, {"id": 1745, "source": 67, "target": 252, "value": 0.3, "bi_directional": true}, {"id": 1746, "source": 67, "target": 135, "value": 0.3, "bi_directional": false}, {"id": 1747, "source": 67, "target": 272, "value": 0.3, "bi_directional": true}, {"id": 1748, "source": 67, "target": 82, "value": 0.3, "bi_directional": true}, {"id": 1749, "source": 67, "target": 111, "value": 0.3, "bi_directional": false}, {"id": 1750, "source": 67, "target": 300, "value": 0.3, "bi_directional": true}, {"id": 1751, "source": 301, "target": 160, "value": 0.3, "bi_directional": false}, {"id": 1752, "source": 301, "target": 29, "value": 0.3, "bi_directional": false}, {"id": 1753, "source": 301, "target": 44, "value": 0.3, "bi_directional": true}, {"id": 1754, "source": 301, "target": 41, "value": 0.3, "bi_directional": false}, {"id": 1755, "source": 301, "target": 303, "value": 0.3, "bi_directional": false}, {"id": 1756, "source": 301, "target": 114, "value": 0.3, "bi_directional": false}, {"id": 1757, "source": 301, "target": 135, "value": 0.3, "bi_directional": false}, {"id": 1758, "source": 44, "target": 170, "value": 0.3, "bi_directional": true}, {"id": 1759, "source": 44, "target": 279, "value": 0.3, "bi_directional": true}, {"id": 1760, "source": 44, "target": 181, "value": 0.3, "bi_directional": true}, {"id": 1761, "source": 44, "target": 285, "value": 0.3, "bi_directional": true}, {"id": 1762, "source": 44, "target": 203, "value": 0.3, "bi_directional": false}, {"id": 1763, "source": 44, "target": 130, "value": 0.3, "bi_directional": false}, {"id": 1764, "source": 44, "target": 208, "value": 0.3, "bi_directional": false}, {"id": 1765, "source": 44, "target": 239, "value": 0.3, "bi_directional": false}, {"id": 1766, "source": 44, "target": 218, "value": 0.3, "bi_directional": true}, {"id": 1767, "source": 44, "target": 236, "value": 0.3, "bi_directional": true}, {"id": 1768, "source": 44, "target": 73, "value": 0.3, "bi_directional": true}, {"id": 1769, "source": 44, "target": 230, "value": 0.3, "bi_directional": true}, {"id": 1770, "source": 44, "target": 223, "value": 0.3, "bi_directional": true}, {"id": 1771, "source": 3, "target": 286, "value": 0.3, "bi_directional": false}, {"id": 1772, "source": 3, "target": 275, "value": 0.3, "bi_directional": false}, {"id": 1773, "source": 18, "target": 236, "value": 0.3, "bi_directional": true}, {"id": 1774, "source": 180, "target": 14, "value": 0.3, "bi_directional": false}, {"id": 1775, "source": 180, "target": 201, "value": 0.3, "bi_directional": false}, {"id": 1776, "source": 180, "target": 238, "value": 0.3, "bi_directional": true}, {"id": 1777, "source": 180, "target": 54, "value": 0.3, "bi_directional": true}, {"id": 1778, "source": 34, "target": 272, "value": 0.3, "bi_directional": true}, {"id": 1779, "source": 34, "target": 252, "value": 0.3, "bi_directional": true}, {"id": 1780, "source": 34, "target": 198, "value": 0.3, "bi_directional": true}, {"id": 1781, "source": 34, "target": 300, "value": 0.3, "bi_directional": true}, {"id": 1782, "source": 34, "target": 82, "value": 0.3, "bi_directional": true}, {"id": 1783, "source": 83, "target": 14, "value": 0.3, "bi_directional": false}, {"id": 1784, "source": 83, "target": 70, "value": 0.3, "bi_directional": false}, {"id": 1785, "source": 238, "target": 242, "value": 0.3, "bi_directional": true}, {"id": 1786, "source": 238, "target": 117, "value": 0.3, "bi_directional": false}, {"id": 1787, "source": 238, "target": 54, "value": 0.3, "bi_directional": true}, {"id": 1788, "source": 238, "target": 46, "value": 0.3, "bi_directional": false}, {"id": 1789, "source": 238, "target": 105, "value": 0.3, "bi_directional": false}, {"id": 1790, "source": 238, "target": 187, "value": 0.3, "bi_directional": true}, {"id": 1791, "source": 238, "target": 201, "value": 0.3, "bi_directional": false}, {"id": 1792, "source": 217, "target": 311, "value": 0.3, "bi_directional": true}, {"id": 1793, "source": 217, "target": 14, "value": 0.3, "bi_directional": false}, {"id": 1794, "source": 168, "target": 285, "value": 0.3, "bi_directional": false}, {"id": 1795, "source": 168, "target": 39, "value": 0.3, "bi_directional": false}, {"id": 1796, "source": 295, "target": 111, "value": 0.3, "bi_directional": false}, {"id": 1797, "source": 295, "target": 104, "value": 0.3, "bi_directional": false}, {"id": 1798, "source": 218, "target": 125, "value": 0.3, "bi_directional": true}, {"id": 1799, "source": 218, "target": 236, "value": 0.3, "bi_directional": true}, {"id": 1800, "source": 218, "target": 79, "value": 0.3, "bi_directional": false}, {"id": 1801, "source": 218, "target": 183, "value": 0.3, "bi_directional": false}, {"id": 1802, "source": 218, "target": 248, "value": 0.3, "bi_directional": false}, {"id": 1803, "source": 218, "target": 209, "value": 0.3, "bi_directional": false}, {"id": 1804, "source": 277, "target": 48, "value": 0.3, "bi_directional": true}, {"id": 1805, "source": 181, "target": 73, "value": 0.3, "bi_directional": true}, {"id": 1806, "source": 181, "target": 172, "value": 0.3, "bi_directional": true}, {"id": 1807, "source": 252, "target": 43, "value": 0.3, "bi_directional": false}, {"id": 1808, "source": 252, "target": 236, "value": 0.3, "bi_directional": false}, {"id": 1809, "source": 252, "target": 6, "value": 0.3, "bi_directional": false}, {"id": 1810, "source": 252, "target": 14, "value": 0.3, "bi_directional": false}, {"id": 1811, "source": 252, "target": 219, "value": 0.3, "bi_directional": true}, {"id": 1812, "source": 252, "target": 28, "value": 0.3, "bi_directional": false}, {"id": 1813, "source": 252, "target": 82, "value": 0.3, "bi_directional": true}, {"id": 1814, "source": 170, "target": 218, "value": 0.3, "bi_directional": false}, {"id": 1815, "source": 170, "target": 135, "value": 0.3, "bi_directional": false}, {"id": 1816, "source": 170, "target": 116, "value": 0.3, "bi_directional": false}, {"id": 1817, "source": 170, "target": 125, "value": 0.3, "bi_directional": false}, {"id": 1818, "source": 170, "target": 41, "value": 0.3, "bi_directional": false}, {"id": 1819, "source": 170, "target": 209, "value": 0.3, "bi_directional": false}, {"id": 1820, "source": 170, "target": 141, "value": 0.3, "bi_directional": false}, {"id": 1821, "source": 281, "target": 286, "value": 0.3, "bi_directional": false}, {"id": 1822, "source": 147, "target": 223, "value": 0.3, "bi_directional": true}, {"id": 1823, "source": 253, "target": 236, "value": 0.3, "bi_directional": true}, {"id": 1824, "source": 272, "target": 54, "value": 0.3, "bi_directional": true}, {"id": 1825, "source": 272, "target": 82, "value": 0.3, "bi_directional": true}, {"id": 1826, "source": 272, "target": 187, "value": 0.3, "bi_directional": true}, {"id": 1827, "source": 300, "target": 82, "value": 0.3, "bi_directional": true}, {"id": 1828, "source": 300, "target": 252, "value": 0.3, "bi_directional": false}, {"id": 1829, "source": 172, "target": 160, "value": 0.3, "bi_directional": true}, {"id": 1830, "source": 172, "target": 73, "value": 0.3, "bi_directional": true}, {"id": 1831, "source": 172, "target": 276, "value": 0.3, "bi_directional": true}, {"id": 1832, "source": 172, "target": 279, "value": 0.3, "bi_directional": false}, {"id": 1833, "source": 172, "target": 230, "value": 0.3, "bi_directional": true}, {"id": 1834, "source": 172, "target": 297, "value": 0.3, "bi_directional": false}, {"id": 1835, "source": 172, "target": 303, "value": 0.3, "bi_directional": false}, {"id": 1836, "source": 223, "target": 39, "value": 0.3, "bi_directional": false}, {"id": 1837, "source": 223, "target": 135, "value": 0.3, "bi_directional": false}, {"id": 1838, "source": 223, "target": 110, "value": 0.3, "bi_directional": false}, {"id": 1839, "source": 223, "target": 177, "value": 0.3, "bi_directional": false}, {"id": 1840, "source": 223, "target": 259, "value": 0.3, "bi_directional": false}, {"id": 1841, "source": 223, "target": 209, "value": 0.3, "bi_directional": false}, {"id": 1842, "source": 223, "target": 251, "value": 0.3, "bi_directional": false}, {"id": 1843, "source": 82, "target": 6, "value": 0.3, "bi_directional": false}, {"id": 1844, "source": 82, "target": 78, "value": 0.3, "bi_directional": false}, {"id": 1845, "source": 82, "target": 105, "value": 0.3, "bi_directional": false}, {"id": 1846, "source": 160, "target": 279, "value": 0.3, "bi_directional": true}, {"id": 1847, "source": 160, "target": 270, "value": 0.3, "bi_directional": false}, {"id": 1848, "source": 160, "target": 44, "value": 0.3, "bi_directional": false}, {"id": 1849, "source": 160, "target": 230, "value": 0.3, "bi_directional": true}, {"id": 1850, "source": 160, "target": 276, "value": 0.3, "bi_directional": true}, {"id": 1851, "source": 279, "target": 111, "value": 0.3, "bi_directional": false}, {"id": 1852, "source": 279, "target": 230, "value": 0.3, "bi_directional": true}, {"id": 1853, "source": 279, "target": 104, "value": 0.3, "bi_directional": false}, {"id": 1854, "source": 279, "target": 128, "value": 0.3, "bi_directional": false}, {"id": 1855, "source": 236, "target": 125, "value": 0.3, "bi_directional": true}, {"id": 1856, "source": 236, "target": 278, "value": 0.3, "bi_directional": false}, {"id": 1857, "source": 236, "target": 89, "value": 0.3, "bi_directional": true}, {"id": 1858, "source": 236, "target": 61, "value": 0.3, "bi_directional": true}, {"id": 1859, "source": 236, "target": 241, "value": 0.3, "bi_directional": false}, {"id": 1860, "source": 236, "target": 309, "value": 0.3, "bi_directional": false}, {"id": 1861, "source": 236, "target": 199, "value": 0.3, "bi_directional": false}, {"id": 1862, "source": 52, "target": 315, "value": 0.3, "bi_directional": false}, {"id": 1863, "source": 52, "target": 183, "value": 0.3, "bi_directional": false}, {"id": 1864, "source": 198, "target": 187, "value": 0.3, "bi_directional": false}, {"id": 1865, "source": 276, "target": 230, "value": 0.3, "bi_directional": true}, {"id": 1866, "source": 276, "target": 279, "value": 0.3, "bi_directional": false}, {"id": 1867, "source": 125, "target": 248, "value": 0.3, "bi_directional": false}, {"id": 1868, "source": 125, "target": 193, "value": 0.3, "bi_directional": false}, {"id": 1869, "source": 125, "target": 44, "value": 0.3, "bi_directional": false}, {"id": 1870, "source": 125, "target": 259, "value": 0.3, "bi_directional": false}, {"id": 1871, "source": 125, "target": 181, "value": 0.3, "bi_directional": false}, {"id": 1872, "source": 125, "target": 315, "value": 0.3, "bi_directional": false}, {"id": 1873, "source": 125, "target": 131, "value": 0.3, "bi_directional": false}, {"id": 1874, "source": 125, "target": 130, "value": 0.3, "bi_directional": false}, {"id": 1875, "source": 125, "target": 79, "value": 0.3, "bi_directional": false}, {"id": 1876, "source": 125, "target": 209, "value": 0.3, "bi_directional": false}, {"id": 1877, "source": 125, "target": 279, "value": 0.3, "bi_directional": false}, {"id": 1878, "source": 125, "target": 41, "value": 0.3, "bi_directional": false}, {"id": 1879, "source": 219, "target": 27, "value": 0.3, "bi_directional": true}, {"id": 1880, "source": 54, "target": 302, "value": 0.3, "bi_directional": false}, {"id": 1881, "source": 54, "target": 157, "value": 0.3, "bi_directional": false}, {"id": 1882, "source": 54, "target": 166, "value": 0.3, "bi_directional": false}, {"id": 1883, "source": 54, "target": 212, "value": 0.3, "bi_directional": false}, {"id": 1884, "source": 54, "target": 187, "value": 0.3, "bi_directional": true}, {"id": 1885, "source": 54, "target": 6, "value": 0.3, "bi_directional": false}, {"id": 1886, "source": 54, "target": 201, "value": 0.3, "bi_directional": false}, {"id": 1887, "source": 54, "target": 188, "value": 0.3, "bi_directional": false}, {"id": 1888, "source": 54, "target": 37, "value": 0.3, "bi_directional": false}, {"id": 1889, "source": 54, "target": 184, "value": 0.3, "bi_directional": false}, {"id": 1890, "source": 54, "target": 46, "value": 0.3, "bi_directional": false}, {"id": 1891, "source": 54, "target": 312, "value": 0.3, "bi_directional": false}, {"id": 1892, "source": 54, "target": 242, "value": 0.3, "bi_directional": false}, {"id": 1893, "source": 54, "target": 310, "value": 0.3, "bi_directional": false}, {"id": 1894, "source": 54, "target": 237, "value": 0.3, "bi_directional": false}, {"id": 1895, "source": 54, "target": 19, "value": 0.3, "bi_directional": false}, {"id": 1896, "source": 103, "target": 110, "value": 0.3, "bi_directional": false}, {"id": 1897, "source": 285, "target": 39, "value": 0.3, "bi_directional": false}, {"id": 1898, "source": 61, "target": 89, "value": 0.3, "bi_directional": false}, {"id": 1899, "source": 61, "target": 241, "value": 0.3, "bi_directional": false}, {"id": 1900, "source": 207, "target": 271, "value": 0.3, "bi_directional": false}, {"id": 1901, "source": 311, "target": 68, "value": 0.3, "bi_directional": false}, {"id": 1902, "source": 220, "target": 208, "value": 0.3, "bi_directional": false}]} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment