GUIDE
- Left-click and drag the background to move the graph
- Left-click and drag the nodes to reorganize
- Left-click a node to view first level connections
- Double left-click a node to navigate to its page
- Double left-click the background to zoom in
- Right-click the background to zoom out
sigma.utils.pkg('sigma.canvas.nodes');
sigma.canvas.nodes.image = (function() {
var _cache = {},
_loading = {},
_callbacks = {};
// Return the renderer itself:
var renderer = function(node, context, settings) {
var args = arguments,
prefix = settings('prefix') || '',
size = node[prefix + 'size'],
color = node.color || settings('defaultNodeColor'),
url = node.url;
if (_cache[url]) {
context.save();
// Draw the clipping disc:
context.beginPath();
context.arc(
node[prefix + 'x'],
node[prefix + 'y'],
node[prefix + 'size'],
0,
Math.PI * 2,
true
);
context.closePath();
context.clip();
// Draw the image
context.drawImage(
_cache[url],
node[prefix + 'x'] - size,
node[prefix + 'y'] - size,
2 * size,
2 * size
);
// Quit the "clipping mode":
context.restore();
// Draw the border:
context.beginPath();
context.arc(
node[prefix + 'x'],
node[prefix + 'y'],
node[prefix + 'size'],
0,
Math.PI * 2,
true
);
context.lineWidth = 1;
context.strokeStyle = node.color || settings('defaultNodeColor');
context.stroke();
} else {
sigma.canvas.nodes.image.cache(url);
sigma.canvas.nodes.def.apply(
sigma.canvas.nodes,
args
);
}
};
// Let's add a public method to cache images, to make it possible to
// preload images before the initial rendering:
renderer.cache = function(url, callback) {
if (callback)
_callbacks[url] = callback;
if (_loading[url])
return;
var img = new Image();
img.onload = function() {
_loading[url] = false;
_cache[url] = img;
if (_callbacks[url]) {
_callbacks[url].call(this, img);
delete _callbacks[url];
}
};
_loading[url] = true;
img.src = url;
};
return renderer;
})();
var i,
s,
o,
offset_left = 0.5,
N = 1,
E = 40,
C = 5,
d = 0.5,
cs = [],
g = {
nodes: [],
edges: []
};
if (!sigma.classes.graph.hasMethod('neighbors')){
sigma.classes.graph.addMethod('neighbors', function(nodeId) {
var k,
neighbors = {},
index = this.allNeighborsIndex[nodeId] || {};
for (k in index)
neighbors[k] = this.nodesIndex[k];
return neighbors;
});
}
//adding the central node
g.nodes.push({
id: 159156,
label: 'Advanced Light Microscopy initiative',
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/05/research_pasteur-enadvanced-light-microscopy-initiativefrinitiative-microscopie-optique-innovante-pxl-20230615-095057236.night--150x150.jpg',
x: 0,
y: 0,
size: 30,
color: '#DDDDDD'
});
var x_node = Math.cos(2 * 0 * Math.PI / N) * 2;
var y_node = Math.sin(2 * 0 * Math.PI / N) * 2;
N=3
//check if content already exist
x_site = Math.cos(2 * 0 * Math.PI / N) * 2;
y_site = Math.sin(2 * 0 * Math.PI / N) * 2;
// adding site
g.nodes.push({
id: 2232,
label: 'Nathalie Aulner',
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2015/07/research.pasteur.fr_dsc03316-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/nathalie-aulner/',
x: x_site,
y: y_site,
size: 10,
color: '#DDDDDD'
});
//link to content
g.edges.push({
id: 1591562232,
size: 0.5,
source: 159156,
target: 2232 });
//check if content already exist
x_site = Math.cos(2 * 1 * Math.PI / N) * 2;
y_site = Math.sin(2 * 1 * Math.PI / N) * 2;
// adding site
g.nodes.push({
id: 95285,
label: 'Thomas Gregor',
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2017/09/research_pasteur-gregor_pic2-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/thomas-gregor/',
x: x_site,
y: y_site,
size: 10,
color: '#DDDDDD'
});
//link to content
g.edges.push({
id: 15915695285,
size: 0.5,
source: 159156,
target: 95285 });
//check if content already exist
x_site = Math.cos(2 * 2 * Math.PI / N) * 2;
y_site = Math.sin(2 * 2 * Math.PI / N) * 2;
// adding site
g.nodes.push({
id: 4196,
label: 'Gaël Moneron',
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2015/05/research.pasteur.fr_gael-moneron2-e1442504490400-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/gael-moneron/',
x: x_site,
y: y_site,
size: 10,
color: '#DDDDDD'
});
//link to content
g.edges.push({
id: 1591564196,
size: 0.5,
source: 159156,
target: 4196 });
N=3593
// update positions
x_node = Math.cos(2 * 0 * Math.PI / N) * 10;
y_node = Math.sin(2 * 0 * Math.PI / N) * 10;
// adding node
var x_node = Math.cos(2 * 0 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 0 * Math.PI / N) * 10;
g.nodes.push({
id: 231730,
label: 'MEMBER: Zachariah Pieter SCHUURS',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/zachariah-pieter-schuurs/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156231730,
size: 0.5,
source: 159156,
target: 231730 });
// adding node
var x_node = Math.cos(2 * 1 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1 * Math.PI / N) * 10;
g.nodes.push({
id: 231721,
label: 'MEMBER: Maria Camila Klaiss Luna',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/maria-camila-klaiss-luna/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156231721,
size: 0.5,
source: 159156,
target: 231721 });
// adding node
var x_node = Math.cos(2 * 2 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 2 * Math.PI / N) * 10;
g.nodes.push({
id: 231708,
label: 'MEMBER: Angela García Pelayo',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/angela-garcia-pelayo/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156231708,
size: 0.5,
source: 159156,
target: 231708 });
// adding node
var x_node = Math.cos(2 * 3 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 3 * Math.PI / N) * 10;
g.nodes.push({
id: 231704,
label: 'MEMBER: Sixi Xing',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/10/research_pasteur-ensixi-xing-3.xing-sixi-photo-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/sixi-xing/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156231704,
size: 0.5,
source: 159156,
target: 231704 });
// adding node
var x_node = Math.cos(2 * 4 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 4 * Math.PI / N) * 10;
g.nodes.push({
id: 231685,
label: 'MEMBER: Louis Valognes',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/louis-valognes/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156231685,
size: 0.5,
source: 159156,
target: 231685 });
// adding node
var x_node = Math.cos(2 * 5 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 5 * Math.PI / N) * 10;
g.nodes.push({
id: 231657,
label: 'MEMBER: Samuel Donaire Carpio',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/10/research_pasteur-ensamuel-donaire-carpiofrsamuel-donaire-carpio-photo-samuel-donaire-carpio-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/samuel-donaire-carpio/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156231657,
size: 0.5,
source: 159156,
target: 231657 });
// adding node
var x_node = Math.cos(2 * 6 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 6 * Math.PI / N) * 10;
g.nodes.push({
id: 231653,
label: 'MEMBER: Dana Hawasheen',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/dana-hawasheen/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156231653,
size: 0.5,
source: 159156,
target: 231653 });
// adding node
var x_node = Math.cos(2 * 7 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 7 * Math.PI / N) * 10;
g.nodes.push({
id: 231646,
label: 'MEMBER: Antonio Marino Cerrato',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/antonio-marino-cerrato/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156231646,
size: 0.5,
source: 159156,
target: 231646 });
// adding node
var x_node = Math.cos(2 * 8 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 8 * Math.PI / N) * 10;
g.nodes.push({
id: 231634,
label: 'MEMBER: Debora GOUDIABY',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/231634/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156231634,
size: 0.5,
source: 159156,
target: 231634 });
// adding node
var x_node = Math.cos(2 * 9 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 9 * Math.PI / N) * 10;
g.nodes.push({
id: 231524,
label: 'MEMBER: Benoit BOULEVARD',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/231524/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156231524,
size: 0.5,
source: 159156,
target: 231524 });
// adding node
var x_node = Math.cos(2 * 10 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 10 * Math.PI / N) * 10;
g.nodes.push({
id: 231477,
label: 'MEMBER: Ying Liu',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/ying-liu/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156231477,
size: 0.5,
source: 159156,
target: 231477 });
// adding node
var x_node = Math.cos(2 * 11 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 11 * Math.PI / N) * 10;
g.nodes.push({
id: 231515,
label: 'MEMBER: Sophie Oatley',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/sophie-oatley/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156231515,
size: 0.5,
source: 159156,
target: 231515 });
// adding node
var x_node = Math.cos(2 * 12 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 12 * Math.PI / N) * 10;
g.nodes.push({
id: 231392,
label: 'MEMBER: Agathe Aberlenc',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/agathe-aberlenc/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156231392,
size: 0.5,
source: 159156,
target: 231392 });
// adding node
var x_node = Math.cos(2 * 13 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 13 * Math.PI / N) * 10;
g.nodes.push({
id: 231389,
label: 'MEMBER: Claire Lecestre',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/claire-lecestre/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156231389,
size: 0.5,
source: 159156,
target: 231389 });
// adding node
var x_node = Math.cos(2 * 14 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 14 * Math.PI / N) * 10;
g.nodes.push({
id: 4962,
label: 'MEMBER: Jean-Pierre Vartanian',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/09/research_pasteur-jean-pierre-vartanian-photo-jpv--150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/jean-pierre-vartanian/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 1591564962,
size: 0.5,
source: 159156,
target: 4962 });
// adding node
var x_node = Math.cos(2 * 15 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 15 * Math.PI / N) * 10;
g.nodes.push({
id: 231216,
label: 'MEMBER: Federico Croci',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/federico-croci/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156231216,
size: 0.5,
source: 159156,
target: 231216 });
// adding node
var x_node = Math.cos(2 * 16 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 16 * Math.PI / N) * 10;
g.nodes.push({
id: 230951,
label: 'MEMBER: Javad Najafi',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/09/research_pasteur-enjavad-najafi-1000010571-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/javad-najafi/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156230951,
size: 0.5,
source: 159156,
target: 230951 });
// adding node
var x_node = Math.cos(2 * 17 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 17 * Math.PI / N) * 10;
g.nodes.push({
id: 230940,
label: 'MEMBER: Daniel Manzoni-de-Almeida',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/daniel-manzoni-de-almeida/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156230940,
size: 0.5,
source: 159156,
target: 230940 });
// adding node
var x_node = Math.cos(2 * 18 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 18 * Math.PI / N) * 10;
g.nodes.push({
id: 230889,
label: 'MEMBER: Kosovare Kukleci',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/kosovare-kukleci/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156230889,
size: 0.5,
source: 159156,
target: 230889 });
// adding node
var x_node = Math.cos(2 * 19 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 19 * Math.PI / N) * 10;
g.nodes.push({
id: 230857,
label: 'MEMBER: Clarisse Ganier',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/clarisse-ganier/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156230857,
size: 0.5,
source: 159156,
target: 230857 });
// adding node
var x_node = Math.cos(2 * 20 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 20 * Math.PI / N) * 10;
g.nodes.push({
id: 230850,
label: 'MEMBER: Yasmine Belkaid',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/09/research_pasteur-enyasmine-belkaidfryasmine-belkaid-belkaid-yasmine-0491-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/yasmine-belkaid/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156230850,
size: 0.5,
source: 159156,
target: 230850 });
// adding node
var x_node = Math.cos(2 * 21 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 21 * Math.PI / N) * 10;
g.nodes.push({
id: 230770,
label: 'MEMBER: Zhengrui ZHANG',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/zhengrui-zhang/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156230770,
size: 0.5,
source: 159156,
target: 230770 });
// adding node
var x_node = Math.cos(2 * 22 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 22 * Math.PI / N) * 10;
g.nodes.push({
id: 230762,
label: 'MEMBER: John Dallon',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/09/research_pasteur-enjohn-dallon-john-dallon.pdf1--150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/john-dallon/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156230762,
size: 0.5,
source: 159156,
target: 230762 });
// adding node
var x_node = Math.cos(2 * 23 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 23 * Math.PI / N) * 10;
g.nodes.push({
id: 230726,
label: 'MEMBER: Yoann Cortier',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/11/research_pasteur-yoann-cortier-image-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/yoann-cortier/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156230726,
size: 0.5,
source: 159156,
target: 230726 });
// adding node
var x_node = Math.cos(2 * 24 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 24 * Math.PI / N) * 10;
g.nodes.push({
id: 230684,
label: 'MEMBER: Adrien Bachmeyer',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/09/research_pasteur-20240917-0737132-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/adrien-bachmeyer/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156230684,
size: 0.5,
source: 159156,
target: 230684 });
// adding node
var x_node = Math.cos(2 * 25 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 25 * Math.PI / N) * 10;
g.nodes.push({
id: 230452,
label: 'MEMBER: Thomas Derenne',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/thomas-derenne/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156230452,
size: 0.5,
source: 159156,
target: 230452 });
// adding node
var x_node = Math.cos(2 * 26 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 26 * Math.PI / N) * 10;
g.nodes.push({
id: 230449,
label: 'MEMBER: Paul Haase',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/paul-haase/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156230449,
size: 0.5,
source: 159156,
target: 230449 });
// adding node
var x_node = Math.cos(2 * 27 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 27 * Math.PI / N) * 10;
g.nodes.push({
id: 230435,
label: 'MEMBER: Victoria Chevée',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/09/research_pasteur-envictoria-chevee-victoria-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/victoria-chevee/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156230435,
size: 0.5,
source: 159156,
target: 230435 });
// adding node
var x_node = Math.cos(2 * 28 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 28 * Math.PI / N) * 10;
g.nodes.push({
id: 230391,
label: 'MEMBER: Chloé Frat',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/chloe-frat/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156230391,
size: 0.5,
source: 159156,
target: 230391 });
// adding node
var x_node = Math.cos(2 * 29 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 29 * Math.PI / N) * 10;
g.nodes.push({
id: 230353,
label: 'MEMBER: Aleksi Isomursu',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/09/research_pasteur-enaleksi-isomursu-isomursu-1-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/aleksi-isomursu/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156230353,
size: 0.5,
source: 159156,
target: 230353 });
// adding node
var x_node = Math.cos(2 * 30 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 30 * Math.PI / N) * 10;
g.nodes.push({
id: 230212,
label: 'MEMBER: Alexandre Hervé',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/alexandre-herve/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156230212,
size: 0.5,
source: 159156,
target: 230212 });
// adding node
var x_node = Math.cos(2 * 31 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 31 * Math.PI / N) * 10;
g.nodes.push({
id: 230213,
label: 'MEMBER: Lola Alves',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/lola-alves/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156230213,
size: 0.5,
source: 159156,
target: 230213 });
// adding node
var x_node = Math.cos(2 * 32 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 32 * Math.PI / N) * 10;
g.nodes.push({
id: 230209,
label: 'MEMBER: Quentin Escaille',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/quentin-escaille/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156230209,
size: 0.5,
source: 159156,
target: 230209 });
// adding node
var x_node = Math.cos(2 * 33 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 33 * Math.PI / N) * 10;
g.nodes.push({
id: 230204,
label: 'MEMBER: Jean-Gabriel Lesdema',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/jean-gabriel-lesdema/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156230204,
size: 0.5,
source: 159156,
target: 230204 });
// adding node
var x_node = Math.cos(2 * 34 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 34 * Math.PI / N) * 10;
g.nodes.push({
id: 230197,
label: 'MEMBER: Marius Allombert',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/09/research_pasteur-enmarius-allombertfrmarius-allombert-img-1375-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/marius-allombert/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156230197,
size: 0.5,
source: 159156,
target: 230197 });
// adding node
var x_node = Math.cos(2 * 35 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 35 * Math.PI / N) * 10;
g.nodes.push({
id: 230180,
label: 'MEMBER: Nolan Lacoste',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/nolan-lacoste/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156230180,
size: 0.5,
source: 159156,
target: 230180 });
// adding node
var x_node = Math.cos(2 * 36 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 36 * Math.PI / N) * 10;
g.nodes.push({
id: 230150,
label: 'MEMBER: Robsen Miressa Regasa',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/robsen-miressa-regasa/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156230150,
size: 0.5,
source: 159156,
target: 230150 });
// adding node
var x_node = Math.cos(2 * 37 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 37 * Math.PI / N) * 10;
g.nodes.push({
id: 230145,
label: 'MEMBER: Bahar Asadipour',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/bahar-asadipour/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156230145,
size: 0.5,
source: 159156,
target: 230145 });
// adding node
var x_node = Math.cos(2 * 38 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 38 * Math.PI / N) * 10;
g.nodes.push({
id: 230061,
label: 'MEMBER: Laura Kerschbaumer',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/230061/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156230061,
size: 0.5,
source: 159156,
target: 230061 });
// adding node
var x_node = Math.cos(2 * 39 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 39 * Math.PI / N) * 10;
g.nodes.push({
id: 229996,
label: 'MEMBER: Léa Delmaire',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/09/research_pasteur-enlea-delmairefrlea-delmaire-portrait-lea-delmaire-2-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/lea-delmaire/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156229996,
size: 0.5,
source: 159156,
target: 229996 });
// adding node
var x_node = Math.cos(2 * 40 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 40 * Math.PI / N) * 10;
g.nodes.push({
id: 229993,
label: 'MEMBER: Jules Villa',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/jules-villa/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156229993,
size: 0.5,
source: 159156,
target: 229993 });
// adding node
var x_node = Math.cos(2 * 41 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 41 * Math.PI / N) * 10;
g.nodes.push({
id: 229952,
label: 'MEMBER: Jules Pusnel-Poracchia',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/09/research_pasteur-enjules-pusnel-poracchiafrjules-pusnel-poracchia-photo-jules-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/jules-pusnel-poracchia/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156229952,
size: 0.5,
source: 159156,
target: 229952 });
// adding node
var x_node = Math.cos(2 * 42 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 42 * Math.PI / N) * 10;
g.nodes.push({
id: 229688,
label: 'MEMBER: Sonia Tatiana Murillo Corrales',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/229688/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156229688,
size: 0.5,
source: 159156,
target: 229688 });
// adding node
var x_node = Math.cos(2 * 43 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 43 * Math.PI / N) * 10;
g.nodes.push({
id: 229475,
label: 'MEMBER: Alexandrine Capra',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/alexandrine-capra/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156229475,
size: 0.5,
source: 159156,
target: 229475 });
// adding node
var x_node = Math.cos(2 * 44 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 44 * Math.PI / N) * 10;
g.nodes.push({
id: 229453,
label: 'MEMBER: Solène Ecomard',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/solene-ecomard/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156229453,
size: 0.5,
source: 159156,
target: 229453 });
// adding node
var x_node = Math.cos(2 * 45 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 45 * Math.PI / N) * 10;
g.nodes.push({
id: 229449,
label: 'MEMBER: Camille Sivelle',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/camille-sivelle/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156229449,
size: 0.5,
source: 159156,
target: 229449 });
// adding node
var x_node = Math.cos(2 * 46 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 46 * Math.PI / N) * 10;
g.nodes.push({
id: 229446,
label: 'MEMBER: Nandita Sharma',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/nandita-sharma/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156229446,
size: 0.5,
source: 159156,
target: 229446 });
// adding node
var x_node = Math.cos(2 * 47 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 47 * Math.PI / N) * 10;
g.nodes.push({
id: 229444,
label: 'MEMBER: Nicolas Dufour',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/08/research_pasteur-nicolas-dufour-dufour-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/nicolas-dufour/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156229444,
size: 0.5,
source: 159156,
target: 229444 });
// adding node
var x_node = Math.cos(2 * 48 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 48 * Math.PI / N) * 10;
g.nodes.push({
id: 229422,
label: 'MEMBER: Eleonore Bouchereau',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/08/research_pasteur-eneleonore-bouchereaufreleonore-bouchereau-research-pasteur-eneleonore-bouchereaufreleonore-bouchereau-screenshot-2024-08-12-at-22.36.03-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/eleonore-bouchereau/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156229422,
size: 0.5,
source: 159156,
target: 229422 });
// adding node
var x_node = Math.cos(2 * 49 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 49 * Math.PI / N) * 10;
g.nodes.push({
id: 229418,
label: 'MEMBER: Astrid Nilsson',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/08/research_pasteur-enastrid-nilssonfrastrid-nilson-photo-moi-ok-cropped-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/astrid-nilsson/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156229418,
size: 0.5,
source: 159156,
target: 229418 });
// adding node
var x_node = Math.cos(2 * 50 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 50 * Math.PI / N) * 10;
g.nodes.push({
id: 229275,
label: 'MEMBER: Augusto Mantilla Ayala',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/augusto-mantilla-ayala/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156229275,
size: 0.5,
source: 159156,
target: 229275 });
// adding node
var x_node = Math.cos(2 * 51 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 51 * Math.PI / N) * 10;
g.nodes.push({
id: 229258,
label: 'MEMBER: Marine Hurard',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/marine-hurard/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156229258,
size: 0.5,
source: 159156,
target: 229258 });
// adding node
var x_node = Math.cos(2 * 52 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 52 * Math.PI / N) * 10;
g.nodes.push({
id: 229206,
label: 'MEMBER: Emy Taylor',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/emy-taylor/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156229206,
size: 0.5,
source: 159156,
target: 229206 });
// adding node
var x_node = Math.cos(2 * 53 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 53 * Math.PI / N) * 10;
g.nodes.push({
id: 229109,
label: 'MEMBER: Hanae Chouali',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/07/research_pasteur-enhanae-choualifrhanae-chouali-image-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/hanae-chouali/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156229109,
size: 0.5,
source: 159156,
target: 229109 });
// adding node
var x_node = Math.cos(2 * 54 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 54 * Math.PI / N) * 10;
g.nodes.push({
id: 229106,
label: 'MEMBER: Lucas Chataigner',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/07/research_pasteur-enlucas-chataignerfrlucas-chataigner-cvpicture4-min-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/lucas-chataigner/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156229106,
size: 0.5,
source: 159156,
target: 229106 });
// adding node
var x_node = Math.cos(2 * 55 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 55 * Math.PI / N) * 10;
g.nodes.push({
id: 229097,
label: 'MEMBER: Raphael Malak',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/raphael-malak/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156229097,
size: 0.5,
source: 159156,
target: 229097 });
// adding node
var x_node = Math.cos(2 * 56 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 56 * Math.PI / N) * 10;
g.nodes.push({
id: 228888,
label: 'MEMBER: Valeria Mateo Estrada',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/07/research_pasteur-envaleria-mateo-estradafrvaleria-mateo-estrada-photo-valeria-mateo-estrada2-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/valeria-mateo-estrada/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156228888,
size: 0.5,
source: 159156,
target: 228888 });
// adding node
var x_node = Math.cos(2 * 57 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 57 * Math.PI / N) * 10;
g.nodes.push({
id: 228788,
label: 'MEMBER: Béatrice CORREA',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/beatrice-correa/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156228788,
size: 0.5,
source: 159156,
target: 228788 });
// adding node
var x_node = Math.cos(2 * 58 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 58 * Math.PI / N) * 10;
g.nodes.push({
id: 228650,
label: 'MEMBER: Raphael Fajgeles',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/raphael-fajgeles/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156228650,
size: 0.5,
source: 159156,
target: 228650 });
// adding node
var x_node = Math.cos(2 * 59 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 59 * Math.PI / N) * 10;
g.nodes.push({
id: 228647,
label: 'MEMBER: Katherine Daniela Garro Gamarra',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/katherine-daniela-garro-gamarra/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156228647,
size: 0.5,
source: 159156,
target: 228647 });
// adding node
var x_node = Math.cos(2 * 60 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 60 * Math.PI / N) * 10;
g.nodes.push({
id: 228541,
label: 'MEMBER: Laetitia Camard',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/laetitia-camard/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156228541,
size: 0.5,
source: 159156,
target: 228541 });
// adding node
var x_node = Math.cos(2 * 61 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 61 * Math.PI / N) * 10;
g.nodes.push({
id: 228534,
label: 'MEMBER: Juan Sienes Bailo',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/juan-sienes-bailo/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156228534,
size: 0.5,
source: 159156,
target: 228534 });
// adding node
var x_node = Math.cos(2 * 62 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 62 * Math.PI / N) * 10;
g.nodes.push({
id: 228529,
label: 'MEMBER: Emilie Nguyen',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/emilie-nguyen/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156228529,
size: 0.5,
source: 159156,
target: 228529 });
// adding node
var x_node = Math.cos(2 * 63 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 63 * Math.PI / N) * 10;
g.nodes.push({
id: 228394,
label: 'MEMBER: Adriana Lecourieux',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/adriana-lecourieux/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156228394,
size: 0.5,
source: 159156,
target: 228394 });
// adding node
var x_node = Math.cos(2 * 64 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 64 * Math.PI / N) * 10;
g.nodes.push({
id: 228389,
label: 'MEMBER: Baptiste Arnaud',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/baptiste-arnaud/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156228389,
size: 0.5,
source: 159156,
target: 228389 });
// adding node
var x_node = Math.cos(2 * 65 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 65 * Math.PI / N) * 10;
g.nodes.push({
id: 228385,
label: 'MEMBER: Camille Vaganay',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/camille-vaganay/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156228385,
size: 0.5,
source: 159156,
target: 228385 });
// adding node
var x_node = Math.cos(2 * 66 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 66 * Math.PI / N) * 10;
g.nodes.push({
id: 228285,
label: 'MEMBER: Chloé Douhéret',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/chloe-douheret/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156228285,
size: 0.5,
source: 159156,
target: 228285 });
// adding node
var x_node = Math.cos(2 * 67 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 67 * Math.PI / N) * 10;
g.nodes.push({
id: 228242,
label: 'MEMBER: Hannah Kaminski',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/07/research_pasteur-enhannah-kaminski-hannah-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/hannah-kaminski/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156228242,
size: 0.5,
source: 159156,
target: 228242 });
// adding node
var x_node = Math.cos(2 * 68 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 68 * Math.PI / N) * 10;
g.nodes.push({
id: 228192,
label: 'MEMBER: Emily Webber',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/07/research_pasteur-enemily-webber-emily-website-150x150.png',
page_url: 'https://research.pasteur.fr/en/member/emily-webber/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156228192,
size: 0.5,
source: 159156,
target: 228192 });
// adding node
var x_node = Math.cos(2 * 69 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 69 * Math.PI / N) * 10;
g.nodes.push({
id: 228016,
label: 'MEMBER: Marie Coateval',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/07/research_pasteur-enmarie-coatevalfrmarie-coateval-1616185163551-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/marie-coateval/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156228016,
size: 0.5,
source: 159156,
target: 228016 });
// adding node
var x_node = Math.cos(2 * 70 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 70 * Math.PI / N) * 10;
g.nodes.push({
id: 228006,
label: 'MEMBER: Eddy Simard',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/07/research_pasteur-eneddy-simardfreddy-simard-p1027153-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/eddy-simard/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156228006,
size: 0.5,
source: 159156,
target: 228006 });
// adding node
var x_node = Math.cos(2 * 71 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 71 * Math.PI / N) * 10;
g.nodes.push({
id: 228000,
label: 'MEMBER: Heidy Vera',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/07/research_pasteur-enheidy-verafrheidy-vera-heidyv-photo-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/heidy-vera/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156228000,
size: 0.5,
source: 159156,
target: 228000 });
// adding node
var x_node = Math.cos(2 * 72 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 72 * Math.PI / N) * 10;
g.nodes.push({
id: 227824,
label: 'MEMBER: Paul Cayrou',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/paul-cayrou/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156227824,
size: 0.5,
source: 159156,
target: 227824 });
// adding node
var x_node = Math.cos(2 * 73 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 73 * Math.PI / N) * 10;
g.nodes.push({
id: 227818,
label: 'MEMBER: Françoise Banga',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/francoise-banga/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156227818,
size: 0.5,
source: 159156,
target: 227818 });
// adding node
var x_node = Math.cos(2 * 74 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 74 * Math.PI / N) * 10;
g.nodes.push({
id: 227782,
label: 'MEMBER: Samuel Chenaud',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/samuel-chenaud/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156227782,
size: 0.5,
source: 159156,
target: 227782 });
// adding node
var x_node = Math.cos(2 * 75 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 75 * Math.PI / N) * 10;
g.nodes.push({
id: 227584,
label: 'MEMBER: Anouch KULTCHEYAN',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/06/research_pasteur-kultcheyan-anouch-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/anouch-kultcheyan/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156227584,
size: 0.5,
source: 159156,
target: 227584 });
// adding node
var x_node = Math.cos(2 * 76 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 76 * Math.PI / N) * 10;
g.nodes.push({
id: 227560,
label: 'MEMBER: Charlène Dauriat',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/06/research_pasteur-encharlene-dauriatfrcharlene-dauriat-img-4615-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/charlene-dauriat/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156227560,
size: 0.5,
source: 159156,
target: 227560 });
// adding node
var x_node = Math.cos(2 * 77 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 77 * Math.PI / N) * 10;
g.nodes.push({
id: 227494,
label: 'MEMBER: RESLAN ALAWIYA',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/reslan-alawiya/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156227494,
size: 0.5,
source: 159156,
target: 227494 });
// adding node
var x_node = Math.cos(2 * 78 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 78 * Math.PI / N) * 10;
g.nodes.push({
id: 227450,
label: 'MEMBER: Andrés Cardona',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/andres-cardona/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156227450,
size: 0.5,
source: 159156,
target: 227450 });
// adding node
var x_node = Math.cos(2 * 79 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 79 * Math.PI / N) * 10;
g.nodes.push({
id: 227443,
label: 'MEMBER: Sara Formichetti',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/sara-formichetti/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156227443,
size: 0.5,
source: 159156,
target: 227443 });
// adding node
var x_node = Math.cos(2 * 80 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 80 * Math.PI / N) * 10;
g.nodes.push({
id: 227395,
label: 'MEMBER: Arthur Echard',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/arthur-echard/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156227395,
size: 0.5,
source: 159156,
target: 227395 });
// adding node
var x_node = Math.cos(2 * 81 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 81 * Math.PI / N) * 10;
g.nodes.push({
id: 227353,
label: 'MEMBER: Geraldine Murphy-Galievsky',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/geraldine-murphy-galievsky/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156227353,
size: 0.5,
source: 159156,
target: 227353 });
// adding node
var x_node = Math.cos(2 * 82 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 82 * Math.PI / N) * 10;
g.nodes.push({
id: 227317,
label: 'MEMBER: José Fernando Garcia Rodrigo',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/06/research_pasteur-whatsapp-image-2022-04-17-at-10.41.54-am-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/jose-fernando-garcia-rodrigo/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156227317,
size: 0.5,
source: 159156,
target: 227317 });
// adding node
var x_node = Math.cos(2 * 83 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 83 * Math.PI / N) * 10;
g.nodes.push({
id: 227242,
label: 'MEMBER: Gizem Baydemir',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/06/research_pasteur-engizem-baydemirfrgizem-baydemir-research-pasteur-engizem-baydemirfrgizem-baydemir-gb-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/gizem-baydemir/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156227242,
size: 0.5,
source: 159156,
target: 227242 });
// adding node
var x_node = Math.cos(2 * 84 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 84 * Math.PI / N) * 10;
g.nodes.push({
id: 227239,
label: 'MEMBER: Julie de Oliveira',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/julie-de-oliveira/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156227239,
size: 0.5,
source: 159156,
target: 227239 });
// adding node
var x_node = Math.cos(2 * 85 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 85 * Math.PI / N) * 10;
g.nodes.push({
id: 227228,
label: 'MEMBER: Fatima Elhattab',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/fatima-elhattab/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156227228,
size: 0.5,
source: 159156,
target: 227228 });
// adding node
var x_node = Math.cos(2 * 86 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 86 * Math.PI / N) * 10;
g.nodes.push({
id: 227208,
label: 'MEMBER: Nicolas Vautrin',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/nicolas-vautrin/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156227208,
size: 0.5,
source: 159156,
target: 227208 });
// adding node
var x_node = Math.cos(2 * 87 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 87 * Math.PI / N) * 10;
g.nodes.push({
id: 227168,
label: 'MEMBER: Neile Paumier',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/neile-paumier/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156227168,
size: 0.5,
source: 159156,
target: 227168 });
// adding node
var x_node = Math.cos(2 * 88 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 88 * Math.PI / N) * 10;
g.nodes.push({
id: 227142,
label: 'MEMBER: Hannah Gilliam-Vigh',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/hannah-gilliam-vigh/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156227142,
size: 0.5,
source: 159156,
target: 227142 });
// adding node
var x_node = Math.cos(2 * 89 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 89 * Math.PI / N) * 10;
g.nodes.push({
id: 227136,
label: 'MEMBER: Chloé Robert',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/06/research_pasteur-enchloe-robertfrchloe-robert-img-0865-1-e1719496450892-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/chloe-robert/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156227136,
size: 0.5,
source: 159156,
target: 227136 });
// adding node
var x_node = Math.cos(2 * 90 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 90 * Math.PI / N) * 10;
g.nodes.push({
id: 227133,
label: 'MEMBER: Melissa Kordahi',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/melissa-kordahi/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156227133,
size: 0.5,
source: 159156,
target: 227133 });
// adding node
var x_node = Math.cos(2 * 91 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 91 * Math.PI / N) * 10;
g.nodes.push({
id: 227130,
label: 'MEMBER: Héloïse Rytter',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/06/research_pasteur-enheloise-rytterfrheloise-rytter-img-7668-e1725566476550-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/heloise-rytter/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156227130,
size: 0.5,
source: 159156,
target: 227130 });
// adding node
var x_node = Math.cos(2 * 92 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 92 * Math.PI / N) * 10;
g.nodes.push({
id: 227127,
label: 'MEMBER: Hannah Sturgeon',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/hannah-sturgeon/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156227127,
size: 0.5,
source: 159156,
target: 227127 });
// adding node
var x_node = Math.cos(2 * 93 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 93 * Math.PI / N) * 10;
g.nodes.push({
id: 227124,
label: 'MEMBER: Maeva Duquesnoy',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/06/research_pasteur-enmaeva-duquesnoyfrmaeva-duquesnoy-pic-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/maeva-duquesnoy/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156227124,
size: 0.5,
source: 159156,
target: 227124 });
// adding node
var x_node = Math.cos(2 * 94 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 94 * Math.PI / N) * 10;
g.nodes.push({
id: 227121,
label: 'MEMBER: Clara Delaroque',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/06/research_pasteur-enclara-delaroquefrclara-delaroque-img-8609-grande-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/clara-delaroque/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156227121,
size: 0.5,
source: 159156,
target: 227121 });
// adding node
var x_node = Math.cos(2 * 95 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 95 * Math.PI / N) * 10;
g.nodes.push({
id: 226810,
label: 'MEMBER: Aviva Kornel',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/aviva-kornel/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156226810,
size: 0.5,
source: 159156,
target: 226810 });
// adding node
var x_node = Math.cos(2 * 96 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 96 * Math.PI / N) * 10;
g.nodes.push({
id: 226807,
label: 'MEMBER: Yunzhi Luo',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/06/research_pasteur-enyunzhi-luofryunzhi-luo-dsc05813-e1718357589908-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/yunzhi-luo/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156226807,
size: 0.5,
source: 159156,
target: 226807 });
// adding node
var x_node = Math.cos(2 * 97 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 97 * Math.PI / N) * 10;
g.nodes.push({
id: 226798,
label: 'MEMBER: Anna Skrzatek',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/anna-skrzatek/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156226798,
size: 0.5,
source: 159156,
target: 226798 });
// adding node
var x_node = Math.cos(2 * 98 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 98 * Math.PI / N) * 10;
g.nodes.push({
id: 226795,
label: 'MEMBER: Djésèr Kordon',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/06/research_pasteur-endjeser-kordonfrdjeser-kordon-photo-2024-08-23-13-02-57-1-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/djeser-kordon/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156226795,
size: 0.5,
source: 159156,
target: 226795 });
// adding node
var x_node = Math.cos(2 * 99 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 99 * Math.PI / N) * 10;
g.nodes.push({
id: 226790,
label: 'MEMBER: Olesia Dogonasheva',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/06/research_pasteur-enolesia-dogonashevafrolesia-dogonasheva-aqr-66vz-400x400-1-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/olesia-dogonasheva/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156226790,
size: 0.5,
source: 159156,
target: 226790 });
// adding node
var x_node = Math.cos(2 * 100 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 100 * Math.PI / N) * 10;
g.nodes.push({
id: 226726,
label: 'MEMBER: Anna Audit',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/anna-audit/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156226726,
size: 0.5,
source: 159156,
target: 226726 });
// adding node
var x_node = Math.cos(2 * 101 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 101 * Math.PI / N) * 10;
g.nodes.push({
id: 226723,
label: 'MEMBER: Deborah Philipps',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/06/research_pasteur-endeborah-philippsfrdeborah-philipps-screenshot-20240621-141659-linkedin3-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/deborah-philipps/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156226723,
size: 0.5,
source: 159156,
target: 226723 });
// adding node
var x_node = Math.cos(2 * 102 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 102 * Math.PI / N) * 10;
g.nodes.push({
id: 226585,
label: 'MEMBER: Charfeddine Gharsallah',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/226585/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156226585,
size: 0.5,
source: 159156,
target: 226585 });
// adding node
var x_node = Math.cos(2 * 103 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 103 * Math.PI / N) * 10;
g.nodes.push({
id: 226519,
label: 'MEMBER: Estelle Delcourt',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/estelle-delcourt/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156226519,
size: 0.5,
source: 159156,
target: 226519 });
// adding node
var x_node = Math.cos(2 * 104 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 104 * Math.PI / N) * 10;
g.nodes.push({
id: 226501,
label: 'MEMBER: Somoballi GHOSHAL',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/06/research_pasteur-ensomoballi-ghoshalfrsomoballi-ghoshal-somoballi2-14.41.26-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/somoballi-ghoshal/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156226501,
size: 0.5,
source: 159156,
target: 226501 });
// adding node
var x_node = Math.cos(2 * 105 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 105 * Math.PI / N) * 10;
g.nodes.push({
id: 226479,
label: 'MEMBER: Romain Sarasin',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/06/research_pasteur-enromain-sarasin-sarasin-romain-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/romain-sarasin/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156226479,
size: 0.5,
source: 159156,
target: 226479 });
// adding node
var x_node = Math.cos(2 * 106 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 106 * Math.PI / N) * 10;
g.nodes.push({
id: 226476,
label: 'MEMBER: Julien Bazile',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/julien-bazile/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156226476,
size: 0.5,
source: 159156,
target: 226476 });
// adding node
var x_node = Math.cos(2 * 107 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 107 * Math.PI / N) * 10;
g.nodes.push({
id: 226468,
label: 'MEMBER: Cassandre Deculty',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/cassandre-deculty/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156226468,
size: 0.5,
source: 159156,
target: 226468 });
// adding node
var x_node = Math.cos(2 * 108 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 108 * Math.PI / N) * 10;
g.nodes.push({
id: 226441,
label: 'MEMBER: Leti Beltran',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/06/research_pasteur-enleti-beltran-img-20240531-wa0004-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/leti-beltran/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156226441,
size: 0.5,
source: 159156,
target: 226441 });
// adding node
var x_node = Math.cos(2 * 109 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 109 * Math.PI / N) * 10;
g.nodes.push({
id: 226357,
label: 'MEMBER: Agathe Neukelmance',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/agathe-neukelmance/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156226357,
size: 0.5,
source: 159156,
target: 226357 });
// adding node
var x_node = Math.cos(2 * 110 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 110 * Math.PI / N) * 10;
g.nodes.push({
id: 226332,
label: 'MEMBER: Catherine Fan',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/catherine-fan/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156226332,
size: 0.5,
source: 159156,
target: 226332 });
// adding node
var x_node = Math.cos(2 * 111 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 111 * Math.PI / N) * 10;
g.nodes.push({
id: 226328,
label: 'MEMBER: Andela Petrovic',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/05/research_pasteur-andela-petrovic-website-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/andela-petrovic/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156226328,
size: 0.5,
source: 159156,
target: 226328 });
// adding node
var x_node = Math.cos(2 * 112 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 112 * Math.PI / N) * 10;
g.nodes.push({
id: 226319,
label: 'MEMBER: Faten Usrof',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/05/research_pasteur-enfaten-usrof-faten-website-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/faten-usrof/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156226319,
size: 0.5,
source: 159156,
target: 226319 });
// adding node
var x_node = Math.cos(2 * 113 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 113 * Math.PI / N) * 10;
g.nodes.push({
id: 226311,
label: 'MEMBER: Garima Virmani',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/05/research_pasteur-engarima-virmani-garima-website-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/garima-virmani/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156226311,
size: 0.5,
source: 159156,
target: 226311 });
// adding node
var x_node = Math.cos(2 * 114 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 114 * Math.PI / N) * 10;
g.nodes.push({
id: 226271,
label: 'MEMBER: Axel Dufour',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/axel-dufour/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156226271,
size: 0.5,
source: 159156,
target: 226271 });
// adding node
var x_node = Math.cos(2 * 115 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 115 * Math.PI / N) * 10;
g.nodes.push({
id: 226264,
label: 'MEMBER: Léna Daniel',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/05/research_pasteur-enlena-danielfrlena-daniel-dscn6032-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/lena-daniel/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156226264,
size: 0.5,
source: 159156,
target: 226264 });
// adding node
var x_node = Math.cos(2 * 116 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 116 * Math.PI / N) * 10;
g.nodes.push({
id: 226240,
label: 'MEMBER: Zachary Yaninek',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/zachary-yaninek/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156226240,
size: 0.5,
source: 159156,
target: 226240 });
// adding node
var x_node = Math.cos(2 * 117 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 117 * Math.PI / N) * 10;
g.nodes.push({
id: 226214,
label: 'MEMBER: Yoshihiro Shibuya',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/yoshihiro-shibuya/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156226214,
size: 0.5,
source: 159156,
target: 226214 });
// adding node
var x_node = Math.cos(2 * 118 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 118 * Math.PI / N) * 10;
g.nodes.push({
id: 226209,
label: 'MEMBER: Gaëtan Benoit',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/gaetan-benoit/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156226209,
size: 0.5,
source: 159156,
target: 226209 });
// adding node
var x_node = Math.cos(2 * 119 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 119 * Math.PI / N) * 10;
g.nodes.push({
id: 226204,
label: 'MEMBER: Timothé Rouzé',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/timothe-rouze/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156226204,
size: 0.5,
source: 159156,
target: 226204 });
// adding node
var x_node = Math.cos(2 * 120 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 120 * Math.PI / N) * 10;
g.nodes.push({
id: 226191,
label: 'MEMBER: Alexandre QUELHAS',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/alexandre-quelhas/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156226191,
size: 0.5,
source: 159156,
target: 226191 });
// adding node
var x_node = Math.cos(2 * 121 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 121 * Math.PI / N) * 10;
g.nodes.push({
id: 226129,
label: 'MEMBER: Mathile Guion',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/mathile-guion/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156226129,
size: 0.5,
source: 159156,
target: 226129 });
// adding node
var x_node = Math.cos(2 * 122 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 122 * Math.PI / N) * 10;
g.nodes.push({
id: 225993,
label: 'MEMBER: Salam Abbara',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/salam-abbara/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156225993,
size: 0.5,
source: 159156,
target: 225993 });
// adding node
var x_node = Math.cos(2 * 123 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 123 * Math.PI / N) * 10;
g.nodes.push({
id: 226077,
label: 'MEMBER: Valentin Duda-Jouan',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/05/research_pasteur-envalentin-duda-jouanfrvalentin-duda-jouan-photo-valentin-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/valentin-duda-jouan/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156226077,
size: 0.5,
source: 159156,
target: 226077 });
// adding node
var x_node = Math.cos(2 * 124 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 124 * Math.PI / N) * 10;
g.nodes.push({
id: 226061,
label: 'MEMBER: Shakilur Rahman',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/05/research_pasteur-enshakilur-rahmanfrshakilur-rahman-image-copy-2-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/shakilur-rahman/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156226061,
size: 0.5,
source: 159156,
target: 226061 });
// adding node
var x_node = Math.cos(2 * 125 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 125 * Math.PI / N) * 10;
g.nodes.push({
id: 225986,
label: 'MEMBER: Ana Oliveira Paiva',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/ana-oliveira-paiva/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156225986,
size: 0.5,
source: 159156,
target: 225986 });
// adding node
var x_node = Math.cos(2 * 126 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 126 * Math.PI / N) * 10;
g.nodes.push({
id: 225857,
label: 'MEMBER: Lea Deltourbe',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/lea-deltourbe/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156225857,
size: 0.5,
source: 159156,
target: 225857 });
// adding node
var x_node = Math.cos(2 * 127 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 127 * Math.PI / N) * 10;
g.nodes.push({
id: 225827,
label: 'MEMBER: Florence Percie du Sert',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/florence-percie-du-sert/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156225827,
size: 0.5,
source: 159156,
target: 225827 });
// adding node
var x_node = Math.cos(2 * 128 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 128 * Math.PI / N) * 10;
g.nodes.push({
id: 225809,
label: 'MEMBER: Vincent SCHNAPKA',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/vincent-schnapka/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156225809,
size: 0.5,
source: 159156,
target: 225809 });
// adding node
var x_node = Math.cos(2 * 129 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 129 * Math.PI / N) * 10;
g.nodes.push({
id: 225791,
label: 'MEMBER: Tatiana Morozova ',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/tatiana-morozova/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156225791,
size: 0.5,
source: 159156,
target: 225791 });
// adding node
var x_node = Math.cos(2 * 130 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 130 * Math.PI / N) * 10;
g.nodes.push({
id: 225767,
label: 'MEMBER: Samiran SEN',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/05/research_pasteur-ensamiran-senfrsamiran-sen-profile-square-1-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/samiran-sen/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156225767,
size: 0.5,
source: 159156,
target: 225767 });
// adding node
var x_node = Math.cos(2 * 131 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 131 * Math.PI / N) * 10;
g.nodes.push({
id: 225740,
label: 'MEMBER: Andrei Pangan',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/05/research_pasteur-enandrei-pangan-andrei-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/andrei-pangan/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156225740,
size: 0.5,
source: 159156,
target: 225740 });
// adding node
var x_node = Math.cos(2 * 132 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 132 * Math.PI / N) * 10;
g.nodes.push({
id: 225682,
label: 'MEMBER: Kelly Burkhead',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/kelly-burkhead/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156225682,
size: 0.5,
source: 159156,
target: 225682 });
// adding node
var x_node = Math.cos(2 * 133 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 133 * Math.PI / N) * 10;
g.nodes.push({
id: 225575,
label: 'MEMBER: Fatemeh Roostaei',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/fatemeh-roostaei/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156225575,
size: 0.5,
source: 159156,
target: 225575 });
// adding node
var x_node = Math.cos(2 * 134 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 134 * Math.PI / N) * 10;
g.nodes.push({
id: 225382,
label: 'MEMBER: Benoit Chassaing',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/04/research_pasteur-enbenoit-chassaingfrbenoit-chassaing-picture-1-copy-3-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/benoit-chassaing/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156225382,
size: 0.5,
source: 159156,
target: 225382 });
// adding node
var x_node = Math.cos(2 * 135 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 135 * Math.PI / N) * 10;
g.nodes.push({
id: 225245,
label: 'MEMBER: Carole Sosthene',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/carole-sosthene/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156225245,
size: 0.5,
source: 159156,
target: 225245 });
// adding node
var x_node = Math.cos(2 * 136 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 136 * Math.PI / N) * 10;
g.nodes.push({
id: 225215,
label: 'MEMBER: Ervan Achirou',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/ervan-achirou/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156225215,
size: 0.5,
source: 159156,
target: 225215 });
// adding node
var x_node = Math.cos(2 * 137 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 137 * Math.PI / N) * 10;
g.nodes.push({
id: 225212,
label: 'MEMBER: Lorenzo Panelatti',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/lorenzo-panelatti/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156225212,
size: 0.5,
source: 159156,
target: 225212 });
// adding node
var x_node = Math.cos(2 * 138 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 138 * Math.PI / N) * 10;
g.nodes.push({
id: 225128,
label: 'MEMBER: Linda Koning',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/linda-koning/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156225128,
size: 0.5,
source: 159156,
target: 225128 });
// adding node
var x_node = Math.cos(2 * 139 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 139 * Math.PI / N) * 10;
g.nodes.push({
id: 225113,
label: 'MEMBER: Camille Pitois',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/225113/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156225113,
size: 0.5,
source: 159156,
target: 225113 });
// adding node
var x_node = Math.cos(2 * 140 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 140 * Math.PI / N) * 10;
g.nodes.push({
id: 225110,
label: 'MEMBER: Tom Lorthios',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/tom-lorthios/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156225110,
size: 0.5,
source: 159156,
target: 225110 });
// adding node
var x_node = Math.cos(2 * 141 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 141 * Math.PI / N) * 10;
g.nodes.push({
id: 225108,
label: 'MEMBER: Paul Vittot',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/225108/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156225108,
size: 0.5,
source: 159156,
target: 225108 });
// adding node
var x_node = Math.cos(2 * 142 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 142 * Math.PI / N) * 10;
g.nodes.push({
id: 225088,
label: 'MEMBER: Carla Gouin',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/carla-gouin/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156225088,
size: 0.5,
source: 159156,
target: 225088 });
// adding node
var x_node = Math.cos(2 * 143 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 143 * Math.PI / N) * 10;
g.nodes.push({
id: 225074,
label: 'MEMBER: Yan BADJI',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/yan-badji/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156225074,
size: 0.5,
source: 159156,
target: 225074 });
// adding node
var x_node = Math.cos(2 * 144 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 144 * Math.PI / N) * 10;
g.nodes.push({
id: 225027,
label: 'MEMBER: Pallabi Bhattacharyya',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/04/research_pasteur-enpallabi-bhattacharyya-pallabi-photo-2024-e1713258076771-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/pallabi-bhattacharyya/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156225027,
size: 0.5,
source: 159156,
target: 225027 });
// adding node
var x_node = Math.cos(2 * 145 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 145 * Math.PI / N) * 10;
g.nodes.push({
id: 225015,
label: 'MEMBER: Louis JUCHORS',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/louis-juchors/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156225015,
size: 0.5,
source: 159156,
target: 225015 });
// adding node
var x_node = Math.cos(2 * 146 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 146 * Math.PI / N) * 10;
g.nodes.push({
id: 225012,
label: 'MEMBER: Laura LIM',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/laura-lim/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156225012,
size: 0.5,
source: 159156,
target: 225012 });
// adding node
var x_node = Math.cos(2 * 147 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 147 * Math.PI / N) * 10;
g.nodes.push({
id: 224998,
label: 'MEMBER: Adrien Thiesson',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/04/research_pasteur-enadrien-thiessonfradrien-thiesson-126076-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/adrien-thiesson/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156224998,
size: 0.5,
source: 159156,
target: 224998 });
// adding node
var x_node = Math.cos(2 * 148 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 148 * Math.PI / N) * 10;
g.nodes.push({
id: 224979,
label: 'MEMBER: Cecilia Capela',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/04/research_pasteur-encecilia-capelafrceciliapires-de-oliveira-capela-02.-photo-ceciliacapela-jpg-min-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/cecilia-capela/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156224979,
size: 0.5,
source: 159156,
target: 224979 });
// adding node
var x_node = Math.cos(2 * 149 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 149 * Math.PI / N) * 10;
g.nodes.push({
id: 224847,
label: 'MEMBER: Sooraj Shivakumar',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/sooraj-shivakumar/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156224847,
size: 0.5,
source: 159156,
target: 224847 });
// adding node
var x_node = Math.cos(2 * 150 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 150 * Math.PI / N) * 10;
g.nodes.push({
id: 224843,
label: 'MEMBER: Vincent Delage',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/vincent-delage/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156224843,
size: 0.5,
source: 159156,
target: 224843 });
// adding node
var x_node = Math.cos(2 * 151 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 151 * Math.PI / N) * 10;
g.nodes.push({
id: 224783,
label: 'MEMBER: Tianrui Huang',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/04/research_pasteur-entianrui-huangfrtianrui-huang-img-3590-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/tianrui-huang/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156224783,
size: 0.5,
source: 159156,
target: 224783 });
// adding node
var x_node = Math.cos(2 * 152 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 152 * Math.PI / N) * 10;
g.nodes.push({
id: 224746,
label: 'MEMBER: Sarah Gaubi',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/04/research_pasteur-ensarah-gaubifrsarah-gaubi-carte-didentite-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/sarah-gaubi/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156224746,
size: 0.5,
source: 159156,
target: 224746 });
// adding node
var x_node = Math.cos(2 * 153 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 153 * Math.PI / N) * 10;
g.nodes.push({
id: 224734,
label: 'MEMBER: Auréline Deiss',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/aureline-deiss/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156224734,
size: 0.5,
source: 159156,
target: 224734 });
// adding node
var x_node = Math.cos(2 * 154 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 154 * Math.PI / N) * 10;
g.nodes.push({
id: 224714,
label: 'MEMBER: Brittany Baker',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/04/research_pasteur-enbrittany-baker-img-3840-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/brittany-baker/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156224714,
size: 0.5,
source: 159156,
target: 224714 });
// adding node
var x_node = Math.cos(2 * 155 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 155 * Math.PI / N) * 10;
g.nodes.push({
id: 224674,
label: 'MEMBER: Wesley Cornette',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/224674/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156224674,
size: 0.5,
source: 159156,
target: 224674 });
// adding node
var x_node = Math.cos(2 * 156 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 156 * Math.PI / N) * 10;
g.nodes.push({
id: 221739,
label: 'MEMBER: Jean-Philippe Martinet',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/03/research_pasteur-frjean-philippe-martinet-whatsapp-image-2024-04-04-at-12.56.12-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/jean-philippe-martinet/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156221739,
size: 0.5,
source: 159156,
target: 221739 });
// adding node
var x_node = Math.cos(2 * 157 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 157 * Math.PI / N) * 10;
g.nodes.push({
id: 224418,
label: 'MEMBER: Valentin Tetaud',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/04/research_pasteur-unknown-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/valentin-tetaud/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156224418,
size: 0.5,
source: 159156,
target: 224418 });
// adding node
var x_node = Math.cos(2 * 158 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 158 * Math.PI / N) * 10;
g.nodes.push({
id: 224399,
label: 'MEMBER: Clément Gaultier',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/04/research_pasteur-enclement-gaultierfrclement-gaultier-knowledge-graph-150x150.png',
page_url: 'https://research.pasteur.fr/en/member/clement-gaultier/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156224399,
size: 0.5,
source: 159156,
target: 224399 });
// adding node
var x_node = Math.cos(2 * 159 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 159 * Math.PI / N) * 10;
g.nodes.push({
id: 224322,
label: 'MEMBER: Leandro Battini',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/leandro-battini/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156224322,
size: 0.5,
source: 159156,
target: 224322 });
// adding node
var x_node = Math.cos(2 * 160 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 160 * Math.PI / N) * 10;
g.nodes.push({
id: 224290,
label: 'MEMBER: Marie OURY',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/04/research_pasteur-enmarie-oury-oury-marie-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/marie-oury/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156224290,
size: 0.5,
source: 159156,
target: 224290 });
// adding node
var x_node = Math.cos(2 * 161 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 161 * Math.PI / N) * 10;
g.nodes.push({
id: 223989,
label: 'MEMBER: Victor Yman',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/victor-yman/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156223989,
size: 0.5,
source: 159156,
target: 223989 });
// adding node
var x_node = Math.cos(2 * 162 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 162 * Math.PI / N) * 10;
g.nodes.push({
id: 223982,
label: 'MEMBER: Eliharintsoa Rajaonarimirana',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/eliharintsoa-rajaonarimirana/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156223982,
size: 0.5,
source: 159156,
target: 223982 });
// adding node
var x_node = Math.cos(2 * 163 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 163 * Math.PI / N) * 10;
g.nodes.push({
id: 223955,
label: 'MEMBER: Estee Cramer',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/estee-cramer/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156223955,
size: 0.5,
source: 159156,
target: 223955 });
// adding node
var x_node = Math.cos(2 * 164 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 164 * Math.PI / N) * 10;
g.nodes.push({
id: 223972,
label: 'MEMBER: Fillipe Carmo',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/03/research_pasteur-fillipe-carmo-fillipe-carmo-foto-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/fillipe-rosa-do-carmo/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156223972,
size: 0.5,
source: 159156,
target: 223972 });
// adding node
var x_node = Math.cos(2 * 165 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 165 * Math.PI / N) * 10;
g.nodes.push({
id: 223968,
label: 'MEMBER: Maria Semitekolou',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/03/research_pasteur-enkonstantina-pamboukasfrkonstantina-pambouka-ms-photo-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/maria-semitekolou/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156223968,
size: 0.5,
source: 159156,
target: 223968 });
// adding node
var x_node = Math.cos(2 * 166 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 166 * Math.PI / N) * 10;
g.nodes.push({
id: 223965,
label: 'MEMBER: Natacha Jugniot',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/03/research_pasteur-ennatacha-jugniotfrnatacha-jugniot-n.jugniot1-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/natacha-jugniot/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156223965,
size: 0.5,
source: 159156,
target: 223965 });
// adding node
var x_node = Math.cos(2 * 167 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 167 * Math.PI / N) * 10;
g.nodes.push({
id: 223962,
label: 'MEMBER: Nathan Vaudiau',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/04/research_pasteur-ennathan-vaudiaufrnathan-vaudiau-photo-nathan-vaudiau-bis-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/nathan-vaudiau/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156223962,
size: 0.5,
source: 159156,
target: 223962 });
// adding node
var x_node = Math.cos(2 * 168 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 168 * Math.PI / N) * 10;
g.nodes.push({
id: 223958,
label: 'MEMBER: Matthieu Rastello',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/03/research_pasteur-enmatthieu-rastellofrmatthieu-rastello-research-pasteur-enmatthieu-rastellofrmatthieu-rastello-capture-decran-2024-04-07-a-00.49.00-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/matthieu-rastello/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156223958,
size: 0.5,
source: 159156,
target: 223958 });
// adding node
var x_node = Math.cos(2 * 169 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 169 * Math.PI / N) * 10;
g.nodes.push({
id: 223954,
label: 'MEMBER: Aurélie Semervil',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/03/research_pasteur-enaurelie-semervilfraurelie-semervil-photo-semervil-aurelie-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/aurelie-semervil/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156223954,
size: 0.5,
source: 159156,
target: 223954 });
// adding node
var x_node = Math.cos(2 * 170 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 170 * Math.PI / N) * 10;
g.nodes.push({
id: 223951,
label: 'MEMBER: Jérémie Borneres',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/jeremie-borneres/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156223951,
size: 0.5,
source: 159156,
target: 223951 });
// adding node
var x_node = Math.cos(2 * 171 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 171 * Math.PI / N) * 10;
g.nodes.push({
id: 223940,
label: 'MEMBER: Syrine Bouallegues',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/syrine-bouallegues/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156223940,
size: 0.5,
source: 159156,
target: 223940 });
// adding node
var x_node = Math.cos(2 * 172 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 172 * Math.PI / N) * 10;
g.nodes.push({
id: 223935,
label: 'MEMBER: Louise Gorline',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/03/research_pasteur-enlouise-gorlinefrlouise-gorline-photo-louise-gorline-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/louise-gorline/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156223935,
size: 0.5,
source: 159156,
target: 223935 });
// adding node
var x_node = Math.cos(2 * 173 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 173 * Math.PI / N) * 10;
g.nodes.push({
id: 223899,
label: 'MEMBER: Olivia Gardette',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/03/research_pasteur-enolivia-gardettefrolivia-gardette-olivia-gardette-jpg-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/olivia-gardette/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156223899,
size: 0.5,
source: 159156,
target: 223899 });
// adding node
var x_node = Math.cos(2 * 174 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 174 * Math.PI / N) * 10;
g.nodes.push({
id: 223864,
label: 'MEMBER: Merisa AVDOVIC',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/03/research_pasteur-enmerisa-avedovicfrmerisa-avdovic-meri-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/merisa-avedovic/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156223864,
size: 0.5,
source: 159156,
target: 223864 });
// adding node
var x_node = Math.cos(2 * 175 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 175 * Math.PI / N) * 10;
g.nodes.push({
id: 223665,
label: 'MEMBER: Matthieu Cocagne',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/matthieu-cocagne/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156223665,
size: 0.5,
source: 159156,
target: 223665 });
// adding node
var x_node = Math.cos(2 * 176 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 176 * Math.PI / N) * 10;
g.nodes.push({
id: 223657,
label: 'MEMBER: Orlando SCHILTON',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/orlando-schilton/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156223657,
size: 0.5,
source: 159156,
target: 223657 });
// adding node
var x_node = Math.cos(2 * 177 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 177 * Math.PI / N) * 10;
g.nodes.push({
id: 223617,
label: 'MEMBER: Hippolyte Debarnot',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/hippolyte-debarnot/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156223617,
size: 0.5,
source: 159156,
target: 223617 });
// adding node
var x_node = Math.cos(2 * 178 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 178 * Math.PI / N) * 10;
g.nodes.push({
id: 223614,
label: 'MEMBER: Samuel Lebourgeois',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/samuel-lebouregeois/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156223614,
size: 0.5,
source: 159156,
target: 223614 });
// adding node
var x_node = Math.cos(2 * 179 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 179 * Math.PI / N) * 10;
g.nodes.push({
id: 223611,
label: 'MEMBER: Mehdi Zerriatte',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/mehdi-zerriatte/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156223611,
size: 0.5,
source: 159156,
target: 223611 });
// adding node
var x_node = Math.cos(2 * 180 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 180 * Math.PI / N) * 10;
g.nodes.push({
id: 223605,
label: 'MEMBER: Imad Jari',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/03/research_pasteur-imad-e1711446323274-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/imad-jari/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156223605,
size: 0.5,
source: 159156,
target: 223605 });
// adding node
var x_node = Math.cos(2 * 181 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 181 * Math.PI / N) * 10;
g.nodes.push({
id: 223217,
label: 'MEMBER: Hannah Turton',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/03/research_pasteur-enhannah-turton-turton-hannah-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/hannah-turton/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156223217,
size: 0.5,
source: 159156,
target: 223217 });
// adding node
var x_node = Math.cos(2 * 182 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 182 * Math.PI / N) * 10;
g.nodes.push({
id: 223157,
label: 'MEMBER: Joséphine Schelle',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/03/research_pasteur-josephine-schelle-0058-hd-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/josephine-schelle/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156223157,
size: 0.5,
source: 159156,
target: 223157 });
// adding node
var x_node = Math.cos(2 * 183 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 183 * Math.PI / N) * 10;
g.nodes.push({
id: 222668,
label: 'MEMBER: Romain Girod',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/romain-girod/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156222668,
size: 0.5,
source: 159156,
target: 222668 });
// adding node
var x_node = Math.cos(2 * 184 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 184 * Math.PI / N) * 10;
g.nodes.push({
id: 222254,
label: 'MEMBER: Linh Lamy',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/03/research_pasteur-enlinh-lamy-lamy-linh-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/linh-lamy/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156222254,
size: 0.5,
source: 159156,
target: 222254 });
// adding node
var x_node = Math.cos(2 * 185 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 185 * Math.PI / N) * 10;
g.nodes.push({
id: 222173,
label: 'MEMBER: Andréa Cottignies-Calamarte',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/andrea-cottignies-calamarte/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156222173,
size: 0.5,
source: 159156,
target: 222173 });
// adding node
var x_node = Math.cos(2 * 186 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 186 * Math.PI / N) * 10;
g.nodes.push({
id: 222154,
label: 'MEMBER: Lazare Brézillon-Dubus',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/03/research_pasteur-frlazare-brezillon-dubus-whatsapp-image-2024-03-14-at-14.51.48-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/lazare-brezillon-dubus/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156222154,
size: 0.5,
source: 159156,
target: 222154 });
// adding node
var x_node = Math.cos(2 * 187 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 187 * Math.PI / N) * 10;
g.nodes.push({
id: 222112,
label: 'MEMBER: Chloé Breton-Patient',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/chloe-breton-patient/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156222112,
size: 0.5,
source: 159156,
target: 222112 });
// adding node
var x_node = Math.cos(2 * 188 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 188 * Math.PI / N) * 10;
g.nodes.push({
id: 222104,
label: 'MEMBER: Clément Peyroux',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/clement-peyroux/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156222104,
size: 0.5,
source: 159156,
target: 222104 });
// adding node
var x_node = Math.cos(2 * 189 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 189 * Math.PI / N) * 10;
g.nodes.push({
id: 222102,
label: 'MEMBER: Constance de Maere d’Aertrycke',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/constance-de-maere-daertrycke/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156222102,
size: 0.5,
source: 159156,
target: 222102 });
// adding node
var x_node = Math.cos(2 * 190 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 190 * Math.PI / N) * 10;
g.nodes.push({
id: 222011,
label: 'MEMBER: Laure Darras',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/laure-darras/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156222011,
size: 0.5,
source: 159156,
target: 222011 });
// adding node
var x_node = Math.cos(2 * 191 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 191 * Math.PI / N) * 10;
g.nodes.push({
id: 222005,
label: 'MEMBER: Maëlys Delouis',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/03/research_pasteur-enmaelys-delouisfrmaelys-delouis-delouis-maelys-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/maelys-delouis/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156222005,
size: 0.5,
source: 159156,
target: 222005 });
// adding node
var x_node = Math.cos(2 * 192 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 192 * Math.PI / N) * 10;
g.nodes.push({
id: 221726,
label: 'MEMBER: Kenneth Vernick',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/03/research_pasteur-frkenneth-vernick-research.pasteur.fr-kenneth-vernick-150x150.webp',
page_url: 'https://research.pasteur.fr/en/member/kenneth-vernick/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156221726,
size: 0.5,
source: 159156,
target: 221726 });
// adding node
var x_node = Math.cos(2 * 193 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 193 * Math.PI / N) * 10;
g.nodes.push({
id: 221735,
label: 'MEMBER: Nicolas Pocquet',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/03/research_pasteur-frannubis-vega-rua-nicolas-pocquet-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/nicolas-pocquet/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156221735,
size: 0.5,
source: 159156,
target: 221735 });
// adding node
var x_node = Math.cos(2 * 194 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 194 * Math.PI / N) * 10;
g.nodes.push({
id: 221732,
label: 'MEMBER: Jean-Bernard Duchemin',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/03/research_pasteur-frannubis-vega-rua-pasteur-guyane-02-1-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/jean-bernard-duchemin/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156221732,
size: 0.5,
source: 159156,
target: 221732 });
// adding node
var x_node = Math.cos(2 * 195 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 195 * Math.PI / N) * 10;
g.nodes.push({
id: 221729,
label: 'MEMBER: Anubis Vega Rua',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/03/research_pasteur-frannubis-vega-rua-1678286262528-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/anubis-vega-rua/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156221729,
size: 0.5,
source: 159156,
target: 221729 });
// adding node
var x_node = Math.cos(2 * 196 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 196 * Math.PI / N) * 10;
g.nodes.push({
id: 221720,
label: 'MEMBER: Emeline Mouasseh',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/emeline-mouasseh/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156221720,
size: 0.5,
source: 159156,
target: 221720 });
// adding node
var x_node = Math.cos(2 * 197 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 197 * Math.PI / N) * 10;
g.nodes.push({
id: 221698,
label: 'MEMBER: Eira Donaji Aguirre Partida',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/03/research_pasteur-eneira-donaji-aguirre-partidafreira-donaji-aguirre-partida-img-7292-e1711582016732-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/eira-donaji-aguirre-partida/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156221698,
size: 0.5,
source: 159156,
target: 221698 });
// adding node
var x_node = Math.cos(2 * 198 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 198 * Math.PI / N) * 10;
g.nodes.push({
id: 221684,
label: 'MEMBER: Maxime Barrault',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/03/research_pasteur-maxime-barrault-unknown-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/maxime-barrault/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156221684,
size: 0.5,
source: 159156,
target: 221684 });
// adding node
var x_node = Math.cos(2 * 199 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 199 * Math.PI / N) * 10;
g.nodes.push({
id: 221612,
label: 'MEMBER: Zahra Marouf',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/zahra-marouf/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156221612,
size: 0.5,
source: 159156,
target: 221612 });
// adding node
var x_node = Math.cos(2 * 200 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 200 * Math.PI / N) * 10;
g.nodes.push({
id: 221434,
label: 'MEMBER: Kanphai Wongjarit',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/kanphai-wongjarit/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156221434,
size: 0.5,
source: 159156,
target: 221434 });
// adding node
var x_node = Math.cos(2 * 201 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 201 * Math.PI / N) * 10;
g.nodes.push({
id: 221425,
label: 'MEMBER: Steven Barolin',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/steven-barolin/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156221425,
size: 0.5,
source: 159156,
target: 221425 });
// adding node
var x_node = Math.cos(2 * 202 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 202 * Math.PI / N) * 10;
g.nodes.push({
id: 221419,
label: 'MEMBER: Flavie KOWANDY',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/flavie-kowandy/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156221419,
size: 0.5,
source: 159156,
target: 221419 });
// adding node
var x_node = Math.cos(2 * 203 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 203 * Math.PI / N) * 10;
g.nodes.push({
id: 221365,
label: 'MEMBER: Margaux Schmitt',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/margaux-schmitt/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156221365,
size: 0.5,
source: 159156,
target: 221365 });
// adding node
var x_node = Math.cos(2 * 204 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 204 * Math.PI / N) * 10;
g.nodes.push({
id: 221341,
label: 'MEMBER: Clara Gomez Cruz',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/03/research_pasteur-clara-gomez-cruz-phd-candidate-scaled-1-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/clara-gomez-cruz/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156221341,
size: 0.5,
source: 159156,
target: 221341 });
// adding node
var x_node = Math.cos(2 * 205 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 205 * Math.PI / N) * 10;
g.nodes.push({
id: 221310,
label: 'MEMBER: Fabienne Tzvetkov-Ricard',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/fabienne-tzvetkov-ricard/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156221310,
size: 0.5,
source: 159156,
target: 221310 });
// adding node
var x_node = Math.cos(2 * 206 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 206 * Math.PI / N) * 10;
g.nodes.push({
id: 221240,
label: 'MEMBER: Manon Moreau',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/manon-moreau/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156221240,
size: 0.5,
source: 159156,
target: 221240 });
// adding node
var x_node = Math.cos(2 * 207 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 207 * Math.PI / N) * 10;
g.nodes.push({
id: 221217,
label: 'MEMBER: Amanda Dieuaide',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/amanda-dieuaide/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156221217,
size: 0.5,
source: 159156,
target: 221217 });
// adding node
var x_node = Math.cos(2 * 208 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 208 * Math.PI / N) * 10;
g.nodes.push({
id: 221181,
label: 'MEMBER: Babbitha FENELON',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/babbitha-fenelon/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156221181,
size: 0.5,
source: 159156,
target: 221181 });
// adding node
var x_node = Math.cos(2 * 209 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 209 * Math.PI / N) * 10;
g.nodes.push({
id: 221170,
label: 'MEMBER: Danielle PEREZ BERCOFF',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/07/research_pasteur-foto-2-copie-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/danielle-perez-bercoff/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156221170,
size: 0.5,
source: 159156,
target: 221170 });
// adding node
var x_node = Math.cos(2 * 210 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 210 * Math.PI / N) * 10;
g.nodes.push({
id: 221135,
label: 'MEMBER: Lilian Dorner',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/lilian-dorner/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156221135,
size: 0.5,
source: 159156,
target: 221135 });
// adding node
var x_node = Math.cos(2 * 211 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 211 * Math.PI / N) * 10;
g.nodes.push({
id: 221080,
label: 'MEMBER: Gabriela Boelter',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/02/research_pasteur-engabriela-boelterfrgabriela-boelter-20231002-173101-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/gabriela-boelter/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156221080,
size: 0.5,
source: 159156,
target: 221080 });
// adding node
var x_node = Math.cos(2 * 212 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 212 * Math.PI / N) * 10;
g.nodes.push({
id: 220882,
label: 'MEMBER: Nikolina Semen',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/02/research_pasteur-dscn6320-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/nikolina-semen/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156220882,
size: 0.5,
source: 159156,
target: 220882 });
// adding node
var x_node = Math.cos(2 * 213 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 213 * Math.PI / N) * 10;
g.nodes.push({
id: 220841,
label: 'MEMBER: Angèle Fauvel',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/02/research_pasteur-angelefauvel-picture-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/angele-fauvel/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156220841,
size: 0.5,
source: 159156,
target: 220841 });
// adding node
var x_node = Math.cos(2 * 214 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 214 * Math.PI / N) * 10;
g.nodes.push({
id: 220837,
label: 'MEMBER: Valentin Le Toullec',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/02/research_pasteur-envalentin-le-toullec-valentin-letoullec-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/valentin-le-toullec/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156220837,
size: 0.5,
source: 159156,
target: 220837 });
// adding node
var x_node = Math.cos(2 * 215 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 215 * Math.PI / N) * 10;
g.nodes.push({
id: 220748,
label: 'MEMBER: Clarice Marty',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/clarice-marty/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156220748,
size: 0.5,
source: 159156,
target: 220748 });
// adding node
var x_node = Math.cos(2 * 216 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 216 * Math.PI / N) * 10;
g.nodes.push({
id: 220523,
label: 'MEMBER: Julie Ovieve',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/02/research_pasteur-enjagannath-jayaraj-julie-lr-round-150x150.png',
page_url: 'https://research.pasteur.fr/en/member/julie-ovieve/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156220523,
size: 0.5,
source: 159156,
target: 220523 });
// adding node
var x_node = Math.cos(2 * 217 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 217 * Math.PI / N) * 10;
g.nodes.push({
id: 220516,
label: 'MEMBER: Jagannath Jayaraj',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/02/research_pasteur-enjagannath-jayaraj-jagan-lr-round-150x150.png',
page_url: 'https://research.pasteur.fr/en/member/jagannath-jayaraj/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156220516,
size: 0.5,
source: 159156,
target: 220516 });
// adding node
var x_node = Math.cos(2 * 218 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 218 * Math.PI / N) * 10;
g.nodes.push({
id: 220417,
label: 'MEMBER: Shana Delfosse',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/shana-delfosse/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156220417,
size: 0.5,
source: 159156,
target: 220417 });
// adding node
var x_node = Math.cos(2 * 219 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 219 * Math.PI / N) * 10;
g.nodes.push({
id: 220212,
label: 'MEMBER: Alexandre Cornille',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/alexandre-cornille/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156220212,
size: 0.5,
source: 159156,
target: 220212 });
// adding node
var x_node = Math.cos(2 * 220 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 220 * Math.PI / N) * 10;
g.nodes.push({
id: 220173,
label: 'MEMBER: Pol López Pérez',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/pol-lopez-perez/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156220173,
size: 0.5,
source: 159156,
target: 220173 });
// adding node
var x_node = Math.cos(2 * 221 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 221 * Math.PI / N) * 10;
g.nodes.push({
id: 220035,
label: 'MEMBER: Zografoula Vagena',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/02/research_pasteur-enzografoula-vagenafrzografoula-vagena-screenshot-2024-08-12-at-22.37.58-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/zografoula-vagena/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156220035,
size: 0.5,
source: 159156,
target: 220035 });
// adding node
var x_node = Math.cos(2 * 222 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 222 * Math.PI / N) * 10;
g.nodes.push({
id: 220019,
label: 'MEMBER: Iwan Quemada',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/02/research_pasteur-eniwan-quemadafriwan-quemada-inria-0474-185-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/iwan-quemada/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156220019,
size: 0.5,
source: 159156,
target: 220019 });
// adding node
var x_node = Math.cos(2 * 223 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 223 * Math.PI / N) * 10;
g.nodes.push({
id: 219983,
label: 'MEMBER: Benoît Rideau',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/02/research_pasteur-frbenoit-rideau-1707489652807-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/benoit-rideau/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156219983,
size: 0.5,
source: 159156,
target: 219983 });
// adding node
var x_node = Math.cos(2 * 224 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 224 * Math.PI / N) * 10;
g.nodes.push({
id: 219977,
label: 'MEMBER: Corentin Mallet',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/02/research_pasteur-encorentin-malletfrcorentin-mallet-img-1302-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/corentin-mallet/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156219977,
size: 0.5,
source: 159156,
target: 219977 });
// adding node
var x_node = Math.cos(2 * 225 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 225 * Math.PI / N) * 10;
g.nodes.push({
id: 219952,
label: 'MEMBER: Clara Delahousse',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/clara-delahousse/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156219952,
size: 0.5,
source: 159156,
target: 219952 });
// adding node
var x_node = Math.cos(2 * 226 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 226 * Math.PI / N) * 10;
g.nodes.push({
id: 219903,
label: 'MEMBER: Marie Ali',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/02/research_pasteur-enmarie-alifrmarie-ali-research-pasteur-enmarie-alifrmarie-ali-img-20240311-160122-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/marie-ali/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156219903,
size: 0.5,
source: 159156,
target: 219903 });
// adding node
var x_node = Math.cos(2 * 227 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 227 * Math.PI / N) * 10;
g.nodes.push({
id: 219871,
label: 'MEMBER: Lucie Leschallier de Lisle',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/lucie-leschallier-de-lisle/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156219871,
size: 0.5,
source: 159156,
target: 219871 });
// adding node
var x_node = Math.cos(2 * 228 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 228 * Math.PI / N) * 10;
g.nodes.push({
id: 219859,
label: 'MEMBER: Lydia Bernaoui',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/02/research_pasteur-frlydia-bernaoui-img-2492-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/lydia-bernaoui/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156219859,
size: 0.5,
source: 159156,
target: 219859 });
// adding node
var x_node = Math.cos(2 * 229 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 229 * Math.PI / N) * 10;
g.nodes.push({
id: 219799,
label: 'MEMBER: Emma Bezot',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/emma-bezot__trashed/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156219799,
size: 0.5,
source: 159156,
target: 219799 });
// adding node
var x_node = Math.cos(2 * 230 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 230 * Math.PI / N) * 10;
g.nodes.push({
id: 219800,
label: 'MEMBER: Sara Carpuso',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/01/research_pasteur-enmarie-saglio-sara-150x150.png',
page_url: 'https://research.pasteur.fr/en/member/sara-carpuso/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156219800,
size: 0.5,
source: 159156,
target: 219800 });
// adding node
var x_node = Math.cos(2 * 231 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 231 * Math.PI / N) * 10;
g.nodes.push({
id: 219784,
label: 'MEMBER: Almira Chervova',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/02/research_pasteur-acpasteurwebsite-1-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/almira-chervova/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156219784,
size: 0.5,
source: 159156,
target: 219784 });
// adding node
var x_node = Math.cos(2 * 232 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 232 * Math.PI / N) * 10;
g.nodes.push({
id: 219591,
label: 'MEMBER: Reginald Akossi',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/02/research_pasteur-enreginald-akossifrreginald-akossi-research-pasteur-enreginald-akossifrreginald-akossi-photo-pinte-of-science-e1707208026716-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/reginald-akossi/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156219591,
size: 0.5,
source: 159156,
target: 219591 });
// adding node
var x_node = Math.cos(2 * 233 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 233 * Math.PI / N) * 10;
g.nodes.push({
id: 219567,
label: 'MEMBER: Laura Cardon',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/laura-cardon/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156219567,
size: 0.5,
source: 159156,
target: 219567 });
// adding node
var x_node = Math.cos(2 * 234 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 234 * Math.PI / N) * 10;
g.nodes.push({
id: 219375,
label: 'MEMBER: Jagan Doreswamy',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/02/research_pasteur-enjagan-doreswamyfrjagan-doreswamy-my-photo-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/jagan-doreswamy/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156219375,
size: 0.5,
source: 159156,
target: 219375 });
// adding node
var x_node = Math.cos(2 * 235 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 235 * Math.PI / N) * 10;
g.nodes.push({
id: 219341,
label: 'MEMBER: Marc Borie-Guichot',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/marc-borie-guichot/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156219341,
size: 0.5,
source: 159156,
target: 219341 });
// adding node
var x_node = Math.cos(2 * 236 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 236 * Math.PI / N) * 10;
g.nodes.push({
id: 219333,
label: 'MEMBER: Ons Dakhlaoui',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/ons-dakhlaoui/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156219333,
size: 0.5,
source: 159156,
target: 219333 });
// adding node
var x_node = Math.cos(2 * 237 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 237 * Math.PI / N) * 10;
g.nodes.push({
id: 219311,
label: 'MEMBER: Palak Agrawal',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/02/research_pasteur-enpalak-agrawalfrpalak-agrawal-8a0805a7-7432-4b62-b09d-3297bd0bf3ab-e1708776255361-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/palak-agrawal/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156219311,
size: 0.5,
source: 159156,
target: 219311 });
// adding node
var x_node = Math.cos(2 * 238 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 238 * Math.PI / N) * 10;
g.nodes.push({
id: 219306,
label: 'MEMBER: Laure Brachet',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/laure-brachet/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156219306,
size: 0.5,
source: 159156,
target: 219306 });
// adding node
var x_node = Math.cos(2 * 239 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 239 * Math.PI / N) * 10;
g.nodes.push({
id: 219281,
label: 'MEMBER: Adrian Salazar Sanchez',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/02/research_pasteur-enadrian-salazar-sanchezfradrian-salazar-sanchez-a.-salazar-sanchez-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/adrian-salazar-sanchez/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156219281,
size: 0.5,
source: 159156,
target: 219281 });
// adding node
var x_node = Math.cos(2 * 240 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 240 * Math.PI / N) * 10;
g.nodes.push({
id: 219265,
label: 'MEMBER: Alexandra Serris',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/alexandra-serris/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156219265,
size: 0.5,
source: 159156,
target: 219265 });
// adding node
var x_node = Math.cos(2 * 241 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 241 * Math.PI / N) * 10;
g.nodes.push({
id: 219258,
label: 'MEMBER: Tamara Matijevic',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/02/research_pasteur-entamara-matijevic-tamara-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/tamara-matijevic/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156219258,
size: 0.5,
source: 159156,
target: 219258 });
// adding node
var x_node = Math.cos(2 * 242 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 242 * Math.PI / N) * 10;
g.nodes.push({
id: 219019,
label: 'MEMBER: Raphaelle Liquard',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/01/research_pasteur-1705656379072-e1705669444211-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/raphaelle-liquard__trashed/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156219019,
size: 0.5,
source: 159156,
target: 219019 });
// adding node
var x_node = Math.cos(2 * 243 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 243 * Math.PI / N) * 10;
g.nodes.push({
id: 218998,
label: 'MEMBER: Élisa MÉRON',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/elisa-meron/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156218998,
size: 0.5,
source: 159156,
target: 218998 });
// adding node
var x_node = Math.cos(2 * 244 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 244 * Math.PI / N) * 10;
g.nodes.push({
id: 218867,
label: 'MEMBER: Célia Herroug',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/celia-herroug/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156218867,
size: 0.5,
source: 159156,
target: 218867 });
// adding node
var x_node = Math.cos(2 * 245 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 245 * Math.PI / N) * 10;
g.nodes.push({
id: 218830,
label: 'MEMBER: Sylvie Ouellette',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/sylvie-ouellette/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156218830,
size: 0.5,
source: 159156,
target: 218830 });
// adding node
var x_node = Math.cos(2 * 246 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 246 * Math.PI / N) * 10;
g.nodes.push({
id: 218052,
label: 'MEMBER: Kia Colleen Ferrell',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/01/research_pasteur-enkia-colleen-ferrell-1000010244-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/kia-colleen-ferrell/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156218052,
size: 0.5,
source: 159156,
target: 218052 });
// adding node
var x_node = Math.cos(2 * 247 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 247 * Math.PI / N) * 10;
g.nodes.push({
id: 218733,
label: 'MEMBER: Marion Salmon-Legagneur',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/01/research_pasteur-enmarion-salmon-legagneurfrmarion-salmon-legagneur-photo-marion-e1706108854182-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/marion-salmon-legagneur/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156218733,
size: 0.5,
source: 159156,
target: 218733 });
// adding node
var x_node = Math.cos(2 * 248 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 248 * Math.PI / N) * 10;
g.nodes.push({
id: 218728,
label: 'MEMBER: Laure Asselin',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/01/research_pasteur-enlaure-asselin-frlaure-asselin-photo-laure-e1706099299461-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/laure-asselin/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156218728,
size: 0.5,
source: 159156,
target: 218728 });
// adding node
var x_node = Math.cos(2 * 249 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 249 * Math.PI / N) * 10;
g.nodes.push({
id: 218720,
label: 'MEMBER: Claudia Monge',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/01/research_pasteur-enclaudia-monge-frclaudia-monge-1706099870067-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/claudia-monge/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156218720,
size: 0.5,
source: 159156,
target: 218720 });
// adding node
var x_node = Math.cos(2 * 250 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 250 * Math.PI / N) * 10;
g.nodes.push({
id: 218702,
label: 'MEMBER: Marie Schmit',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/01/research_pasteur-enmarie-schmitfrmarie-schmit-moi-photo-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/marie-schmit/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156218702,
size: 0.5,
source: 159156,
target: 218702 });
// adding node
var x_node = Math.cos(2 * 251 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 251 * Math.PI / N) * 10;
g.nodes.push({
id: 218693,
label: 'MEMBER: Raphaël Tackx',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/raphael-tackx/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156218693,
size: 0.5,
source: 159156,
target: 218693 });
// adding node
var x_node = Math.cos(2 * 252 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 252 * Math.PI / N) * 10;
g.nodes.push({
id: 218666,
label: 'MEMBER: Sara Lamhene',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/sara-lamhene/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156218666,
size: 0.5,
source: 159156,
target: 218666 });
// adding node
var x_node = Math.cos(2 * 253 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 253 * Math.PI / N) * 10;
g.nodes.push({
id: 218653,
label: 'MEMBER: Carla Siebenkotten ',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/01/research_pasteur-img-20240122-113812-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/carla-siebenkotten/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156218653,
size: 0.5,
source: 159156,
target: 218653 });
// adding node
var x_node = Math.cos(2 * 254 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 254 * Math.PI / N) * 10;
g.nodes.push({
id: 218562,
label: 'MEMBER: Sulayman El Badri',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/01/research_pasteur-ensulayman-el-badri-photo-sulayman-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/sulayman-el-badri/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156218562,
size: 0.5,
source: 159156,
target: 218562 });
// adding node
var x_node = Math.cos(2 * 255 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 255 * Math.PI / N) * 10;
g.nodes.push({
id: 218305,
label: 'MEMBER: Marie Saglio',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/01/research_pasteur-enmarie-saglio-marie-saglio-150x150.png',
page_url: 'https://research.pasteur.fr/en/member/marie-saglio/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156218305,
size: 0.5,
source: 159156,
target: 218305 });
// adding node
var x_node = Math.cos(2 * 256 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 256 * Math.PI / N) * 10;
g.nodes.push({
id: 217913,
label: 'MEMBER: Manon Brunie',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/01/research_pasteur-enmanon-bruniefrmanon-brunie-manon-b-1-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/manon-brunie/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156217913,
size: 0.5,
source: 159156,
target: 217913 });
// adding node
var x_node = Math.cos(2 * 257 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 257 * Math.PI / N) * 10;
g.nodes.push({
id: 217715,
label: 'MEMBER: Etienne Jaussi',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/01/research_pasteur-enetienne-jaussi-research-pasteur-enetienne-jaussi-etienne-jaussi-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/etienne-jaussi/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156217715,
size: 0.5,
source: 159156,
target: 217715 });
// adding node
var x_node = Math.cos(2 * 258 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 258 * Math.PI / N) * 10;
g.nodes.push({
id: 217680,
label: 'MEMBER: Delphine Domecq',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/delphine-domecq/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156217680,
size: 0.5,
source: 159156,
target: 217680 });
// adding node
var x_node = Math.cos(2 * 259 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 259 * Math.PI / N) * 10;
g.nodes.push({
id: 217504,
label: 'MEMBER: Gowthamy Sivakuru',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/01/research_pasteur-engowthamy-sivakuru-sivakuru-gowthamy-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/gowthamy-sivakuru/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156217504,
size: 0.5,
source: 159156,
target: 217504 });
// adding node
var x_node = Math.cos(2 * 260 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 260 * Math.PI / N) * 10;
g.nodes.push({
id: 217496,
label: 'MEMBER: Malak Chhimi',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/01/research_pasteur-enmalak-chhimifrmalak-chhimi-r-e1705402779748-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/malak-chhimi/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156217496,
size: 0.5,
source: 159156,
target: 217496 });
// adding node
var x_node = Math.cos(2 * 261 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 261 * Math.PI / N) * 10;
g.nodes.push({
id: 217478,
label: 'MEMBER: Clémence Mottez',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/clemence-mottez/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156217478,
size: 0.5,
source: 159156,
target: 217478 });
// adding node
var x_node = Math.cos(2 * 262 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 262 * Math.PI / N) * 10;
g.nodes.push({
id: 217476,
label: 'MEMBER: Joseph Josephides',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/01/research_pasteur-enjoseph-josephidesfrjoseph-josephides-joseph-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/joseph-josephides/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156217476,
size: 0.5,
source: 159156,
target: 217476 });
// adding node
var x_node = Math.cos(2 * 263 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 263 * Math.PI / N) * 10;
g.nodes.push({
id: 217471,
label: 'MEMBER: Eric Figueroa Acosta',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/01/research_pasteur-eneric-figueroa-acostafreric-figueroa-acosta-research-pasteur-eneric-figueroa-acostafreric-figueroa-acosta-photo-ig-portrait-email-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/eric-figueroa-acosta/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156217471,
size: 0.5,
source: 159156,
target: 217471 });
// adding node
var x_node = Math.cos(2 * 264 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 264 * Math.PI / N) * 10;
g.nodes.push({
id: 217437,
label: 'MEMBER: Igor Stzepourginski',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/igor-stzepourginski/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156217437,
size: 0.5,
source: 159156,
target: 217437 });
// adding node
var x_node = Math.cos(2 * 265 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 265 * Math.PI / N) * 10;
g.nodes.push({
id: 217429,
label: 'MEMBER: Pauline Larrous',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/pauline-larrous/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156217429,
size: 0.5,
source: 159156,
target: 217429 });
// adding node
var x_node = Math.cos(2 * 266 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 266 * Math.PI / N) * 10;
g.nodes.push({
id: 217419,
label: 'MEMBER: Theopisti Nikolaou',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/theopisti-nikolaou/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156217419,
size: 0.5,
source: 159156,
target: 217419 });
// adding node
var x_node = Math.cos(2 * 267 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 267 * Math.PI / N) * 10;
g.nodes.push({
id: 217412,
label: 'MEMBER: Sümeyye Özhan',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/01/research_pasteur-ensumeyye-ozhanfrsumeyye-ozhan-sumeyye-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/sumeyye-ozhan/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156217412,
size: 0.5,
source: 159156,
target: 217412 });
// adding node
var x_node = Math.cos(2 * 268 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 268 * Math.PI / N) * 10;
g.nodes.push({
id: 217408,
label: 'MEMBER: Amal Bennouna',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/01/research_pasteur-enamal-bennounaframal-bennouna-research-pasteur-amal-bennouna-img-20201021-132946-150x150-1-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/amal-bennouna/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156217408,
size: 0.5,
source: 159156,
target: 217408 });
// adding node
var x_node = Math.cos(2 * 269 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 269 * Math.PI / N) * 10;
g.nodes.push({
id: 217403,
label: 'MEMBER: Olivia Meffre',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/olivia-meffre/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156217403,
size: 0.5,
source: 159156,
target: 217403 });
// adding node
var x_node = Math.cos(2 * 270 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 270 * Math.PI / N) * 10;
g.nodes.push({
id: 217391,
label: 'MEMBER: Mathurin Fatou',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/mathurin-fatou/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156217391,
size: 0.5,
source: 159156,
target: 217391 });
// adding node
var x_node = Math.cos(2 * 271 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 271 * Math.PI / N) * 10;
g.nodes.push({
id: 217370,
label: 'MEMBER: Emane Sbai',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/01/research_pasteur-enemane-sbai-emane-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/emane-sbai/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156217370,
size: 0.5,
source: 159156,
target: 217370 });
// adding node
var x_node = Math.cos(2 * 272 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 272 * Math.PI / N) * 10;
g.nodes.push({
id: 217277,
label: 'MEMBER: Séverine Samson',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/01/research_pasteur-enseverine-samsonfrseverine-samson-severine-samson-scaled-1-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/severine-samson/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156217277,
size: 0.5,
source: 159156,
target: 217277 });
// adding node
var x_node = Math.cos(2 * 273 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 273 * Math.PI / N) * 10;
g.nodes.push({
id: 217271,
label: 'MEMBER: Lise Hobeika',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/01/research_pasteur-enlise-hobeikafrlise-hobeika-lise-hobeika-642x380-1-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/lise-hobeika/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156217271,
size: 0.5,
source: 159156,
target: 217271 });
// adding node
var x_node = Math.cos(2 * 274 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 274 * Math.PI / N) * 10;
g.nodes.push({
id: 217235,
label: 'MEMBER: Khadija Oukacha',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/01/research_pasteur-oukacha-khadija-3-e1705660891593-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/khadija-oukacha/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156217235,
size: 0.5,
source: 159156,
target: 217235 });
// adding node
var x_node = Math.cos(2 * 275 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 275 * Math.PI / N) * 10;
g.nodes.push({
id: 217206,
label: 'MEMBER: Camille Schneider',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/01/research_pasteur-encamille-schneiderfrcamille-schneider-p1011598-1-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/217206/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156217206,
size: 0.5,
source: 159156,
target: 217206 });
// adding node
var x_node = Math.cos(2 * 276 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 276 * Math.PI / N) * 10;
g.nodes.push({
id: 217202,
label: 'MEMBER: Maria Alexa',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/01/research_pasteur-enmaria-alexafrmaria-alexa-mariaalexa-web-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/maria-alexa/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156217202,
size: 0.5,
source: 159156,
target: 217202 });
// adding node
var x_node = Math.cos(2 * 277 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 277 * Math.PI / N) * 10;
g.nodes.push({
id: 217190,
label: 'MEMBER: Alésia Arifi',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/01/research_pasteur-enalesia-arifi-arifi-alesia-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/alesia-arifi/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156217190,
size: 0.5,
source: 159156,
target: 217190 });
// adding node
var x_node = Math.cos(2 * 278 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 278 * Math.PI / N) * 10;
g.nodes.push({
id: 217160,
label: 'MEMBER: Kelly Charniga',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/01/research_pasteur-enkelly-charnigafrkelly-charniga-research-pasteur-enkelly-charnigafrkelly-charniga-kelly3-1-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/kelly-charniga/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156217160,
size: 0.5,
source: 159156,
target: 217160 });
// adding node
var x_node = Math.cos(2 * 279 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 279 * Math.PI / N) * 10;
g.nodes.push({
id: 217156,
label: 'MEMBER: Francesco Camaglia',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/01/research_pasteur-enfrancesco-camagliafrfrancesco-camaglia-research-pasteur-enfrancesco-camagliafrfrancesco-camaglia-francesco2-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/francesco-camaglia/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156217156,
size: 0.5,
source: 159156,
target: 217156 });
// adding node
var x_node = Math.cos(2 * 280 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 280 * Math.PI / N) * 10;
g.nodes.push({
id: 217145,
label: 'MEMBER: Noé Ochida',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/01/research_pasteur-ennoe-ochidafrnoe-ochida-noe2-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/noe-ochida/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156217145,
size: 0.5,
source: 159156,
target: 217145 });
// adding node
var x_node = Math.cos(2 * 281 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 281 * Math.PI / N) * 10;
g.nodes.push({
id: 217002,
label: 'MEMBER: Justine Escard',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/justine-escard/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156217002,
size: 0.5,
source: 159156,
target: 217002 });
// adding node
var x_node = Math.cos(2 * 282 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 282 * Math.PI / N) * 10;
g.nodes.push({
id: 216990,
label: 'MEMBER: Paula Martinez',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/01/research_pasteur-enpaula-martinezfrpaula-martinez-345af081-71ea-4dca-8fea-37732015caac-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/paula-martinez/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156216990,
size: 0.5,
source: 159156,
target: 216990 });
// adding node
var x_node = Math.cos(2 * 283 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 283 * Math.PI / N) * 10;
g.nodes.push({
id: 216870,
label: 'MEMBER: Sandra Baya',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/sandra-baya/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156216870,
size: 0.5,
source: 159156,
target: 216870 });
// adding node
var x_node = Math.cos(2 * 284 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 284 * Math.PI / N) * 10;
g.nodes.push({
id: 216845,
label: 'MEMBER: Idiatou Djalo',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/01/research_pasteur-enidiatou-djalo-photo-idiatou-djalo-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/idiatou-djalo/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156216845,
size: 0.5,
source: 159156,
target: 216845 });
// adding node
var x_node = Math.cos(2 * 285 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 285 * Math.PI / N) * 10;
g.nodes.push({
id: 216837,
label: 'MEMBER: Guillem Mas Fiol',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/01/research_pasteur-enguillem-mas-fiolfrguillem-mas-fiol-p1240813-3-1-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/guillem-mas-fiol/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156216837,
size: 0.5,
source: 159156,
target: 216837 });
// adding node
var x_node = Math.cos(2 * 286 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 286 * Math.PI / N) * 10;
g.nodes.push({
id: 216820,
label: 'MEMBER: Maria Dalla-Pozza',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/maria-dalla-pozza/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156216820,
size: 0.5,
source: 159156,
target: 216820 });
// adding node
var x_node = Math.cos(2 * 287 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 287 * Math.PI / N) * 10;
g.nodes.push({
id: 216782,
label: 'MEMBER: Virginie Belz',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/01/research_pasteur-envirginie-belzfrvirginie-belz-belz-virginie-0010-hd-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/virginie-belz/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156216782,
size: 0.5,
source: 159156,
target: 216782 });
// adding node
var x_node = Math.cos(2 * 288 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 288 * Math.PI / N) * 10;
g.nodes.push({
id: 216747,
label: 'MEMBER: Anna Cloarec',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/01/research_pasteur-enanna-cloarec-photo-anna-cloarec-nl-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/anna-cloarec/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156216747,
size: 0.5,
source: 159156,
target: 216747 });
// adding node
var x_node = Math.cos(2 * 289 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 289 * Math.PI / N) * 10;
g.nodes.push({
id: 216740,
label: 'MEMBER: Susan Veronica Chamorro Rodriguez',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/01/research_pasteur-ensusan-veronica-chamorro-rodriguezfrsusan-veronica-chamorro-rodriguez-s.-chamorro-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/susan-veronica-chamorro-rodriguez/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156216740,
size: 0.5,
source: 159156,
target: 216740 });
// adding node
var x_node = Math.cos(2 * 290 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 290 * Math.PI / N) * 10;
g.nodes.push({
id: 216734,
label: 'MEMBER: Márton Falus',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/01/research_pasteur-enmarton-falusfrmarton-falus-m.-falus-1-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/marton-falus/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156216734,
size: 0.5,
source: 159156,
target: 216734 });
// adding node
var x_node = Math.cos(2 * 291 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 291 * Math.PI / N) * 10;
g.nodes.push({
id: 216728,
label: 'MEMBER: Irié Carel',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/01/research_pasteur-enirie-carelfririe-carel-i.-carel-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/irie-carel/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156216728,
size: 0.5,
source: 159156,
target: 216728 });
// adding node
var x_node = Math.cos(2 * 292 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 292 * Math.PI / N) * 10;
g.nodes.push({
id: 216686,
label: 'MEMBER: Emeric Sarrou',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/01/research_pasteur-enemeric-sarrou-photo-emeric-scaled-e1704792398379-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/emeric-sarrou/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156216686,
size: 0.5,
source: 159156,
target: 216686 });
// adding node
var x_node = Math.cos(2 * 293 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 293 * Math.PI / N) * 10;
g.nodes.push({
id: 216665,
label: 'MEMBER: Célia Peuziat',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/01/research_pasteur-encelia-peuziatfrcelia-peuziat-img-5381-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/celia-peuziat/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156216665,
size: 0.5,
source: 159156,
target: 216665 });
// adding node
var x_node = Math.cos(2 * 294 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 294 * Math.PI / N) * 10;
g.nodes.push({
id: 216653,
label: 'MEMBER: Maureen Mathilde Cabahug',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/01/research_pasteur-enmaureen-mathilde-cabahugfrmaureen-cabahug-mm-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/maureen-cabahug/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156216653,
size: 0.5,
source: 159156,
target: 216653 });
// adding node
var x_node = Math.cos(2 * 295 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 295 * Math.PI / N) * 10;
g.nodes.push({
id: 216613,
label: 'MEMBER: Emma Thomas',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/01/research_pasteur-enemma-thomas-research-pasteur-enemma-thomas-emma-thomas-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/emma-thomas/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156216613,
size: 0.5,
source: 159156,
target: 216613 });
// adding node
var x_node = Math.cos(2 * 296 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 296 * Math.PI / N) * 10;
g.nodes.push({
id: 216586,
label: 'MEMBER: Theo Teulade',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/theo-teulade/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156216586,
size: 0.5,
source: 159156,
target: 216586 });
// adding node
var x_node = Math.cos(2 * 297 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 297 * Math.PI / N) * 10;
g.nodes.push({
id: 216581,
label: 'MEMBER: Rafael Machado',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/rafael-machado/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156216581,
size: 0.5,
source: 159156,
target: 216581 });
// adding node
var x_node = Math.cos(2 * 298 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 298 * Math.PI / N) * 10;
g.nodes.push({
id: 216575,
label: 'MEMBER: Camille Pelletier',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/01/research_pasteur-encamille-pelletierfrcamille-pelletier-photo-ldap-ifremer-cp-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/camille-pelletier/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156216575,
size: 0.5,
source: 159156,
target: 216575 });
// adding node
var x_node = Math.cos(2 * 299 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 299 * Math.PI / N) * 10;
g.nodes.push({
id: 216519,
label: 'MEMBER: Noa Guzzi',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/01/research_pasteur-guzzi-noa-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/noa-guzzi/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156216519,
size: 0.5,
source: 159156,
target: 216519 });
// adding node
var x_node = Math.cos(2 * 300 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 300 * Math.PI / N) * 10;
g.nodes.push({
id: 216484,
label: 'MEMBER: Ambre Tinard',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/ambre-tinard/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156216484,
size: 0.5,
source: 159156,
target: 216484 });
// adding node
var x_node = Math.cos(2 * 301 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 301 * Math.PI / N) * 10;
g.nodes.push({
id: 216435,
label: 'MEMBER: Paul Alayrac',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/01/research_pasteur-enpaul-alayracfrpaul-alayrac-research-pasteur-enpaul-alayracfrpaul-alayrac-pa-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/paul-alayrac/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156216435,
size: 0.5,
source: 159156,
target: 216435 });
// adding node
var x_node = Math.cos(2 * 302 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 302 * Math.PI / N) * 10;
g.nodes.push({
id: 216402,
label: 'MEMBER: Tannu Priya-Gosain',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/01/research_pasteur-entannu-priya-gosainfrtannu-priya-gosain-photo-id-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/216402/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156216402,
size: 0.5,
source: 159156,
target: 216402 });
// adding node
var x_node = Math.cos(2 * 303 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 303 * Math.PI / N) * 10;
g.nodes.push({
id: 216380,
label: 'MEMBER: Philipp Deist',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/01/research_pasteur-philipp-deist-deist-philipp-face-photo-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/philipp-deist/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156216380,
size: 0.5,
source: 159156,
target: 216380 });
// adding node
var x_node = Math.cos(2 * 304 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 304 * Math.PI / N) * 10;
g.nodes.push({
id: 216376,
label: 'MEMBER: Lucile Kogey-Fuchs',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/lucile-kogey-fuchs/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156216376,
size: 0.5,
source: 159156,
target: 216376 });
// adding node
var x_node = Math.cos(2 * 305 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 305 * Math.PI / N) * 10;
g.nodes.push({
id: 216372,
label: 'MEMBER: Daniele Musiani',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/daniele-musiani/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156216372,
size: 0.5,
source: 159156,
target: 216372 });
// adding node
var x_node = Math.cos(2 * 306 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 306 * Math.PI / N) * 10;
g.nodes.push({
id: 216364,
label: 'MEMBER: Benjamin Leveau',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/01/research_pasteur-enbenjamin-leveaufrbenjamin-leveau-sans-titre-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/benjamin-leveau/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156216364,
size: 0.5,
source: 159156,
target: 216364 });
// adding node
var x_node = Math.cos(2 * 307 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 307 * Math.PI / N) * 10;
g.nodes.push({
id: 216282,
label: 'MEMBER: Laurine Robert-Capraro',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/laurine-robert-capraro/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156216282,
size: 0.5,
source: 159156,
target: 216282 });
// adding node
var x_node = Math.cos(2 * 308 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 308 * Math.PI / N) * 10;
g.nodes.push({
id: 216060,
label: 'MEMBER: Emmanouil Angelidakis',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/emmanouil-angelidakis/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156216060,
size: 0.5,
source: 159156,
target: 216060 });
// adding node
var x_node = Math.cos(2 * 309 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 309 * Math.PI / N) * 10;
g.nodes.push({
id: 216054,
label: 'MEMBER: Murielle Seif El Dahan',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/murielle-seif-el-dahan/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156216054,
size: 0.5,
source: 159156,
target: 216054 });
// adding node
var x_node = Math.cos(2 * 310 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 310 * Math.PI / N) * 10;
g.nodes.push({
id: 216049,
label: 'MEMBER: Marcell Kakonyi',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/02/research_pasteur-magamrol-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/marcell-kakonyi/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156216049,
size: 0.5,
source: 159156,
target: 216049 });
// adding node
var x_node = Math.cos(2 * 311 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 311 * Math.PI / N) * 10;
g.nodes.push({
id: 216044,
label: 'MEMBER: Yaelle Wormser',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/12/research_pasteur-enyaelle-wormserfryaelle-wormser-whatsapp-image-2023-12-30-at-23.52.22-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/yaelle-wormser/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156216044,
size: 0.5,
source: 159156,
target: 216044 });
// adding node
var x_node = Math.cos(2 * 312 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 312 * Math.PI / N) * 10;
g.nodes.push({
id: 215876,
label: 'MEMBER: Raphael Malak',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/01/research_pasteur-photo-identite-malak-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/raphael-malak__trashed/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156215876,
size: 0.5,
source: 159156,
target: 215876 });
// adding node
var x_node = Math.cos(2 * 313 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 313 * Math.PI / N) * 10;
g.nodes.push({
id: 215642,
label: 'MEMBER: Leyre Basurco Gogorcena',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/leyre-basurco-gogorcena/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156215642,
size: 0.5,
source: 159156,
target: 215642 });
// adding node
var x_node = Math.cos(2 * 314 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 314 * Math.PI / N) * 10;
g.nodes.push({
id: 215627,
label: 'MEMBER: Rym Trimeche',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/rym-trimeche/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156215627,
size: 0.5,
source: 159156,
target: 215627 });
// adding node
var x_node = Math.cos(2 * 315 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 315 * Math.PI / N) * 10;
g.nodes.push({
id: 215553,
label: 'MEMBER: Clémence Noury',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/clemence-noury/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156215553,
size: 0.5,
source: 159156,
target: 215553 });
// adding node
var x_node = Math.cos(2 * 316 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 316 * Math.PI / N) * 10;
g.nodes.push({
id: 215445,
label: 'MEMBER: Rebecca Kanaan',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/rebecca-kanaan/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156215445,
size: 0.5,
source: 159156,
target: 215445 });
// adding node
var x_node = Math.cos(2 * 317 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 317 * Math.PI / N) * 10;
g.nodes.push({
id: 215363,
label: 'MEMBER: Keith Egger',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/01/research_pasteur-enkeith-eggerfrkeith-egger-eggerk-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/keith-egger__trashed/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156215363,
size: 0.5,
source: 159156,
target: 215363 });
// adding node
var x_node = Math.cos(2 * 318 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 318 * Math.PI / N) * 10;
g.nodes.push({
id: 214954,
label: 'MEMBER: Marie-Laure Loriquet',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/marie-laure-loriquet/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156214954,
size: 0.5,
source: 159156,
target: 214954 });
// adding node
var x_node = Math.cos(2 * 319 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 319 * Math.PI / N) * 10;
g.nodes.push({
id: 214790,
label: 'MEMBER: Amel Saoudi',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/amel-saoudi/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156214790,
size: 0.5,
source: 159156,
target: 214790 });
// adding node
var x_node = Math.cos(2 * 320 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 320 * Math.PI / N) * 10;
g.nodes.push({
id: 214714,
label: 'MEMBER: Eugenia Soledad Bardossy',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/eugenia-soledad-bardossy/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156214714,
size: 0.5,
source: 159156,
target: 214714 });
// adding node
var x_node = Math.cos(2 * 321 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 321 * Math.PI / N) * 10;
g.nodes.push({
id: 214703,
label: 'MEMBER: Jessica BENSIMON-BENGIO',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/jessica-bensimon-bengio/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156214703,
size: 0.5,
source: 159156,
target: 214703 });
// adding node
var x_node = Math.cos(2 * 322 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 322 * Math.PI / N) * 10;
g.nodes.push({
id: 214701,
label: 'MEMBER: Alexandros Belavilas Trovas',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/alexandros-belavilas-trovas/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156214701,
size: 0.5,
source: 159156,
target: 214701 });
// adding node
var x_node = Math.cos(2 * 323 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 323 * Math.PI / N) * 10;
g.nodes.push({
id: 214697,
label: 'MEMBER: Usman Akhtar',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/usman-akhtar/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156214697,
size: 0.5,
source: 159156,
target: 214697 });
// adding node
var x_node = Math.cos(2 * 324 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 324 * Math.PI / N) * 10;
g.nodes.push({
id: 214684,
label: 'MEMBER: Alice BONGERS',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/alice-bongers/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156214684,
size: 0.5,
source: 159156,
target: 214684 });
// adding node
var x_node = Math.cos(2 * 325 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 325 * Math.PI / N) * 10;
g.nodes.push({
id: 214687,
label: 'MEMBER: Pierre Nicolas Bizat',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/pierre-nicolas-bizat/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156214687,
size: 0.5,
source: 159156,
target: 214687 });
// adding node
var x_node = Math.cos(2 * 326 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 326 * Math.PI / N) * 10;
g.nodes.push({
id: 214574,
label: 'MEMBER: Jingwen Fan',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/12/research_pasteur-jingwen-fan-e1701426620712-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/jingwen-fan/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156214574,
size: 0.5,
source: 159156,
target: 214574 });
// adding node
var x_node = Math.cos(2 * 327 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 327 * Math.PI / N) * 10;
g.nodes.push({
id: 214530,
label: 'MEMBER: Clélia Giraudot',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/12/research_pasteur-enclelia-giraudotfrclelia-giraudot-clelia-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/clelia-giraudot/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156214530,
size: 0.5,
source: 159156,
target: 214530 });
// adding node
var x_node = Math.cos(2 * 328 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 328 * Math.PI / N) * 10;
g.nodes.push({
id: 214309,
label: 'MEMBER: José F. Delgado-Blas',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/11/research_pasteur-enjose-f-delgado-blasfrjose-delgado-blas-photo-jfdb-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/jose-delgado-blas/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156214309,
size: 0.5,
source: 159156,
target: 214309 });
// adding node
var x_node = Math.cos(2 * 329 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 329 * Math.PI / N) * 10;
g.nodes.push({
id: 214168,
label: 'MEMBER: Caroline Manet',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/06/research_pasteur-manet-caroline-9118bis-2-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/caroline-manet/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156214168,
size: 0.5,
source: 159156,
target: 214168 });
// adding node
var x_node = Math.cos(2 * 330 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 330 * Math.PI / N) * 10;
g.nodes.push({
id: 214117,
label: 'MEMBER: Céline Fichot',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/celine-fichot/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156214117,
size: 0.5,
source: 159156,
target: 214117 });
// adding node
var x_node = Math.cos(2 * 331 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 331 * Math.PI / N) * 10;
g.nodes.push({
id: 214103,
label: 'MEMBER: Sandhaya Génisson',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/sandhaya-genisson/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156214103,
size: 0.5,
source: 159156,
target: 214103 });
// adding node
var x_node = Math.cos(2 * 332 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 332 * Math.PI / N) * 10;
g.nodes.push({
id: 214061,
label: 'MEMBER: Laurent Essioux',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/laurent-essioux/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156214061,
size: 0.5,
source: 159156,
target: 214061 });
// adding node
var x_node = Math.cos(2 * 333 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 333 * Math.PI / N) * 10;
g.nodes.push({
id: 214027,
label: 'MEMBER: Tatiana Cetenovic',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/tatiana-cetenovic/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156214027,
size: 0.5,
source: 159156,
target: 214027 });
// adding node
var x_node = Math.cos(2 * 334 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 334 * Math.PI / N) * 10;
g.nodes.push({
id: 213963,
label: 'MEMBER: Aurélie Lotoux',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/aurelie-lotoux/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156213963,
size: 0.5,
source: 159156,
target: 213963 });
// adding node
var x_node = Math.cos(2 * 335 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 335 * Math.PI / N) * 10;
g.nodes.push({
id: 213820,
label: 'MEMBER: Yeganeh Foroughijabbari',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/11/research_pasteur-enyeganeh-foroughijabbari-9e2b5dc6-6905-4df7-8101-a9b7835a1cda-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/yeganeh-foroughijabbari/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156213820,
size: 0.5,
source: 159156,
target: 213820 });
// adding node
var x_node = Math.cos(2 * 336 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 336 * Math.PI / N) * 10;
g.nodes.push({
id: 213678,
label: 'MEMBER: Jesus MARIN MIRET',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/11/research_pasteur-enjesus-marin-miretfrjesus-marin-miret-research-pasteur-enjesus-marin-miretfrjesus-marin-miret-capture-decran-2023-11-21-a-10.11.57-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/jesus-marin-miret/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156213678,
size: 0.5,
source: 159156,
target: 213678 });
// adding node
var x_node = Math.cos(2 * 337 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 337 * Math.PI / N) * 10;
g.nodes.push({
id: 213445,
label: 'MEMBER: Amandine Breton',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/11/research_pasteur-amandine-breton-amandine-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/amandine-breton/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156213445,
size: 0.5,
source: 159156,
target: 213445 });
// adding node
var x_node = Math.cos(2 * 338 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 338 * Math.PI / N) * 10;
g.nodes.push({
id: 213390,
label: 'MEMBER: Laurie Choux',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/11/research_pasteur-ennatalie-chan-choux-laurie-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/laurie-choux/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156213390,
size: 0.5,
source: 159156,
target: 213390 });
// adding node
var x_node = Math.cos(2 * 339 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 339 * Math.PI / N) * 10;
g.nodes.push({
id: 213066,
label: 'MEMBER: Eugenia Pugliese',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/11/research_pasteur-eneugenia-pugliese-eugeniapugliese-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/eugenia-pugliese/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156213066,
size: 0.5,
source: 159156,
target: 213066 });
// adding node
var x_node = Math.cos(2 * 340 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 340 * Math.PI / N) * 10;
g.nodes.push({
id: 213341,
label: 'MEMBER: Julie Klein',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/julie-klein/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156213341,
size: 0.5,
source: 159156,
target: 213341 });
// adding node
var x_node = Math.cos(2 * 341 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 341 * Math.PI / N) * 10;
g.nodes.push({
id: 213296,
label: 'MEMBER: Rafael Martins Miyazawa',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/rafael-martins-miyazawa/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156213296,
size: 0.5,
source: 159156,
target: 213296 });
// adding node
var x_node = Math.cos(2 * 342 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 342 * Math.PI / N) * 10;
g.nodes.push({
id: 212861,
label: 'MEMBER: Anisha Gladston',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/anisha-gladston/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156212861,
size: 0.5,
source: 159156,
target: 212861 });
// adding node
var x_node = Math.cos(2 * 343 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 343 * Math.PI / N) * 10;
g.nodes.push({
id: 213231,
label: 'MEMBER: Patrick Hochedez',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/patrick-hochedez/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156213231,
size: 0.5,
source: 159156,
target: 213231 });
// adding node
var x_node = Math.cos(2 * 344 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 344 * Math.PI / N) * 10;
g.nodes.push({
id: 213207,
label: 'MEMBER: Oula Itani',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/oula-itani/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156213207,
size: 0.5,
source: 159156,
target: 213207 });
// adding node
var x_node = Math.cos(2 * 345 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 345 * Math.PI / N) * 10;
g.nodes.push({
id: 212963,
label: 'MEMBER: Ruxandra Calin',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/11/research_pasteur-enruxandra-calin-photo-ruxandra-calin-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/ruxandra-calin/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156212963,
size: 0.5,
source: 159156,
target: 212963 });
// adding node
var x_node = Math.cos(2 * 346 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 346 * Math.PI / N) * 10;
g.nodes.push({
id: 212940,
label: 'MEMBER: Juan Ignacio GARRO RODRIGUEZ',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/11/research_pasteur-enjuan-ignacio-garro-rodriguezfrjuan-ignacio-garro-rodriguez-img-20220721-wa0008-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/juan-ignacio-garro-rodriguez/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156212940,
size: 0.5,
source: 159156,
target: 212940 });
// adding node
var x_node = Math.cos(2 * 347 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 347 * Math.PI / N) * 10;
g.nodes.push({
id: 212934,
label: 'MEMBER: Krista Barone',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/11/research_pasteur-enkrista-barone-barone-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/krista-barone/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156212934,
size: 0.5,
source: 159156,
target: 212934 });
// adding node
var x_node = Math.cos(2 * 348 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 348 * Math.PI / N) * 10;
g.nodes.push({
id: 212762,
label: 'MEMBER: Elodie Marie',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/elodie-marie/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156212762,
size: 0.5,
source: 159156,
target: 212762 });
// adding node
var x_node = Math.cos(2 * 349 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 349 * Math.PI / N) * 10;
g.nodes.push({
id: 212701,
label: 'MEMBER: Jules Dukers',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/jules-dukers/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156212701,
size: 0.5,
source: 159156,
target: 212701 });
// adding node
var x_node = Math.cos(2 * 350 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 350 * Math.PI / N) * 10;
g.nodes.push({
id: 212696,
label: 'MEMBER: Victor Bordier',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/victor-bordier/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156212696,
size: 0.5,
source: 159156,
target: 212696 });
// adding node
var x_node = Math.cos(2 * 351 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 351 * Math.PI / N) * 10;
g.nodes.push({
id: 212688,
label: 'MEMBER: Kévin Gateau',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/11/research_pasteur-enkevin-gateau-photo-kg-pour-pasteur-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/kevin-gateau/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156212688,
size: 0.5,
source: 159156,
target: 212688 });
// adding node
var x_node = Math.cos(2 * 352 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 352 * Math.PI / N) * 10;
g.nodes.push({
id: 212681,
label: 'MEMBER: Natalie Chan',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/11/research_pasteur-ennatalie-chan-natalie-chan-2-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/natalie-chan/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156212681,
size: 0.5,
source: 159156,
target: 212681 });
// adding node
var x_node = Math.cos(2 * 353 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 353 * Math.PI / N) * 10;
g.nodes.push({
id: 212504,
label: 'MEMBER: Théo Defresne',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/11/research_pasteur-entheo-defresnefrtheo-defresne-photo-identite-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/theo-defresne/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156212504,
size: 0.5,
source: 159156,
target: 212504 });
// adding node
var x_node = Math.cos(2 * 354 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 354 * Math.PI / N) * 10;
g.nodes.push({
id: 212495,
label: 'MEMBER: Kyle Raymond',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/11/research_pasteur-enkyle-raymondfrkyle-raymond-27789-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/kyle-raymond/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156212495,
size: 0.5,
source: 159156,
target: 212495 });
// adding node
var x_node = Math.cos(2 * 355 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 355 * Math.PI / N) * 10;
g.nodes.push({
id: 212478,
label: 'MEMBER: Reina Okada',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/reina-okada/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156212478,
size: 0.5,
source: 159156,
target: 212478 });
// adding node
var x_node = Math.cos(2 * 356 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 356 * Math.PI / N) * 10;
g.nodes.push({
id: 212408,
label: 'MEMBER: Zakaria Mougin',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/zakaria-mougin/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156212408,
size: 0.5,
source: 159156,
target: 212408 });
// adding node
var x_node = Math.cos(2 * 357 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 357 * Math.PI / N) * 10;
g.nodes.push({
id: 212392,
label: 'MEMBER: Julie Laplace',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/11/research_pasteur-enjulie-laplace-julie-laplace-150x150.png',
page_url: 'https://research.pasteur.fr/en/member/julie-laplace/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156212392,
size: 0.5,
source: 159156,
target: 212392 });
// adding node
var x_node = Math.cos(2 * 358 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 358 * Math.PI / N) * 10;
g.nodes.push({
id: 212348,
label: 'MEMBER: Anthony Coleon',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/anthony-coleon/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156212348,
size: 0.5,
source: 159156,
target: 212348 });
// adding node
var x_node = Math.cos(2 * 359 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 359 * Math.PI / N) * 10;
g.nodes.push({
id: 212349,
label: 'MEMBER: Loïck Thibonnier',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/11/research_pasteur-enloick-thibonnierfrloick-thibonnier-image003-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/loick-thibonnier/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156212349,
size: 0.5,
source: 159156,
target: 212349 });
// adding node
var x_node = Math.cos(2 * 360 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 360 * Math.PI / N) * 10;
g.nodes.push({
id: 212274,
label: 'MEMBER: Alicia Velazquez de Castro Esteve',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/10/research_pasteur-enalicia-velazquez-de-castro-estevefralicia-velazquez-de-castro-esteve-alicia-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/alicia-velazquez-de-castro-esteve/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156212274,
size: 0.5,
source: 159156,
target: 212274 });
// adding node
var x_node = Math.cos(2 * 361 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 361 * Math.PI / N) * 10;
g.nodes.push({
id: 212221,
label: 'MEMBER: Élias Kebbache',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/elias-kebbache/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156212221,
size: 0.5,
source: 159156,
target: 212221 });
// adding node
var x_node = Math.cos(2 * 362 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 362 * Math.PI / N) * 10;
g.nodes.push({
id: 212205,
label: 'MEMBER: Uzuki Horo',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/10/research_pasteur-enuzuki-horofruzuki-horo-uzuki-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/uzuki-horo/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156212205,
size: 0.5,
source: 159156,
target: 212205 });
// adding node
var x_node = Math.cos(2 * 363 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 363 * Math.PI / N) * 10;
g.nodes.push({
id: 212199,
label: 'MEMBER: Diede De Haan',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/10/research_pasteur-endiede-de-haanfrdiede-de-haan-diede-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/diede-de-haan/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156212199,
size: 0.5,
source: 159156,
target: 212199 });
// adding node
var x_node = Math.cos(2 * 364 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 364 * Math.PI / N) * 10;
g.nodes.push({
id: 211545,
label: 'MEMBER: Armand Schwarz',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/armand/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156211545,
size: 0.5,
source: 159156,
target: 211545 });
// adding node
var x_node = Math.cos(2 * 365 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 365 * Math.PI / N) * 10;
g.nodes.push({
id: 212095,
label: 'MEMBER: Karim Ourahmoun',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/10/research_pasteur-enkarim-ourahmounfrkarim-ourahmoun-beeddbbf-35f9-476d-bd61-2229b52e61a9-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/karim-ourahmoun/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156212095,
size: 0.5,
source: 159156,
target: 212095 });
// adding node
var x_node = Math.cos(2 * 366 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 366 * Math.PI / N) * 10;
g.nodes.push({
id: 211991,
label: 'MEMBER: Paula Palacios Sanchez',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/10/research_pasteur-enpaula-palacios-sanchez-frpaula-palacios-sanchez-81b3a16e-303b-49f5-960d-1cefc7178992-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/paula-palacios-sanchez/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156211991,
size: 0.5,
source: 159156,
target: 211991 });
// adding node
var x_node = Math.cos(2 * 367 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 367 * Math.PI / N) * 10;
g.nodes.push({
id: 211799,
label: 'MEMBER: Martin Rethoret-Pasty',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/martin-rethoret-pasty/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156211799,
size: 0.5,
source: 159156,
target: 211799 });
// adding node
var x_node = Math.cos(2 * 368 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 368 * Math.PI / N) * 10;
g.nodes.push({
id: 211765,
label: 'MEMBER: Abel Teulé',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/abel-teule/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156211765,
size: 0.5,
source: 159156,
target: 211765 });
// adding node
var x_node = Math.cos(2 * 369 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 369 * Math.PI / N) * 10;
g.nodes.push({
id: 211640,
label: 'MEMBER: Amy Blondeau',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/10/research_pasteur-amy-iii-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/211640/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156211640,
size: 0.5,
source: 159156,
target: 211640 });
// adding node
var x_node = Math.cos(2 * 370 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 370 * Math.PI / N) * 10;
g.nodes.push({
id: 211637,
label: 'MEMBER: Charles Grosjean',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/10/research_pasteur-charles-ii-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/charles-grosjean/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156211637,
size: 0.5,
source: 159156,
target: 211637 });
// adding node
var x_node = Math.cos(2 * 371 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 371 * Math.PI / N) * 10;
g.nodes.push({
id: 211584,
label: 'MEMBER: Valentin Sanhard',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/valentin-sanhard/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156211584,
size: 0.5,
source: 159156,
target: 211584 });
// adding node
var x_node = Math.cos(2 * 372 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 372 * Math.PI / N) * 10;
g.nodes.push({
id: 211579,
label: 'MEMBER: Xiaonan Cai',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/10/research_pasteur-enxiaonan-caifrxiaonan-cai-xiaonan-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/xiaonan-cai/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156211579,
size: 0.5,
source: 159156,
target: 211579 });
// adding node
var x_node = Math.cos(2 * 373 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 373 * Math.PI / N) * 10;
g.nodes.push({
id: 211528,
label: 'MEMBER: Antonina Gonet',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/antonina-gonet/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156211528,
size: 0.5,
source: 159156,
target: 211528 });
// adding node
var x_node = Math.cos(2 * 374 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 374 * Math.PI / N) * 10;
g.nodes.push({
id: 211491,
label: 'MEMBER: Rubia Pedone',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/10/research_pasteur-enrubia-pedonefrrubia-pedone-rubia1-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/rubia-pedone/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156211491,
size: 0.5,
source: 159156,
target: 211491 });
// adding node
var x_node = Math.cos(2 * 375 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 375 * Math.PI / N) * 10;
g.nodes.push({
id: 211486,
label: 'MEMBER: Carly Sprague',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/10/research_pasteur-encarly-spraguefrcarly-sprague-sprague-photo-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/carly-sprague/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156211486,
size: 0.5,
source: 159156,
target: 211486 });
// adding node
var x_node = Math.cos(2 * 376 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 376 * Math.PI / N) * 10;
g.nodes.push({
id: 211463,
label: 'MEMBER: Julia ABAD',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/julia-abad/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156211463,
size: 0.5,
source: 159156,
target: 211463 });
// adding node
var x_node = Math.cos(2 * 377 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 377 * Math.PI / N) * 10;
g.nodes.push({
id: 211446,
label: 'MEMBER: Despoina Mademtzoglou',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/despoina-mademtzoglou/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156211446,
size: 0.5,
source: 159156,
target: 211446 });
// adding node
var x_node = Math.cos(2 * 378 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 378 * Math.PI / N) * 10;
g.nodes.push({
id: 211336,
label: 'MEMBER: Jeremie Kalfon',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/10/research_pasteur-enjeremie-kalfonfrjeremie-kalfon-id-150x150.png',
page_url: 'https://research.pasteur.fr/en/member/jeremie-kalfon/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156211336,
size: 0.5,
source: 159156,
target: 211336 });
// adding node
var x_node = Math.cos(2 * 379 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 379 * Math.PI / N) * 10;
g.nodes.push({
id: 211317,
label: 'MEMBER: Killian Coullin',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/10/research_pasteur-coullin-killian-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/killian-coullin__trashed/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156211317,
size: 0.5,
source: 159156,
target: 211317 });
// adding node
var x_node = Math.cos(2 * 380 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 380 * Math.PI / N) * 10;
g.nodes.push({
id: 211147,
label: 'MEMBER: Valentine Thomas',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/10/research_pasteur-valentine-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/valentine-thomas/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156211147,
size: 0.5,
source: 159156,
target: 211147 });
// adding node
var x_node = Math.cos(2 * 381 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 381 * Math.PI / N) * 10;
g.nodes.push({
id: 211100,
label: 'MEMBER: Aline Grata',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/10/research_pasteur-enaline-grata-image-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/aline-grata/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156211100,
size: 0.5,
source: 159156,
target: 211100 });
// adding node
var x_node = Math.cos(2 * 382 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 382 * Math.PI / N) * 10;
g.nodes.push({
id: 211095,
label: 'MEMBER: Chiara Wulfing',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/chiara-wulfing/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156211095,
size: 0.5,
source: 159156,
target: 211095 });
// adding node
var x_node = Math.cos(2 * 383 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 383 * Math.PI / N) * 10;
g.nodes.push({
id: 211065,
label: 'MEMBER: Erika Schaudy',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/erika-schaudy/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156211065,
size: 0.5,
source: 159156,
target: 211065 });
// adding node
var x_node = Math.cos(2 * 384 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 384 * Math.PI / N) * 10;
g.nodes.push({
id: 211058,
label: 'MEMBER: Weisi He',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/weisi-he/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156211058,
size: 0.5,
source: 159156,
target: 211058 });
// adding node
var x_node = Math.cos(2 * 385 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 385 * Math.PI / N) * 10;
g.nodes.push({
id: 211051,
label: 'MEMBER: Emma Melotti',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/emma-melotti/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156211051,
size: 0.5,
source: 159156,
target: 211051 });
// adding node
var x_node = Math.cos(2 * 386 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 386 * Math.PI / N) * 10;
g.nodes.push({
id: 211044,
label: 'MEMBER: Marie-Claire Jiang',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/marie-claire-jiang/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156211044,
size: 0.5,
source: 159156,
target: 211044 });
// adding node
var x_node = Math.cos(2 * 387 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 387 * Math.PI / N) * 10;
g.nodes.push({
id: 211025,
label: 'MEMBER: Gan Min Meijer',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/10/research_pasteur-min-gan--150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/gan-min-meijer/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156211025,
size: 0.5,
source: 159156,
target: 211025 });
// adding node
var x_node = Math.cos(2 * 388 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 388 * Math.PI / N) * 10;
g.nodes.push({
id: 210926,
label: 'MEMBER: Camille Brighelli',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/camille-brighelli/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156210926,
size: 0.5,
source: 159156,
target: 210926 });
// adding node
var x_node = Math.cos(2 * 389 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 389 * Math.PI / N) * 10;
g.nodes.push({
id: 210921,
label: 'MEMBER: Deniz Uresin',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/deniz-uresin/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156210921,
size: 0.5,
source: 159156,
target: 210921 });
// adding node
var x_node = Math.cos(2 * 390 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 390 * Math.PI / N) * 10;
g.nodes.push({
id: 210866,
label: 'MEMBER: Luis Alejandro Chaves Martinez',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/10/research_pasteur-igem-5demarzo-74-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/luis-alejandro-chaves-martinez/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156210866,
size: 0.5,
source: 159156,
target: 210866 });
// adding node
var x_node = Math.cos(2 * 391 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 391 * Math.PI / N) * 10;
g.nodes.push({
id: 210741,
label: 'MEMBER: Bruno Tello Rubio',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/bruno-tello-rubio/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156210741,
size: 0.5,
source: 159156,
target: 210741 });
// adding node
var x_node = Math.cos(2 * 392 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 392 * Math.PI / N) * 10;
g.nodes.push({
id: 210703,
label: 'MEMBER: Charlene Cornilleau',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/10/research_pasteur-img-4546r-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/charlene-cornilleau/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156210703,
size: 0.5,
source: 159156,
target: 210703 });
// adding node
var x_node = Math.cos(2 * 393 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 393 * Math.PI / N) * 10;
g.nodes.push({
id: 210660,
label: 'MEMBER: Hugo Boutonnet',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/hugo-boutonnet/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156210660,
size: 0.5,
source: 159156,
target: 210660 });
// adding node
var x_node = Math.cos(2 * 394 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 394 * Math.PI / N) * 10;
g.nodes.push({
id: 210617,
label: 'MEMBER: Luca Binda',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/luca-binda/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156210617,
size: 0.5,
source: 159156,
target: 210617 });
// adding node
var x_node = Math.cos(2 * 395 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 395 * Math.PI / N) * 10;
g.nodes.push({
id: 210613,
label: 'MEMBER: Claire Lavergne',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/claire-lavergne/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156210613,
size: 0.5,
source: 159156,
target: 210613 });
// adding node
var x_node = Math.cos(2 * 396 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 396 * Math.PI / N) * 10;
g.nodes.push({
id: 210609,
label: 'MEMBER: Leo Zeitler',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/10/research_pasteur-enleo-zeitlerfrleo-zeitler-zeitler-leo-laurenz-e1727355840281-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/leo-zeitler/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156210609,
size: 0.5,
source: 159156,
target: 210609 });
// adding node
var x_node = Math.cos(2 * 397 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 397 * Math.PI / N) * 10;
g.nodes.push({
id: 210553,
label: 'MEMBER: Yasmine Boubahri',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/yasmine-boubahri/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156210553,
size: 0.5,
source: 159156,
target: 210553 });
// adding node
var x_node = Math.cos(2 * 398 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 398 * Math.PI / N) * 10;
g.nodes.push({
id: 210524,
label: 'MEMBER: Sandra Bobichon',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/sandra-bobichon/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156210524,
size: 0.5,
source: 159156,
target: 210524 });
// adding node
var x_node = Math.cos(2 * 399 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 399 * Math.PI / N) * 10;
g.nodes.push({
id: 210428,
label: 'MEMBER: Selina Mussgnug',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/10/research_pasteur-enselina-mussgnugfrselina-mussgnug-0f7a2833-1-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/selina-mussgnug/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156210428,
size: 0.5,
source: 159156,
target: 210428 });
// adding node
var x_node = Math.cos(2 * 400 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 400 * Math.PI / N) * 10;
g.nodes.push({
id: 210421,
label: 'MEMBER: Alicia Da Silva',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/alicia-da-silva/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156210421,
size: 0.5,
source: 159156,
target: 210421 });
// adding node
var x_node = Math.cos(2 * 401 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 401 * Math.PI / N) * 10;
g.nodes.push({
id: 210417,
label: 'MEMBER: Esteban Lebrun',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/10/research_pasteur-enesteban-lebrunfresteban-lebrun-photo-cv-ronde-150x150.png',
page_url: 'https://research.pasteur.fr/en/member/esteban-lebrun/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156210417,
size: 0.5,
source: 159156,
target: 210417 });
// adding node
var x_node = Math.cos(2 * 402 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 402 * Math.PI / N) * 10;
g.nodes.push({
id: 210362,
label: 'MEMBER: Ramy Elsaid',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/10/research_pasteur-ramy-elsaid-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/ramy-elsaid/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156210362,
size: 0.5,
source: 159156,
target: 210362 });
// adding node
var x_node = Math.cos(2 * 403 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 403 * Math.PI / N) * 10;
g.nodes.push({
id: 210357,
label: 'MEMBER: Marin Biliskov',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/10/research_pasteur-img-20230918-165342-hdr-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/marin-biliskov/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156210357,
size: 0.5,
source: 159156,
target: 210357 });
// adding node
var x_node = Math.cos(2 * 404 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 404 * Math.PI / N) * 10;
g.nodes.push({
id: 210284,
label: 'MEMBER: Pierre Bigeard',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/pierre-bigeard/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156210284,
size: 0.5,
source: 159156,
target: 210284 });
// adding node
var x_node = Math.cos(2 * 405 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 405 * Math.PI / N) * 10;
g.nodes.push({
id: 210254,
label: 'MEMBER: Anaelle Pincon',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/10/research_pasteur-photo-a.pincon-e1696345504914-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/anaelle-pincon/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156210254,
size: 0.5,
source: 159156,
target: 210254 });
// adding node
var x_node = Math.cos(2 * 406 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 406 * Math.PI / N) * 10;
g.nodes.push({
id: 210213,
label: 'MEMBER: Lea Manke',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/10/research_pasteur-img-2418-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/lea-manke/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156210213,
size: 0.5,
source: 159156,
target: 210213 });
// adding node
var x_node = Math.cos(2 * 407 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 407 * Math.PI / N) * 10;
g.nodes.push({
id: 210198,
label: 'MEMBER: Agnès Baud',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/10/research_pasteur-enagnes-baudfragnes-baud-research-pasteur-enagnes-baudfragnes-baud-photopro-biggercut-e1696412883292-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/agnes-baud/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156210198,
size: 0.5,
source: 159156,
target: 210198 });
// adding node
var x_node = Math.cos(2 * 408 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 408 * Math.PI / N) * 10;
g.nodes.push({
id: 210191,
label: 'MEMBER: Kevin Da Silva',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/kevin-da-silva/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156210191,
size: 0.5,
source: 159156,
target: 210191 });
// adding node
var x_node = Math.cos(2 * 409 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 409 * Math.PI / N) * 10;
g.nodes.push({
id: 210187,
label: 'MEMBER: Nathalie Lehmann',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/nathalie-lehmann/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156210187,
size: 0.5,
source: 159156,
target: 210187 });
// adding node
var x_node = Math.cos(2 * 410 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 410 * Math.PI / N) * 10;
g.nodes.push({
id: 210183,
label: 'MEMBER: Daniele Capocefalo',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/10/research_pasteur-endaniele-capocefalofrdaniele-capocefalo-research-pasteur-endaniele-capocefalofrdaniele-capocefalo-screenshot-2023-10-17-at-17.58.54-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/daniele-capocefalo/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156210183,
size: 0.5,
source: 159156,
target: 210183 });
// adding node
var x_node = Math.cos(2 * 411 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 411 * Math.PI / N) * 10;
g.nodes.push({
id: 210127,
label: 'MEMBER: Marouane Libiad',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/10/research_pasteur-enmarouane-libiadfrmarouane-libiad-photo-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/marouane-libiad/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156210127,
size: 0.5,
source: 159156,
target: 210127 });
// adding node
var x_node = Math.cos(2 * 412 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 412 * Math.PI / N) * 10;
g.nodes.push({
id: 210118,
label: 'MEMBER: Iqra Younus',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/iqra-younus/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156210118,
size: 0.5,
source: 159156,
target: 210118 });
// adding node
var x_node = Math.cos(2 * 413 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 413 * Math.PI / N) * 10;
g.nodes.push({
id: 210112,
label: 'MEMBER: Yeliz Durmus',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/yeliz-durmus/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156210112,
size: 0.5,
source: 159156,
target: 210112 });
// adding node
var x_node = Math.cos(2 * 414 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 414 * Math.PI / N) * 10;
g.nodes.push({
id: 210093,
label: 'MEMBER: Kieran Toms',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/10/research_pasteur-enkieran-tomsfrkieran-toms-picture-1.-jpeg-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/kieran-toms/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156210093,
size: 0.5,
source: 159156,
target: 210093 });
// adding node
var x_node = Math.cos(2 * 415 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 415 * Math.PI / N) * 10;
g.nodes.push({
id: 210078,
label: 'MEMBER: Sebastian Duchene',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/10/research_pasteur-ensebastian-duchenefrsebastian-duchene-photo-5-04-2016-2-06-32-pm-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/sebastian-duchene-garzon/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156210078,
size: 0.5,
source: 159156,
target: 210078 });
// adding node
var x_node = Math.cos(2 * 416 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 416 * Math.PI / N) * 10;
g.nodes.push({
id: 210021,
label: 'MEMBER: Arnaud MENG',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/10/research_pasteur-enarnaud-mengfrarnaud-meng-arnaud-meng-1-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/arnaud-meng/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156210021,
size: 0.5,
source: 159156,
target: 210021 });
// adding node
var x_node = Math.cos(2 * 417 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 417 * Math.PI / N) * 10;
g.nodes.push({
id: 210032,
label: 'MEMBER: Lina Boumediene',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/10/research_pasteur-enlina-boumedienefrlina-boumediene-img-8807bis-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/lina-boumediene/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156210032,
size: 0.5,
source: 159156,
target: 210032 });
// adding node
var x_node = Math.cos(2 * 418 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 418 * Math.PI / N) * 10;
g.nodes.push({
id: 209616,
label: 'MEMBER: Alba Herrero del Valle',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/09/research_pasteur-alba-herrero-del-valle-research-pasteur-alba-herrero-del-valle-capture-decran-2024-05-04-a-22.28.28-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/alba/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156209616,
size: 0.5,
source: 159156,
target: 209616 });
// adding node
var x_node = Math.cos(2 * 419 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 419 * Math.PI / N) * 10;
g.nodes.push({
id: 209609,
label: 'MEMBER: Lucas Paoli',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/09/research_pasteur-enlucas-paolifrlucas-paoli-2111147524-lp.zoom--150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/lucas-paoli/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156209609,
size: 0.5,
source: 159156,
target: 209609 });
// adding node
var x_node = Math.cos(2 * 420 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 420 * Math.PI / N) * 10;
g.nodes.push({
id: 209570,
label: 'MEMBER: Isabelle Damei',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/09/research_pasteur-isabelle-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/isabelle-damei/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156209570,
size: 0.5,
source: 159156,
target: 209570 });
// adding node
var x_node = Math.cos(2 * 421 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 421 * Math.PI / N) * 10;
g.nodes.push({
id: 209482,
label: 'MEMBER: Aria Allahverdi',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/209482/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156209482,
size: 0.5,
source: 159156,
target: 209482 });
// adding node
var x_node = Math.cos(2 * 422 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 422 * Math.PI / N) * 10;
g.nodes.push({
id: 209474,
label: 'MEMBER: Amaia Nunez Del Moral',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/09/research_pasteur-enamaia-nunez-del-moral-amaia-nunez-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/amaia-nunez-del-moral/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156209474,
size: 0.5,
source: 159156,
target: 209474 });
// adding node
var x_node = Math.cos(2 * 423 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 423 * Math.PI / N) * 10;
g.nodes.push({
id: 209349,
label: 'MEMBER: Mathis Fleury',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/mathis-fleury/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156209349,
size: 0.5,
source: 159156,
target: 209349 });
// adding node
var x_node = Math.cos(2 * 424 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 424 * Math.PI / N) * 10;
g.nodes.push({
id: 209189,
label: 'MEMBER: Anne Lawson',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/09/research_pasteur-enanne-lawsonfranne-lawson-profile-image-1-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/anne-lawson/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156209189,
size: 0.5,
source: 159156,
target: 209189 });
// adding node
var x_node = Math.cos(2 * 425 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 425 * Math.PI / N) * 10;
g.nodes.push({
id: 209100,
label: 'MEMBER: Mercè Guzman Vendrell',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/09/research_pasteur-enmerce-guzman-vendrellfrmerce-guzman-vendrell-mgv-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/merce-guzman-vendrell/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156209100,
size: 0.5,
source: 159156,
target: 209100 });
// adding node
var x_node = Math.cos(2 * 426 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 426 * Math.PI / N) * 10;
g.nodes.push({
id: 209024,
label: 'MEMBER: David Green',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/09/research_pasteur-david-photo-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/david-green/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156209024,
size: 0.5,
source: 159156,
target: 209024 });
// adding node
var x_node = Math.cos(2 * 427 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 427 * Math.PI / N) * 10;
g.nodes.push({
id: 208736,
label: 'MEMBER: Anuradha Kar',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/09/research_pasteur-enanuradha-karfranuradha-kar-img-20230913-172712-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/anuradha-kar/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156208736,
size: 0.5,
source: 159156,
target: 208736 });
// adding node
var x_node = Math.cos(2 * 428 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 428 * Math.PI / N) * 10;
g.nodes.push({
id: 208166,
label: 'MEMBER: Clémentine Vallee',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/09/research_pasteur-vallee-clementine-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/208166/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156208166,
size: 0.5,
source: 159156,
target: 208166 });
// adding node
var x_node = Math.cos(2 * 429 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 429 * Math.PI / N) * 10;
g.nodes.push({
id: 208159,
label: 'MEMBER: Jean-François Mariet',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/09/research_pasteur-mariet-jf-2023-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/jean-francois-mariet/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156208159,
size: 0.5,
source: 159156,
target: 208159 });
// adding node
var x_node = Math.cos(2 * 430 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 430 * Math.PI / N) * 10;
g.nodes.push({
id: 208147,
label: 'MEMBER: Jacinthe Frangieh',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/09/research_pasteur-enjacinthe-frangiehfrjacinthe-frangieh-img-4072-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/jacinthe-frangieh/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156208147,
size: 0.5,
source: 159156,
target: 208147 });
// adding node
var x_node = Math.cos(2 * 431 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 431 * Math.PI / N) * 10;
g.nodes.push({
id: 208131,
label: 'MEMBER: Eddy Blondet',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/09/research_pasteur-eneddy-blondetfreddy-blondet-20240425-140645-e1726575893789-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/eddy-blondet/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156208131,
size: 0.5,
source: 159156,
target: 208131 });
// adding node
var x_node = Math.cos(2 * 432 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 432 * Math.PI / N) * 10;
g.nodes.push({
id: 207975,
label: 'MEMBER: Nolwenn Dheilly',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/09/research_pasteur-ennolwenn-dheillyfrnolwenn-dheilly-dheilly-nolwenn-1510-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/nolwenn-dheilly/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156207975,
size: 0.5,
source: 159156,
target: 207975 });
// adding node
var x_node = Math.cos(2 * 433 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 433 * Math.PI / N) * 10;
g.nodes.push({
id: 207882,
label: 'MEMBER: Marwan Sharawy',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/09/research_pasteur-enmarwan-sharawyfrmarwan-sharawy-marwan-sharawy-2-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/marwan-sharawy-2/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156207882,
size: 0.5,
source: 159156,
target: 207882 });
// adding node
var x_node = Math.cos(2 * 434 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 434 * Math.PI / N) * 10;
g.nodes.push({
id: 207836,
label: 'MEMBER: Mathilde Briday',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/09/research_pasteur-mathilde-briday-research-pasteur-mathilde-briday-capture-decran-2023-09-01-a-14.08.02-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/mathilde-briday/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156207836,
size: 0.5,
source: 159156,
target: 207836 });
// adding node
var x_node = Math.cos(2 * 435 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 435 * Math.PI / N) * 10;
g.nodes.push({
id: 207775,
label: 'MEMBER: Aria Batut',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/aria-batut/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156207775,
size: 0.5,
source: 159156,
target: 207775 });
// adding node
var x_node = Math.cos(2 * 436 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 436 * Math.PI / N) * 10;
g.nodes.push({
id: 207604,
label: 'MEMBER: Lea Miglinci',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/08/research_pasteur-enlea-miglinci-passfoto-lea-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/lea-miglinci/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156207604,
size: 0.5,
source: 159156,
target: 207604 });
// adding node
var x_node = Math.cos(2 * 437 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 437 * Math.PI / N) * 10;
g.nodes.push({
id: 207583,
label: 'MEMBER: Laurent Orlando',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/207583/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156207583,
size: 0.5,
source: 159156,
target: 207583 });
// adding node
var x_node = Math.cos(2 * 438 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 438 * Math.PI / N) * 10;
g.nodes.push({
id: 207571,
label: 'MEMBER: Angélique Michaut',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/angelique-michaut/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156207571,
size: 0.5,
source: 159156,
target: 207571 });
// adding node
var x_node = Math.cos(2 * 439 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 439 * Math.PI / N) * 10;
g.nodes.push({
id: 207556,
label: 'MEMBER: Bruno Teste',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/bruno-teste/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156207556,
size: 0.5,
source: 159156,
target: 207556 });
// adding node
var x_node = Math.cos(2 * 440 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 440 * Math.PI / N) * 10;
g.nodes.push({
id: 207281,
label: 'MEMBER: Eva Pillai',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/08/research_pasteur-eneva-pillaifreva-pillai-img-2154-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/eva-pillai/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156207281,
size: 0.5,
source: 159156,
target: 207281 });
// adding node
var x_node = Math.cos(2 * 441 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 441 * Math.PI / N) * 10;
g.nodes.push({
id: 207271,
label: 'MEMBER: Juliette Mathieu',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/08/research_pasteur-juliettemathieu-equipehuynh-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/juliette-mathieu/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156207271,
size: 0.5,
source: 159156,
target: 207271 });
// adding node
var x_node = Math.cos(2 * 442 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 442 * Math.PI / N) * 10;
g.nodes.push({
id: 207044,
label: 'MEMBER: Philipp Brandt',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/philipp-brandt/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156207044,
size: 0.5,
source: 159156,
target: 207044 });
// adding node
var x_node = Math.cos(2 * 443 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 443 * Math.PI / N) * 10;
g.nodes.push({
id: 207006,
label: 'MEMBER: Christophe Rouillon',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/christophe-rouillon/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156207006,
size: 0.5,
source: 159156,
target: 207006 });
// adding node
var x_node = Math.cos(2 * 444 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 444 * Math.PI / N) * 10;
g.nodes.push({
id: 206805,
label: 'MEMBER: Mate Gulacsi',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/mate-gulacsi/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156206805,
size: 0.5,
source: 159156,
target: 206805 });
// adding node
var x_node = Math.cos(2 * 445 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 445 * Math.PI / N) * 10;
g.nodes.push({
id: 206801,
label: 'MEMBER: Roy Rosman Nathanson',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/08/research_pasteur-enroy-rosman-nathansonfrroy-rosman-nathanson-this-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/roy-rosman-nathanson/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156206801,
size: 0.5,
source: 159156,
target: 206801 });
// adding node
var x_node = Math.cos(2 * 446 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 446 * Math.PI / N) * 10;
g.nodes.push({
id: 206797,
label: 'MEMBER: Lorenzo Tarricone',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/08/research_pasteur-enlorenzo-tarriconefrlorenzo-tarricone-d8283977-8f2d-4671-90f9-70fa78353c11-1-105-c-e1691600844678-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/lorenzo-tarricone/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156206797,
size: 0.5,
source: 159156,
target: 206797 });
// adding node
var x_node = Math.cos(2 * 447 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 447 * Math.PI / N) * 10;
g.nodes.push({
id: 206786,
label: 'MEMBER: Marine Lechartier',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/marine-lechartier/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156206786,
size: 0.5,
source: 159156,
target: 206786 });
// adding node
var x_node = Math.cos(2 * 448 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 448 * Math.PI / N) * 10;
g.nodes.push({
id: 206781,
label: 'MEMBER: Luis Romero Martín',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/luis-romero-martin/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156206781,
size: 0.5,
source: 159156,
target: 206781 });
// adding node
var x_node = Math.cos(2 * 449 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 449 * Math.PI / N) * 10;
g.nodes.push({
id: 206774,
label: 'MEMBER: Grégoire Launay',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/08/research_pasteur-gregoire-launay-1595678158138-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/glaunay/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156206774,
size: 0.5,
source: 159156,
target: 206774 });
// adding node
var x_node = Math.cos(2 * 450 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 450 * Math.PI / N) * 10;
g.nodes.push({
id: 206626,
label: 'MEMBER: Marie-Laure Rosso-Thouroude',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/marie-laure-rosso-thouroude/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156206626,
size: 0.5,
source: 159156,
target: 206626 });
// adding node
var x_node = Math.cos(2 * 451 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 451 * Math.PI / N) * 10;
g.nodes.push({
id: 206462,
label: 'MEMBER: Koray Koçoglu',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/koray-kocoglu/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156206462,
size: 0.5,
source: 159156,
target: 206462 });
// adding node
var x_node = Math.cos(2 * 452 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 452 * Math.PI / N) * 10;
g.nodes.push({
id: 206436,
label: 'MEMBER: Blanca Bernabeu Vilaplana',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/08/research_pasteur-photo-villablanca-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/blanca-bernabeu-vilaplana/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156206436,
size: 0.5,
source: 159156,
target: 206436 });
// adding node
var x_node = Math.cos(2 * 453 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 453 * Math.PI / N) * 10;
g.nodes.push({
id: 206175,
label: 'MEMBER: Caroline Boursaux-Eude',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/caroline-boursaux-eude/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156206175,
size: 0.5,
source: 159156,
target: 206175 });
// adding node
var x_node = Math.cos(2 * 454 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 454 * Math.PI / N) * 10;
g.nodes.push({
id: 206148,
label: 'MEMBER: Samuel Ortion',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/samuel-ortion/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156206148,
size: 0.5,
source: 159156,
target: 206148 });
// adding node
var x_node = Math.cos(2 * 455 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 455 * Math.PI / N) * 10;
g.nodes.push({
id: 205502,
label: 'MEMBER: Aurélia Vigot',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/aurelia-vigot/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156205502,
size: 0.5,
source: 159156,
target: 205502 });
// adding node
var x_node = Math.cos(2 * 456 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 456 * Math.PI / N) * 10;
g.nodes.push({
id: 205500,
label: 'MEMBER: Gaetano Calcagno',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/07/research_pasteur-gaetano-calcagno-unnamed-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/gaetano-calcagno/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156205500,
size: 0.5,
source: 159156,
target: 205500 });
// adding node
var x_node = Math.cos(2 * 457 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 457 * Math.PI / N) * 10;
g.nodes.push({
id: 205200,
label: 'MEMBER: Hilin Finianos',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/07/research_pasteur-hilin-finianos-research-pasteur-hilin-finianos-img-20220924-205350-1-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/hilin-finianos/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156205200,
size: 0.5,
source: 159156,
target: 205200 });
// adding node
var x_node = Math.cos(2 * 458 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 458 * Math.PI / N) * 10;
g.nodes.push({
id: 205165,
label: 'MEMBER: Hashem Almousa',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/hashem-almousa/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156205165,
size: 0.5,
source: 159156,
target: 205165 });
// adding node
var x_node = Math.cos(2 * 459 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 459 * Math.PI / N) * 10;
g.nodes.push({
id: 205151,
label: 'MEMBER: Najate Benamer',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/najate-benamer/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156205151,
size: 0.5,
source: 159156,
target: 205151 });
// adding node
var x_node = Math.cos(2 * 460 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 460 * Math.PI / N) * 10;
g.nodes.push({
id: 204971,
label: 'MEMBER: Elisa Lenzi',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/07/research_pasteur-elisa-lenzi-elisa-lenzi-photo-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/elisa-lenzi/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156204971,
size: 0.5,
source: 159156,
target: 204971 });
// adding node
var x_node = Math.cos(2 * 461 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 461 * Math.PI / N) * 10;
g.nodes.push({
id: 204929,
label: 'MEMBER: Kristina Nimchenko',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/07/research_pasteur-kristina-nimchenko-image-2023-08-16-143819-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/kristina-nimchenko/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156204929,
size: 0.5,
source: 159156,
target: 204929 });
// adding node
var x_node = Math.cos(2 * 462 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 462 * Math.PI / N) * 10;
g.nodes.push({
id: 204765,
label: 'MEMBER: Elliot Gomard',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/elliot-gomard/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156204765,
size: 0.5,
source: 159156,
target: 204765 });
// adding node
var x_node = Math.cos(2 * 463 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 463 * Math.PI / N) * 10;
g.nodes.push({
id: 204741,
label: 'MEMBER: Catherine Venien-Bryan',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/catherine-venien-bryan/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156204741,
size: 0.5,
source: 159156,
target: 204741 });
// adding node
var x_node = Math.cos(2 * 464 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 464 * Math.PI / N) * 10;
g.nodes.push({
id: 204726,
label: 'MEMBER: Méline Durand',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/07/research_pasteur-photo-cv-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/meline-durand/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156204726,
size: 0.5,
source: 159156,
target: 204726 });
// adding node
var x_node = Math.cos(2 * 465 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 465 * Math.PI / N) * 10;
g.nodes.push({
id: 204706,
label: 'MEMBER: Inès Maréchal',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/ines-marechal/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156204706,
size: 0.5,
source: 159156,
target: 204706 });
// adding node
var x_node = Math.cos(2 * 466 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 466 * Math.PI / N) * 10;
g.nodes.push({
id: 204702,
label: 'MEMBER: Jeanne Postal',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/jeanne-postal/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156204702,
size: 0.5,
source: 159156,
target: 204702 });
// adding node
var x_node = Math.cos(2 * 467 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 467 * Math.PI / N) * 10;
g.nodes.push({
id: 204690,
label: 'MEMBER: Isabella Chavez Uribe',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/07/research_pasteur-isabella-chavez-uribe-isabella-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/isabella-chavez-uribe/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156204690,
size: 0.5,
source: 159156,
target: 204690 });
// adding node
var x_node = Math.cos(2 * 468 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 468 * Math.PI / N) * 10;
g.nodes.push({
id: 204626,
label: 'MEMBER: Rania Ouazahrou',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/rania-ouazahrou/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156204626,
size: 0.5,
source: 159156,
target: 204626 });
// adding node
var x_node = Math.cos(2 * 469 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 469 * Math.PI / N) * 10;
g.nodes.push({
id: 204620,
label: 'MEMBER: Sofija Ilic',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/07/research_pasteur-sofija-ilic-sofija-ilic-hr-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/sofija-ilic/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156204620,
size: 0.5,
source: 159156,
target: 204620 });
// adding node
var x_node = Math.cos(2 * 470 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 470 * Math.PI / N) * 10;
g.nodes.push({
id: 204522,
label: 'MEMBER: Thomas Di Costanzo',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/07/research_pasteur-thomas-photo-3-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/thomas-di-costanzo/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156204522,
size: 0.5,
source: 159156,
target: 204522 });
// adding node
var x_node = Math.cos(2 * 471 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 471 * Math.PI / N) * 10;
g.nodes.push({
id: 204506,
label: 'MEMBER: Deniz Fettahoglu',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/07/research_pasteur-deniz-fettahoglu-research-pasteur-deniz-fettahoglu-photo-bis-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/deniz-fettahoglu/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156204506,
size: 0.5,
source: 159156,
target: 204506 });
// adding node
var x_node = Math.cos(2 * 472 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 472 * Math.PI / N) * 10;
g.nodes.push({
id: 204504,
label: 'MEMBER: Anja Estermann',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/07/research_pasteur-anja-estermann-dsc-0143-2-scaled-e1689413069553-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/anja-estermann/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156204504,
size: 0.5,
source: 159156,
target: 204504 });
// adding node
var x_node = Math.cos(2 * 473 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 473 * Math.PI / N) * 10;
g.nodes.push({
id: 204483,
label: 'MEMBER: Hugo Siegfried',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/07/research_pasteur-photo-hugo-siegfried-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/hugo-siegfried/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156204483,
size: 0.5,
source: 159156,
target: 204483 });
// adding node
var x_node = Math.cos(2 * 474 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 474 * Math.PI / N) * 10;
g.nodes.push({
id: 204475,
label: 'MEMBER: Rayane Dibsy',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/07/research_pasteur-dibsy-rayane-photo-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/rayane-dibsy/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156204475,
size: 0.5,
source: 159156,
target: 204475 });
// adding node
var x_node = Math.cos(2 * 475 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 475 * Math.PI / N) * 10;
g.nodes.push({
id: 204048,
label: 'MEMBER: Patricia Rodrigues Duarte',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/06/research_pasteur-patricia-rodrigues-duarte-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/patricia-rodrigues-duarte/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156204048,
size: 0.5,
source: 159156,
target: 204048 });
// adding node
var x_node = Math.cos(2 * 476 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 476 * Math.PI / N) * 10;
g.nodes.push({
id: 203840,
label: 'MEMBER: Khamsing Vongphayloth',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/khamsing-vongphayloth/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156203840,
size: 0.5,
source: 159156,
target: 203840 });
// adding node
var x_node = Math.cos(2 * 477 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 477 * Math.PI / N) * 10;
g.nodes.push({
id: 203722,
label: 'MEMBER: Nathalie Rolhion',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/nathalie-rolhion/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156203722,
size: 0.5,
source: 159156,
target: 203722 });
// adding node
var x_node = Math.cos(2 * 478 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 478 * Math.PI / N) * 10;
g.nodes.push({
id: 203719,
label: 'MEMBER: Helena Ploss',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/helena-ploss/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156203719,
size: 0.5,
source: 159156,
target: 203719 });
// adding node
var x_node = Math.cos(2 * 479 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 479 * Math.PI / N) * 10;
g.nodes.push({
id: 203660,
label: 'MEMBER: Sakura Pottier',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/06/research_pasteur-sakura-pottier-s.-pottier-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/sakura-pottier/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156203660,
size: 0.5,
source: 159156,
target: 203660 });
// adding node
var x_node = Math.cos(2 * 480 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 480 * Math.PI / N) * 10;
g.nodes.push({
id: 203657,
label: 'MEMBER: Clara Lehmann',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/clara-lehmann/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156203657,
size: 0.5,
source: 159156,
target: 203657 });
// adding node
var x_node = Math.cos(2 * 481 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 481 * Math.PI / N) * 10;
g.nodes.push({
id: 203641,
label: 'MEMBER: Jasna Medvedovic',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/jasna-medvedovic/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156203641,
size: 0.5,
source: 159156,
target: 203641 });
// adding node
var x_node = Math.cos(2 * 482 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 482 * Math.PI / N) * 10;
g.nodes.push({
id: 203457,
label: 'MEMBER: Maeva El Zaiat-Munsch',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/maeva-el-zaiat-munsch/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156203457,
size: 0.5,
source: 159156,
target: 203457 });
// adding node
var x_node = Math.cos(2 * 483 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 483 * Math.PI / N) * 10;
g.nodes.push({
id: 203455,
label: 'MEMBER: Somboon Wankanit',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/06/research_pasteur-somboon-wankanit-profile-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/somboon-wankanit/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156203455,
size: 0.5,
source: 159156,
target: 203455 });
// adding node
var x_node = Math.cos(2 * 484 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 484 * Math.PI / N) * 10;
g.nodes.push({
id: 203418,
label: 'MEMBER: Ernest Mordret',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/06/research_pasteur-ernest-mordret-research-pasteur-ernest-mordret-image8-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/ernest-mordret/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156203418,
size: 0.5,
source: 159156,
target: 203418 });
// adding node
var x_node = Math.cos(2 * 485 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 485 * Math.PI / N) * 10;
g.nodes.push({
id: 203415,
label: 'MEMBER: Héloïse Georjon',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/06/research_pasteur-heloise-georjon-research-pasteur-heloise-georjon-image9-e1686650156183-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/heloise-georjon/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156203415,
size: 0.5,
source: 159156,
target: 203415 });
// adding node
var x_node = Math.cos(2 * 486 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 486 * Math.PI / N) * 10;
g.nodes.push({
id: 203405,
label: 'MEMBER: Arthur Lensen',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/06/research_pasteur-img-0771-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/arthur-lensen/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156203405,
size: 0.5,
source: 159156,
target: 203405 });
// adding node
var x_node = Math.cos(2 * 487 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 487 * Math.PI / N) * 10;
g.nodes.push({
id: 203338,
label: 'MEMBER: Charles Bernard',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/charles-bernard/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156203338,
size: 0.5,
source: 159156,
target: 203338 });
// adding node
var x_node = Math.cos(2 * 488 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 488 * Math.PI / N) * 10;
g.nodes.push({
id: 203335,
label: 'MEMBER: Julie Le Bris',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/06/research_pasteur-julie-le-bris-48c5f0ea-8e78-424d-a489-524a895b6ab3-2-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/julie-le-bris/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156203335,
size: 0.5,
source: 159156,
target: 203335 });
// adding node
var x_node = Math.cos(2 * 489 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 489 * Math.PI / N) * 10;
g.nodes.push({
id: 203306,
label: 'MEMBER: Cyril Renassia',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/06/research_pasteur-cyril-renassia-photo-cv-2023-cropped-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/cyril-renassia/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156203306,
size: 0.5,
source: 159156,
target: 203306 });
// adding node
var x_node = Math.cos(2 * 490 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 490 * Math.PI / N) * 10;
g.nodes.push({
id: 203179,
label: 'MEMBER: Angelica Frusteri Chiacchiera',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/06/research_pasteur-angelica-frusteri-chiacchiera-fotoangiecv-copy-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/angelica-frusteri-chiacchiera/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156203179,
size: 0.5,
source: 159156,
target: 203179 });
// adding node
var x_node = Math.cos(2 * 491 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 491 * Math.PI / N) * 10;
g.nodes.push({
id: 203177,
label: 'MEMBER: Hong Duong Ngo',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/hong-duong-ngo/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156203177,
size: 0.5,
source: 159156,
target: 203177 });
// adding node
var x_node = Math.cos(2 * 492 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 492 * Math.PI / N) * 10;
g.nodes.push({
id: 203175,
label: 'MEMBER: Konstantin Achkasov',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/konstantin-achkasov/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156203175,
size: 0.5,
source: 159156,
target: 203175 });
// adding node
var x_node = Math.cos(2 * 493 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 493 * Math.PI / N) * 10;
g.nodes.push({
id: 203125,
label: 'MEMBER: Ilona MIGNEREY',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/06/research_pasteur-ilona-mignerey-profil-photo-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/ilona-mignerey/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156203125,
size: 0.5,
source: 159156,
target: 203125 });
// adding node
var x_node = Math.cos(2 * 494 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 494 * Math.PI / N) * 10;
g.nodes.push({
id: 203113,
label: 'MEMBER: Ana Morao',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/06/research_pasteur-ana-lr-150x150.png',
page_url: 'https://research.pasteur.fr/en/member/ana-morao/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156203113,
size: 0.5,
source: 159156,
target: 203113 });
// adding node
var x_node = Math.cos(2 * 495 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 495 * Math.PI / N) * 10;
g.nodes.push({
id: 203057,
label: 'MEMBER: Orane Pion',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/06/research_pasteur-orane-pion-orane-pion-1-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/orane-pion/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156203057,
size: 0.5,
source: 159156,
target: 203057 });
// adding node
var x_node = Math.cos(2 * 496 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 496 * Math.PI / N) * 10;
g.nodes.push({
id: 202892,
label: 'MEMBER: Babette Beher',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/06/research_pasteur-babette-beher-betty-25nov20180521-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/babette-beher/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156202892,
size: 0.5,
source: 159156,
target: 202892 });
// adding node
var x_node = Math.cos(2 * 497 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 497 * Math.PI / N) * 10;
g.nodes.push({
id: 202856,
label: 'MEMBER: Héloïse Planté',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/06/research_pasteur-heloise-plante-heloise-p-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/heloise-plante/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156202856,
size: 0.5,
source: 159156,
target: 202856 });
// adding node
var x_node = Math.cos(2 * 498 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 498 * Math.PI / N) * 10;
g.nodes.push({
id: 202845,
label: 'MEMBER: Hadrien Cousseau',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/06/research_pasteur-hadrien-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/hadrien-cousseau/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156202845,
size: 0.5,
source: 159156,
target: 202845 });
// adding node
var x_node = Math.cos(2 * 499 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 499 * Math.PI / N) * 10;
g.nodes.push({
id: 202836,
label: 'MEMBER: Clémentine Larignon',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/06/research_pasteur-clementine-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/clementine-larignon/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156202836,
size: 0.5,
source: 159156,
target: 202836 });
// adding node
var x_node = Math.cos(2 * 500 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 500 * Math.PI / N) * 10;
g.nodes.push({
id: 202714,
label: 'MEMBER: Mélissa Feugas',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/melissa-feugas/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156202714,
size: 0.5,
source: 159156,
target: 202714 });
// adding node
var x_node = Math.cos(2 * 501 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 501 * Math.PI / N) * 10;
g.nodes.push({
id: 202659,
label: 'MEMBER: Katie Leap',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/05/research_pasteur-katie-leap-attachment-1-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/katie-leap/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156202659,
size: 0.5,
source: 159156,
target: 202659 });
// adding node
var x_node = Math.cos(2 * 502 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 502 * Math.PI / N) * 10;
g.nodes.push({
id: 202213,
label: 'MEMBER: Lydie Traore',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/lydie-traore/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156202213,
size: 0.5,
source: 159156,
target: 202213 });
// adding node
var x_node = Math.cos(2 * 503 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 503 * Math.PI / N) * 10;
g.nodes.push({
id: 202211,
label: 'MEMBER: Jacques Vanhoutte',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/jacques-vanhoutte/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156202211,
size: 0.5,
source: 159156,
target: 202211 });
// adding node
var x_node = Math.cos(2 * 504 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 504 * Math.PI / N) * 10;
g.nodes.push({
id: 202209,
label: 'MEMBER: Valentine Piquard',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/valentine-piquard/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156202209,
size: 0.5,
source: 159156,
target: 202209 });
// adding node
var x_node = Math.cos(2 * 505 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 505 * Math.PI / N) * 10;
g.nodes.push({
id: 202174,
label: 'MEMBER: Xiaosong Liu',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/05/research_pasteur-xiaosong-liu-1-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/xiaosong-liu/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156202174,
size: 0.5,
source: 159156,
target: 202174 });
// adding node
var x_node = Math.cos(2 * 506 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 506 * Math.PI / N) * 10;
g.nodes.push({
id: 202172,
label: 'MEMBER: Camille Prince',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/camille-prince/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156202172,
size: 0.5,
source: 159156,
target: 202172 });
// adding node
var x_node = Math.cos(2 * 507 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 507 * Math.PI / N) * 10;
g.nodes.push({
id: 202072,
label: 'MEMBER: Théo Reynoird',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/theo-reynoird/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156202072,
size: 0.5,
source: 159156,
target: 202072 });
// adding node
var x_node = Math.cos(2 * 508 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 508 * Math.PI / N) * 10;
g.nodes.push({
id: 202052,
label: 'MEMBER: Nathalie Alazard',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/05/research_pasteur-nathalie-alazard-nathalie-alazard-institut-pasteur-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/nathalie-alazard/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156202052,
size: 0.5,
source: 159156,
target: 202052 });
// adding node
var x_node = Math.cos(2 * 509 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 509 * Math.PI / N) * 10;
g.nodes.push({
id: 201926,
label: 'MEMBER: Mariangeles Kovacs',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/05/research_pasteur-research-pasteur-kovacs-1-copia-01-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/mariangeles-kovacs/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156201926,
size: 0.5,
source: 159156,
target: 201926 });
// adding node
var x_node = Math.cos(2 * 510 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 510 * Math.PI / N) * 10;
g.nodes.push({
id: 201827,
label: 'MEMBER: Yaël Gossec',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/05/research_pasteur-yael-gossec-photo-yael-smile-big-e1684684564675-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/yael-gossec/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156201827,
size: 0.5,
source: 159156,
target: 201827 });
// adding node
var x_node = Math.cos(2 * 511 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 511 * Math.PI / N) * 10;
g.nodes.push({
id: 201829,
label: 'MEMBER: Matheus Santos Sano',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/matheus-santos-sano/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156201829,
size: 0.5,
source: 159156,
target: 201829 });
// adding node
var x_node = Math.cos(2 * 512 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 512 * Math.PI / N) * 10;
g.nodes.push({
id: 201825,
label: 'MEMBER: André Costa Werneck',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/andre-costa-werneck/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156201825,
size: 0.5,
source: 159156,
target: 201825 });
// adding node
var x_node = Math.cos(2 * 513 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 513 * Math.PI / N) * 10;
g.nodes.push({
id: 201811,
label: 'MEMBER: Ricardo Obonaga-Gomez',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/ricardo-obonaga-gomez-2/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156201811,
size: 0.5,
source: 159156,
target: 201811 });
// adding node
var x_node = Math.cos(2 * 514 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 514 * Math.PI / N) * 10;
g.nodes.push({
id: 201664,
label: 'MEMBER: Arnon Henn',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/05/research_pasteur-arnon-henn-henn-arnon-v3-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/arnon-henn/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156201664,
size: 0.5,
source: 159156,
target: 201664 });
// adding node
var x_node = Math.cos(2 * 515 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 515 * Math.PI / N) * 10;
g.nodes.push({
id: 201659,
label: 'MEMBER: Valeria Valente',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/05/research_pasteur-valente-valeria-photo-150x150.png',
page_url: 'https://research.pasteur.fr/en/member/valeria-valente/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156201659,
size: 0.5,
source: 159156,
target: 201659 });
// adding node
var x_node = Math.cos(2 * 516 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 516 * Math.PI / N) * 10;
g.nodes.push({
id: 201500,
label: 'MEMBER: Florian Tesson',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/05/research_pasteur-florian-tesson-20230314-141452-e1683968112239-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/florian-tesson/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156201500,
size: 0.5,
source: 159156,
target: 201500 });
// adding node
var x_node = Math.cos(2 * 517 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 517 * Math.PI / N) * 10;
g.nodes.push({
id: 201492,
label: 'MEMBER: Hugo Vaysset',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/05/research_pasteur-hugo-vaysset-20230314-1414462-e1683967894320-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/hugo-vaysset/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156201492,
size: 0.5,
source: 159156,
target: 201492 });
// adding node
var x_node = Math.cos(2 * 518 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 518 * Math.PI / N) * 10;
g.nodes.push({
id: 201489,
label: 'MEMBER: Jean Cury',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/05/research_pasteur-jean-cury-signal-2023-01-28-13-44-38-471-e1683967747125-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/jean-cury/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156201489,
size: 0.5,
source: 159156,
target: 201489 });
// adding node
var x_node = Math.cos(2 * 519 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 519 * Math.PI / N) * 10;
g.nodes.push({
id: 201486,
label: 'MEMBER: Helena Shomar',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/05/research_pasteur-helena-shomar-1559516847975-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/helena-shomar/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156201486,
size: 0.5,
source: 159156,
target: 201486 });
// adding node
var x_node = Math.cos(2 * 520 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 520 * Math.PI / N) * 10;
g.nodes.push({
id: 201412,
label: 'MEMBER: Marin Sandra',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/marin-sandra/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156201412,
size: 0.5,
source: 159156,
target: 201412 });
// adding node
var x_node = Math.cos(2 * 521 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 521 * Math.PI / N) * 10;
g.nodes.push({
id: 201329,
label: 'MEMBER: Martin Jungbauer-Groznica',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/martin-jungbauer-groznica/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156201329,
size: 0.5,
source: 159156,
target: 201329 });
// adding node
var x_node = Math.cos(2 * 522 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 522 * Math.PI / N) * 10;
g.nodes.push({
id: 201327,
label: 'MEMBER: Lou-Léna Vrignaud',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/lou-lena-vrignaud-2/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156201327,
size: 0.5,
source: 159156,
target: 201327 });
// adding node
var x_node = Math.cos(2 * 523 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 523 * Math.PI / N) * 10;
g.nodes.push({
id: 201199,
label: 'MEMBER: Clémentine Ortiger',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/clementine-ortiger/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156201199,
size: 0.5,
source: 159156,
target: 201199 });
// adding node
var x_node = Math.cos(2 * 524 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 524 * Math.PI / N) * 10;
g.nodes.push({
id: 201200,
label: 'MEMBER: Anike Morch',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/anike-morch-2/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156201200,
size: 0.5,
source: 159156,
target: 201200 });
// adding node
var x_node = Math.cos(2 * 525 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 525 * Math.PI / N) * 10;
g.nodes.push({
id: 201185,
label: 'MEMBER: Noémi Beuscart',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/noemi-beuscart/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156201185,
size: 0.5,
source: 159156,
target: 201185 });
// adding node
var x_node = Math.cos(2 * 526 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 526 * Math.PI / N) * 10;
g.nodes.push({
id: 201163,
label: 'MEMBER: Thibault Vanhoucke',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/anike-morch/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156201163,
size: 0.5,
source: 159156,
target: 201163 });
// adding node
var x_node = Math.cos(2 * 527 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 527 * Math.PI / N) * 10;
g.nodes.push({
id: 200933,
label: 'MEMBER: Magdalena Stroksztejn',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/magdalena-stroksztejn/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156200933,
size: 0.5,
source: 159156,
target: 200933 });
// adding node
var x_node = Math.cos(2 * 528 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 528 * Math.PI / N) * 10;
g.nodes.push({
id: 200549,
label: 'MEMBER: Guillaume Giraud',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/04/research_pasteur-guillaume-giraud-giraud-collet-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/guillaume-giraud/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156200549,
size: 0.5,
source: 159156,
target: 200549 });
// adding node
var x_node = Math.cos(2 * 529 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 529 * Math.PI / N) * 10;
g.nodes.push({
id: 189234,
label: 'MEMBER: Guillaume burnet',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/10/research_pasteur-guillaume-burnet-picturegb-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/guillaume-burnet/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156189234,
size: 0.5,
source: 159156,
target: 189234 });
// adding node
var x_node = Math.cos(2 * 530 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 530 * Math.PI / N) * 10;
g.nodes.push({
id: 200535,
label: 'MEMBER: Luis Fernando Altamirano Pacheco',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/04/research_pasteur-picture-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/luis-fernando-altamirano-pacheco/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156200535,
size: 0.5,
source: 159156,
target: 200535 });
// adding node
var x_node = Math.cos(2 * 531 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 531 * Math.PI / N) * 10;
g.nodes.push({
id: 200490,
label: 'MEMBER: Maria Eduarda Flores Oliveire',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/maria-eduarda-flores-oliveire/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156200490,
size: 0.5,
source: 159156,
target: 200490 });
// adding node
var x_node = Math.cos(2 * 532 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 532 * Math.PI / N) * 10;
g.nodes.push({
id: 200377,
label: 'MEMBER: Yannick Goulam Houssen',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/yannick-goulam-houssen/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156200377,
size: 0.5,
source: 159156,
target: 200377 });
// adding node
var x_node = Math.cos(2 * 533 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 533 * Math.PI / N) * 10;
g.nodes.push({
id: 200254,
label: 'MEMBER: Grégoire Davignon',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/04/research_pasteur-davignon-gregoire-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/gregoire-davignon/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156200254,
size: 0.5,
source: 159156,
target: 200254 });
// adding node
var x_node = Math.cos(2 * 534 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 534 * Math.PI / N) * 10;
g.nodes.push({
id: 200229,
label: 'MEMBER: Jeliyah Clark',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/04/research_pasteur-jeliyah-clark-liyah-graduation-2022120946-6-scaled-e1681817072198-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/jeliyah-clark/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156200229,
size: 0.5,
source: 159156,
target: 200229 });
// adding node
var x_node = Math.cos(2 * 535 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 535 * Math.PI / N) * 10;
g.nodes.push({
id: 200126,
label: 'MEMBER: Josée Dussault',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/04/research_pasteur-josee-dussault-img-0326-e1681311791822-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/josee-dussault/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156200126,
size: 0.5,
source: 159156,
target: 200126 });
// adding node
var x_node = Math.cos(2 * 536 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 536 * Math.PI / N) * 10;
g.nodes.push({
id: 200119,
label: 'MEMBER: Gaétan Tressières',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/04/research_pasteur-1601638092514-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/gaetan-tressieres/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156200119,
size: 0.5,
source: 159156,
target: 200119 });
// adding node
var x_node = Math.cos(2 * 537 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 537 * Math.PI / N) * 10;
g.nodes.push({
id: 200116,
label: 'MEMBER: Mariana Escobar Rodríguez',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/04/research_pasteur-microsoftteams-image-4-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/mariana-escobar-rodriguez/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156200116,
size: 0.5,
source: 159156,
target: 200116 });
// adding node
var x_node = Math.cos(2 * 538 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 538 * Math.PI / N) * 10;
g.nodes.push({
id: 200113,
label: 'MEMBER: Arve Lee Willingham Grijalba',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/04/research_pasteur-microsoftteams-image-3-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/arve-lee-willingham-grijalba/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156200113,
size: 0.5,
source: 159156,
target: 200113 });
// adding node
var x_node = Math.cos(2 * 539 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 539 * Math.PI / N) * 10;
g.nodes.push({
id: 200087,
label: 'MEMBER: Sanne Klompe',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/04/research_pasteur-s.-klompe-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/sanne-klompe/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156200087,
size: 0.5,
source: 159156,
target: 200087 });
// adding node
var x_node = Math.cos(2 * 540 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 540 * Math.PI / N) * 10;
g.nodes.push({
id: 200076,
label: 'MEMBER: Milos Nikolic',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/nikolic-milos/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156200076,
size: 0.5,
source: 159156,
target: 200076 });
// adding node
var x_node = Math.cos(2 * 541 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 541 * Math.PI / N) * 10;
g.nodes.push({
id: 200052,
label: 'MEMBER: Maximilian Mannheim',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/maximilian-mannheim/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156200052,
size: 0.5,
source: 159156,
target: 200052 });
// adding node
var x_node = Math.cos(2 * 542 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 542 * Math.PI / N) * 10;
g.nodes.push({
id: 200048,
label: 'MEMBER: Elina Muriel Guzman',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/elina-guzman/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156200048,
size: 0.5,
source: 159156,
target: 200048 });
// adding node
var x_node = Math.cos(2 * 543 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 543 * Math.PI / N) * 10;
g.nodes.push({
id: 200032,
label: 'MEMBER: Lou Destouches',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/04/research_pasteur-louise-destouches-img-20210918-wa0014-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/louise-destouches/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156200032,
size: 0.5,
source: 159156,
target: 200032 });
// adding node
var x_node = Math.cos(2 * 544 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 544 * Math.PI / N) * 10;
g.nodes.push({
id: 200029,
label: 'MEMBER: Marie Anselmet',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/04/research_pasteur-marie-anselmet-img-2871-copy-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/marie-anselmet/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156200029,
size: 0.5,
source: 159156,
target: 200029 });
// adding node
var x_node = Math.cos(2 * 545 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 545 * Math.PI / N) * 10;
g.nodes.push({
id: 200026,
label: 'MEMBER: Aniket Saraf',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/04/research_pasteur-aniket-saraf-aniket-photo-delhi-scaled-e1681306410604-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/aniket-saraf/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156200026,
size: 0.5,
source: 159156,
target: 200026 });
// adding node
var x_node = Math.cos(2 * 546 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 546 * Math.PI / N) * 10;
g.nodes.push({
id: 200004,
label: 'MEMBER: Gwendal Kerzerho',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/gwendal-kerzerho/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156200004,
size: 0.5,
source: 159156,
target: 200004 });
// adding node
var x_node = Math.cos(2 * 547 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 547 * Math.PI / N) * 10;
g.nodes.push({
id: 199902,
label: 'MEMBER: Joanna Klim',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/04/research_pasteur-joanna-klim-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/joanna-klim/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156199902,
size: 0.5,
source: 159156,
target: 199902 });
// adding node
var x_node = Math.cos(2 * 548 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 548 * Math.PI / N) * 10;
g.nodes.push({
id: 199848,
label: 'MEMBER: Magdalena Gil Taran',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/04/research_pasteur-magdalena-gil-taran-gil-m-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/magdalena-gil-taran/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156199848,
size: 0.5,
source: 159156,
target: 199848 });
// adding node
var x_node = Math.cos(2 * 549 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 549 * Math.PI / N) * 10;
g.nodes.push({
id: 199794,
label: 'MEMBER: Quentin Vanbellingen',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/quentin-vanbellingen/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156199794,
size: 0.5,
source: 159156,
target: 199794 });
// adding node
var x_node = Math.cos(2 * 550 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 550 * Math.PI / N) * 10;
g.nodes.push({
id: 199763,
label: 'MEMBER: Ana Salom Lopez',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/04/research_pasteur-ana-salom-lopez-foto-identidad-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/ana-salom-lopez/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156199763,
size: 0.5,
source: 159156,
target: 199763 });
// adding node
var x_node = Math.cos(2 * 551 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 551 * Math.PI / N) * 10;
g.nodes.push({
id: 199760,
label: 'MEMBER: Marion Rambault',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/04/research_pasteur-marion-rambault-20230724-104833-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/marion-rambault/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156199760,
size: 0.5,
source: 159156,
target: 199760 });
// adding node
var x_node = Math.cos(2 * 552 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 552 * Math.PI / N) * 10;
g.nodes.push({
id: 199732,
label: 'MEMBER: N’Toia Hawkins',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/ntoia-hawkins/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156199732,
size: 0.5,
source: 159156,
target: 199732 });
// adding node
var x_node = Math.cos(2 * 553 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 553 * Math.PI / N) * 10;
g.nodes.push({
id: 199729,
label: 'MEMBER: Cara Picciotto',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/04/research_pasteur-cara-picciotto-research-pasteur-cara-picciotto-screenshot-2023-04-25-at-13.22.47-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/cara-picciotto/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156199729,
size: 0.5,
source: 159156,
target: 199729 });
// adding node
var x_node = Math.cos(2 * 554 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 554 * Math.PI / N) * 10;
g.nodes.push({
id: 199718,
label: 'MEMBER: Matthieu Gélin',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/04/research_pasteur-mugshot-square-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/matthieu-gelin/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156199718,
size: 0.5,
source: 159156,
target: 199718 });
// adding node
var x_node = Math.cos(2 * 555 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 555 * Math.PI / N) * 10;
g.nodes.push({
id: 199677,
label: 'MEMBER: Wissal Manai',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/03/research_pasteur-capture-decran-2023-03-31-145713-150x150.png',
page_url: 'https://research.pasteur.fr/en/member/wissal-manai/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156199677,
size: 0.5,
source: 159156,
target: 199677 });
// adding node
var x_node = Math.cos(2 * 556 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 556 * Math.PI / N) * 10;
g.nodes.push({
id: 199669,
label: 'MEMBER: David Hing',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/03/research_pasteur-david-hing-mairie-12ie-157-e1685273232637-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/david-hing/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156199669,
size: 0.5,
source: 159156,
target: 199669 });
// adding node
var x_node = Math.cos(2 * 557 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 557 * Math.PI / N) * 10;
g.nodes.push({
id: 199567,
label: 'MEMBER: Veronica Schiaffi',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/veronica-schiaffi/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156199567,
size: 0.5,
source: 159156,
target: 199567 });
// adding node
var x_node = Math.cos(2 * 558 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 558 * Math.PI / N) * 10;
g.nodes.push({
id: 199560,
label: 'MEMBER: Jeannie Chau',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/03/research_pasteur-photo-jeannie-chau-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/jeannie-chau/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156199560,
size: 0.5,
source: 159156,
target: 199560 });
// adding node
var x_node = Math.cos(2 * 559 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 559 * Math.PI / N) * 10;
g.nodes.push({
id: 199540,
label: 'MEMBER: Eduardo Andrés Bignon Silva',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/03/research_pasteur-eduardo-andres-bignon-silva-ch5033aj9ijkhiw4fhgtyxcv60-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/eduardo-andres-bignon-silva/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156199540,
size: 0.5,
source: 159156,
target: 199540 });
// adding node
var x_node = Math.cos(2 * 560 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 560 * Math.PI / N) * 10;
g.nodes.push({
id: 199438,
label: 'MEMBER: Josquin Daron',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/03/research_pasteur-josquin-daron-daron-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/josquin-daron/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156199438,
size: 0.5,
source: 159156,
target: 199438 });
// adding node
var x_node = Math.cos(2 * 561 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 561 * Math.PI / N) * 10;
g.nodes.push({
id: 199393,
label: 'MEMBER: Pierre Guermonprez',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/03/research_pasteur-pierre-guermonprez-pg-image-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/pierre-guermonprez/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156199393,
size: 0.5,
source: 159156,
target: 199393 });
// adding node
var x_node = Math.cos(2 * 562 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 562 * Math.PI / N) * 10;
g.nodes.push({
id: 199371,
label: 'MEMBER: Kama Atretkhany',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/03/research_pasteur-kama-atretkhany-kama-copie-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/kama-atretkhany/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156199371,
size: 0.5,
source: 159156,
target: 199371 });
// adding node
var x_node = Math.cos(2 * 563 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 563 * Math.PI / N) * 10;
g.nodes.push({
id: 199204,
label: 'MEMBER: Davide Dell’Accantera',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/davide-dellaccantera/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156199204,
size: 0.5,
source: 159156,
target: 199204 });
// adding node
var x_node = Math.cos(2 * 564 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 564 * Math.PI / N) * 10;
g.nodes.push({
id: 199123,
label: 'MEMBER: Rob Van Der Pluijm',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/rob-van-der-pluijm/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156199123,
size: 0.5,
source: 159156,
target: 199123 });
// adding node
var x_node = Math.cos(2 * 565 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 565 * Math.PI / N) * 10;
g.nodes.push({
id: 199093,
label: 'MEMBER: Gaëlle Baudemont',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/gaelle-baudemont/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156199093,
size: 0.5,
source: 159156,
target: 199093 });
// adding node
var x_node = Math.cos(2 * 566 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 566 * Math.PI / N) * 10;
g.nodes.push({
id: 199054,
label: 'MEMBER: Stéphanie Guillon',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/03/research_pasteur-stephanie-guillon-guillon-stephanie-photo-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/stephanie-guillon/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156199054,
size: 0.5,
source: 159156,
target: 199054 });
// adding node
var x_node = Math.cos(2 * 567 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 567 * Math.PI / N) * 10;
g.nodes.push({
id: 199022,
label: 'MEMBER: Sabrina Bouchelaghem',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/sabrina-bouchelaghem/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156199022,
size: 0.5,
source: 159156,
target: 199022 });
// adding node
var x_node = Math.cos(2 * 568 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 568 * Math.PI / N) * 10;
g.nodes.push({
id: 198865,
label: 'MEMBER: Francesca Palese',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/03/research_pasteur-palese-francesca-img-0194-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/francesca-palese/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156198865,
size: 0.5,
source: 159156,
target: 198865 });
// adding node
var x_node = Math.cos(2 * 569 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 569 * Math.PI / N) * 10;
g.nodes.push({
id: 198859,
label: 'MEMBER: Ranabir Chakraborty',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/03/research_pasteur-ranabir-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/ranabir-chakraborty/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156198859,
size: 0.5,
source: 159156,
target: 198859 });
// adding node
var x_node = Math.cos(2 * 570 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 570 * Math.PI / N) * 10;
g.nodes.push({
id: 198678,
label: 'MEMBER: Katherine Worsley-Tonks',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/katherine-worsley-tonks/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156198678,
size: 0.5,
source: 159156,
target: 198678 });
// adding node
var x_node = Math.cos(2 * 571 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 571 * Math.PI / N) * 10;
g.nodes.push({
id: 198837,
label: 'MEMBER: Aude Bernheim',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/03/research_pasteur-aude-bernheim-photo-aude-bernheim-cdf-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/aude-bernheim/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156198837,
size: 0.5,
source: 159156,
target: 198837 });
// adding node
var x_node = Math.cos(2 * 572 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 572 * Math.PI / N) * 10;
g.nodes.push({
id: 198677,
label: 'MEMBER: Marie Al Rahmoun',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/marie-al-rahmoun/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156198677,
size: 0.5,
source: 159156,
target: 198677 });
// adding node
var x_node = Math.cos(2 * 573 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 573 * Math.PI / N) * 10;
g.nodes.push({
id: 198631,
label: 'MEMBER: Manon Capdeville',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/03/research_pasteur-research-pasteur-unknown-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/manon-capdeville/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156198631,
size: 0.5,
source: 159156,
target: 198631 });
// adding node
var x_node = Math.cos(2 * 574 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 574 * Math.PI / N) * 10;
g.nodes.push({
id: 198601,
label: 'MEMBER: Camille Amourette',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/camille-amourette/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156198601,
size: 0.5,
source: 159156,
target: 198601 });
// adding node
var x_node = Math.cos(2 * 575 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 575 * Math.PI / N) * 10;
g.nodes.push({
id: 198597,
label: 'MEMBER: Alice Libri',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/alice-libri/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156198597,
size: 0.5,
source: 159156,
target: 198597 });
// adding node
var x_node = Math.cos(2 * 576 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 576 * Math.PI / N) * 10;
g.nodes.push({
id: 198558,
label: 'MEMBER: Marina Dockes',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/marina-dockes/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156198558,
size: 0.5,
source: 159156,
target: 198558 });
// adding node
var x_node = Math.cos(2 * 577 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 577 * Math.PI / N) * 10;
g.nodes.push({
id: 198556,
label: 'MEMBER: Guillaume Rode',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/guillaume-rode/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156198556,
size: 0.5,
source: 159156,
target: 198556 });
// adding node
var x_node = Math.cos(2 * 578 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 578 * Math.PI / N) * 10;
g.nodes.push({
id: 198479,
label: 'MEMBER: Karim Sebastien',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/03/research_pasteur-karim-sebastien-karime-sebastien-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/karim-sebastien/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156198479,
size: 0.5,
source: 159156,
target: 198479 });
// adding node
var x_node = Math.cos(2 * 579 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 579 * Math.PI / N) * 10;
g.nodes.push({
id: 198473,
label: 'MEMBER: Shaoni Bhattacharjee',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/03/research_pasteur-picture-shaoni-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/shaoni-bhattacharjee/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156198473,
size: 0.5,
source: 159156,
target: 198473 });
// adding node
var x_node = Math.cos(2 * 580 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 580 * Math.PI / N) * 10;
g.nodes.push({
id: 198470,
label: 'MEMBER: Chiara Tomasini',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/03/research_pasteur-tomasini-chiara-photo-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/chiara-tomasini/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156198470,
size: 0.5,
source: 159156,
target: 198470 });
// adding node
var x_node = Math.cos(2 * 581 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 581 * Math.PI / N) * 10;
g.nodes.push({
id: 198467,
label: 'MEMBER: Arthur Caron',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/03/research_pasteur-arthur-caron-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/arthur-caron/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156198467,
size: 0.5,
source: 159156,
target: 198467 });
// adding node
var x_node = Math.cos(2 * 582 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 582 * Math.PI / N) * 10;
g.nodes.push({
id: 198441,
label: 'MEMBER: Jean Randrianaly',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/jean-randrianaly/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156198441,
size: 0.5,
source: 159156,
target: 198441 });
// adding node
var x_node = Math.cos(2 * 583 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 583 * Math.PI / N) * 10;
g.nodes.push({
id: 198306,
label: 'MEMBER: Juliette Bonche',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/03/research_pasteur-juliette-bonche-dsc-0379-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/juliette-bonche/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156198306,
size: 0.5,
source: 159156,
target: 198306 });
// adding node
var x_node = Math.cos(2 * 584 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 584 * Math.PI / N) * 10;
g.nodes.push({
id: 198188,
label: 'MEMBER: Xiomara Alexandra Gaitan',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/xiomara-alexandra-gaitan/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156198188,
size: 0.5,
source: 159156,
target: 198188 });
// adding node
var x_node = Math.cos(2 * 585 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 585 * Math.PI / N) * 10;
g.nodes.push({
id: 198182,
label: 'MEMBER: Gabrielle Dupuis',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/03/research_pasteur-gabrielle-dupuis-b7d39f80-0d52-40a3-ab74-27a21830df6a-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/gabrielle-dupuis/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156198182,
size: 0.5,
source: 159156,
target: 198182 });
// adding node
var x_node = Math.cos(2 * 586 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 586 * Math.PI / N) * 10;
g.nodes.push({
id: 198147,
label: 'MEMBER: Carine Martins',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/03/research_pasteur-photo-carine-martins-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/carine-martins/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156198147,
size: 0.5,
source: 159156,
target: 198147 });
// adding node
var x_node = Math.cos(2 * 587 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 587 * Math.PI / N) * 10;
g.nodes.push({
id: 198125,
label: 'MEMBER: Maria Najem',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/03/research_pasteur-mn-copy-150x150.png',
page_url: 'https://research.pasteur.fr/en/member/maria-najem/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156198125,
size: 0.5,
source: 159156,
target: 198125 });
// adding node
var x_node = Math.cos(2 * 588 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 588 * Math.PI / N) * 10;
g.nodes.push({
id: 197994,
label: 'MEMBER: Julia Sanchez Viladevall',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/julia-sanchez-viladevall/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156197994,
size: 0.5,
source: 159156,
target: 197994 });
// adding node
var x_node = Math.cos(2 * 589 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 589 * Math.PI / N) * 10;
g.nodes.push({
id: 197952,
label: 'MEMBER: Roxane Bayle',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/roxane-bayle/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156197952,
size: 0.5,
source: 159156,
target: 197952 });
// adding node
var x_node = Math.cos(2 * 590 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 590 * Math.PI / N) * 10;
g.nodes.push({
id: 197944,
label: 'MEMBER: Flora Crozet',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/03/research_pasteur-floracrozet-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/flora-crozet/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156197944,
size: 0.5,
source: 159156,
target: 197944 });
// adding node
var x_node = Math.cos(2 * 591 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 591 * Math.PI / N) * 10;
g.nodes.push({
id: 197759,
label: 'MEMBER: Aurélien Mazeraud',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/aurelien-mazeraud/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156197759,
size: 0.5,
source: 159156,
target: 197759 });
// adding node
var x_node = Math.cos(2 * 592 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 592 * Math.PI / N) * 10;
g.nodes.push({
id: 197754,
label: 'MEMBER: Mihye Song',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/02/research_pasteur-mihye-song-2022--01-e1695289680675-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/mihye-song/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156197754,
size: 0.5,
source: 159156,
target: 197754 });
// adding node
var x_node = Math.cos(2 * 593 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 593 * Math.PI / N) * 10;
g.nodes.push({
id: 197750,
label: 'MEMBER: Antoine Carpentier',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/antoine-carpentier/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156197750,
size: 0.5,
source: 159156,
target: 197750 });
// adding node
var x_node = Math.cos(2 * 594 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 594 * Math.PI / N) * 10;
g.nodes.push({
id: 197745,
label: 'MEMBER: Claire-Hélène de Badts',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/claire-helene-de-badts/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156197745,
size: 0.5,
source: 159156,
target: 197745 });
// adding node
var x_node = Math.cos(2 * 595 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 595 * Math.PI / N) * 10;
g.nodes.push({
id: 197318,
label: 'MEMBER: Ariane Guillot',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/ariane-guillot/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156197318,
size: 0.5,
source: 159156,
target: 197318 });
// adding node
var x_node = Math.cos(2 * 596 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 596 * Math.PI / N) * 10;
g.nodes.push({
id: 197302,
label: 'MEMBER: Jean-Marc Collard',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/02/research_pasteur-jean-marc-collard-jean-marc-collard-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/jean-marc-collard/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156197302,
size: 0.5,
source: 159156,
target: 197302 });
// adding node
var x_node = Math.cos(2 * 597 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 597 * Math.PI / N) * 10;
g.nodes.push({
id: 197263,
label: 'MEMBER: Alexander Lewis Marffy',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/02/research_pasteur-alm-professional-image-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/alexander-lewis-marffy/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156197263,
size: 0.5,
source: 159156,
target: 197263 });
// adding node
var x_node = Math.cos(2 * 598 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 598 * Math.PI / N) * 10;
g.nodes.push({
id: 197250,
label: 'MEMBER: Quentin Holleville',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/quentin-holleville/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156197250,
size: 0.5,
source: 159156,
target: 197250 });
// adding node
var x_node = Math.cos(2 * 599 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 599 * Math.PI / N) * 10;
g.nodes.push({
id: 197246,
label: 'MEMBER: Nabila Selmani',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/02/research_pasteur-nabila-selmani-nabila-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/nabila-selmani/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156197246,
size: 0.5,
source: 159156,
target: 197246 });
// adding node
var x_node = Math.cos(2 * 600 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 600 * Math.PI / N) * 10;
g.nodes.push({
id: 197241,
label: 'MEMBER: Christelle Bellenger',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/02/research_pasteur-christelle-bellenger-cb-new-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/christelle-bellenger/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156197241,
size: 0.5,
source: 159156,
target: 197241 });
// adding node
var x_node = Math.cos(2 * 601 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 601 * Math.PI / N) * 10;
g.nodes.push({
id: 197243,
label: 'MEMBER: Lola Martinez',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/lola-martinez/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156197243,
size: 0.5,
source: 159156,
target: 197243 });
// adding node
var x_node = Math.cos(2 * 602 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 602 * Math.PI / N) * 10;
g.nodes.push({
id: 197204,
label: 'MEMBER: Tristan Ruffiot',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/11/research_pasteur-tristan-ruffiot-research-pasteur-tristan-ruffiot-ruffiot-photo-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/tristan-ruffiot/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156197204,
size: 0.5,
source: 159156,
target: 197204 });
// adding node
var x_node = Math.cos(2 * 603 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 603 * Math.PI / N) * 10;
g.nodes.push({
id: 197202,
label: 'MEMBER: Phuong Y Mai',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/phuong-y-mai/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156197202,
size: 0.5,
source: 159156,
target: 197202 });
// adding node
var x_node = Math.cos(2 * 604 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 604 * Math.PI / N) * 10;
g.nodes.push({
id: 197189,
label: 'MEMBER: Merlin Després',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/02/research_pasteur-despres-merlin-09-12-2019-2-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/merlin-despres/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156197189,
size: 0.5,
source: 159156,
target: 197189 });
// adding node
var x_node = Math.cos(2 * 605 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 605 * Math.PI / N) * 10;
g.nodes.push({
id: 197181,
label: 'MEMBER: Milena Milovanović',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/milena-milovanovic/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156197181,
size: 0.5,
source: 159156,
target: 197181 });
// adding node
var x_node = Math.cos(2 * 606 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 606 * Math.PI / N) * 10;
g.nodes.push({
id: 196957,
label: 'MEMBER: Sonia Goldina',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/02/research_pasteur-ensonia-goldinafrsofya-goldina-1675961843502-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/sonia-goldina/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156196957,
size: 0.5,
source: 159156,
target: 196957 });
// adding node
var x_node = Math.cos(2 * 607 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 607 * Math.PI / N) * 10;
g.nodes.push({
id: 196903,
label: 'MEMBER: Amaya Lehingue',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/02/research_pasteur-photo-amaya-lehingue-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/amaya-lehingue/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156196903,
size: 0.5,
source: 159156,
target: 196903 });
// adding node
var x_node = Math.cos(2 * 608 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 608 * Math.PI / N) * 10;
g.nodes.push({
id: 196848,
label: 'MEMBER: Camilla Anastasio',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/02/research_pasteur-camilla-anastasio-research-pasteur-camilla-anastasio-ca-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/camilla-anastasio/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156196848,
size: 0.5,
source: 159156,
target: 196848 });
// adding node
var x_node = Math.cos(2 * 609 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 609 * Math.PI / N) * 10;
g.nodes.push({
id: 196815,
label: 'MEMBER: Capucine Jeanton',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/02/research_pasteur-capucine-jeanton-img-0537-2-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/capucine-jeanton/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156196815,
size: 0.5,
source: 159156,
target: 196815 });
// adding node
var x_node = Math.cos(2 * 610 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 610 * Math.PI / N) * 10;
g.nodes.push({
id: 196793,
label: 'MEMBER: Benjamin Maier',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/benjamin-maier/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156196793,
size: 0.5,
source: 159156,
target: 196793 });
// adding node
var x_node = Math.cos(2 * 611 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 611 * Math.PI / N) * 10;
g.nodes.push({
id: 196687,
label: 'MEMBER: Ara Schorscher-Petcu',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/ara-schorscher-petcu/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156196687,
size: 0.5,
source: 159156,
target: 196687 });
// adding node
var x_node = Math.cos(2 * 612 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 612 * Math.PI / N) * 10;
g.nodes.push({
id: 196586,
label: 'MEMBER: Claire Lansonneur',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/02/research_pasteur-claire-lansonneur-lansonneur-claire-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/claire-lansonneur/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156196586,
size: 0.5,
source: 159156,
target: 196586 });
// adding node
var x_node = Math.cos(2 * 613 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 613 * Math.PI / N) * 10;
g.nodes.push({
id: 196584,
label: 'MEMBER: Remi Trimbour',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/02/research_pasteur-remi-trimbour-signal-2023-02-10-181528-002-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/remi-trimbour/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156196584,
size: 0.5,
source: 159156,
target: 196584 });
// adding node
var x_node = Math.cos(2 * 614 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 614 * Math.PI / N) * 10;
g.nodes.push({
id: 196568,
label: 'MEMBER: Cyprien Noble',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/02/research_pasteur-research-pasteur-cyprien-noble-photo-2-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/cyprien-noble-2/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156196568,
size: 0.5,
source: 159156,
target: 196568 });
// adding node
var x_node = Math.cos(2 * 615 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 615 * Math.PI / N) * 10;
g.nodes.push({
id: 196483,
label: 'MEMBER: Achilleas Pitsillides',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/achilleas-pitsillides/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156196483,
size: 0.5,
source: 159156,
target: 196483 });
// adding node
var x_node = Math.cos(2 * 616 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 616 * Math.PI / N) * 10;
g.nodes.push({
id: 196414,
label: 'MEMBER: Stefan Nicolescu',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/02/research_pasteur-research-pasteur-photo-nicolescu-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/stefan-nicolescu/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156196414,
size: 0.5,
source: 159156,
target: 196414 });
// adding node
var x_node = Math.cos(2 * 617 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 617 * Math.PI / N) * 10;
g.nodes.push({
id: 196347,
label: 'MEMBER: Saline Jabre',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/02/research_pasteur-saline-jabre--150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/saline-jabre/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156196347,
size: 0.5,
source: 159156,
target: 196347 });
// adding node
var x_node = Math.cos(2 * 618 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 618 * Math.PI / N) * 10;
g.nodes.push({
id: 196337,
label: 'MEMBER: Lucas Facchinetti',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/02/research_pasteur-lucas-facchinetti-1704461585694-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/lucas-facchinetti/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156196337,
size: 0.5,
source: 159156,
target: 196337 });
// adding node
var x_node = Math.cos(2 * 619 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 619 * Math.PI / N) * 10;
g.nodes.push({
id: 196333,
label: 'MEMBER: Nawëll Belcaïd',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/nawell-belcaid/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156196333,
size: 0.5,
source: 159156,
target: 196333 });
// adding node
var x_node = Math.cos(2 * 620 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 620 * Math.PI / N) * 10;
g.nodes.push({
id: 196277,
label: 'MEMBER: Jolyn Oosters',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/02/research_pasteur-flavimmunity-jolyn-scaled-e1675787866253-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/jolyn-oosters/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156196277,
size: 0.5,
source: 159156,
target: 196277 });
// adding node
var x_node = Math.cos(2 * 621 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 621 * Math.PI / N) * 10;
g.nodes.push({
id: 196275,
label: 'MEMBER: Sina Sommer',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/02/research_pasteur-flavimmunity-sina-scaled-e1675787914771-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/sina-sommer/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156196275,
size: 0.5,
source: 159156,
target: 196275 });
// adding node
var x_node = Math.cos(2 * 622 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 622 * Math.PI / N) * 10;
g.nodes.push({
id: 196268,
label: 'MEMBER: Max Baker',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/02/research_pasteur-max-baker-research-pasteur-max-baker-screenshot-2023-02-02-at-21.29.38-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/max-baker/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156196268,
size: 0.5,
source: 159156,
target: 196268 });
// adding node
var x_node = Math.cos(2 * 623 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 623 * Math.PI / N) * 10;
g.nodes.push({
id: 196265,
label: 'MEMBER: Juan Manuel Battagliotti',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/02/research_pasteur-juan-manuel-battagliotti-research-pasteur-juan-manuel-battagliotti-screenshot-2023-02-02-at-21.30.00-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/juan-manuel-battagliotti/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156196265,
size: 0.5,
source: 159156,
target: 196265 });
// adding node
var x_node = Math.cos(2 * 624 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 624 * Math.PI / N) * 10;
g.nodes.push({
id: 196215,
label: 'MEMBER: Romain Villa',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/02/research_pasteur-romain-villa-img-20220605-wa0005-e1675352679136-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/romain-villa/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156196215,
size: 0.5,
source: 159156,
target: 196215 });
// adding node
var x_node = Math.cos(2 * 625 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 625 * Math.PI / N) * 10;
g.nodes.push({
id: 196187,
label: 'MEMBER: Rémy Masson',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/02/research_pasteur-remy-masson-large-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/remy-masson/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156196187,
size: 0.5,
source: 159156,
target: 196187 });
// adding node
var x_node = Math.cos(2 * 626 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 626 * Math.PI / N) * 10;
g.nodes.push({
id: 196176,
label: 'MEMBER: Giada Mura',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/02/research_pasteur-foto-gm-recadree-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/giada-mura/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156196176,
size: 0.5,
source: 159156,
target: 196176 });
// adding node
var x_node = Math.cos(2 * 627 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 627 * Math.PI / N) * 10;
g.nodes.push({
id: 196173,
label: 'MEMBER: Rémy Yim',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/02/research_pasteur-remy-yim-1663192612905-1-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/remy-yim/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156196173,
size: 0.5,
source: 159156,
target: 196173 });
// adding node
var x_node = Math.cos(2 * 628 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 628 * Math.PI / N) * 10;
g.nodes.push({
id: 196097,
label: 'MEMBER: hannah Simmons Hovorka',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/hannah-simmons-hovorka/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156196097,
size: 0.5,
source: 159156,
target: 196097 });
// adding node
var x_node = Math.cos(2 * 629 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 629 * Math.PI / N) * 10;
g.nodes.push({
id: 196069,
label: 'MEMBER: Sophie Dauzet',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/02/research_pasteur-sophie-dauzet-photo-sophie-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/sophie-dauzet/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156196069,
size: 0.5,
source: 159156,
target: 196069 });
// adding node
var x_node = Math.cos(2 * 630 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 630 * Math.PI / N) * 10;
g.nodes.push({
id: 196063,
label: 'MEMBER: Sébastien Velut',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/sebastien-velut/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156196063,
size: 0.5,
source: 159156,
target: 196063 });
// adding node
var x_node = Math.cos(2 * 631 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 631 * Math.PI / N) * 10;
g.nodes.push({
id: 196028,
label: 'MEMBER: Eli Barthome',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/eli-barthome/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156196028,
size: 0.5,
source: 159156,
target: 196028 });
// adding node
var x_node = Math.cos(2 * 632 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 632 * Math.PI / N) * 10;
g.nodes.push({
id: 195989,
label: 'MEMBER: Léa Vendramini',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/lea-vendramini/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156195989,
size: 0.5,
source: 159156,
target: 195989 });
// adding node
var x_node = Math.cos(2 * 633 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 633 * Math.PI / N) * 10;
g.nodes.push({
id: 195987,
label: 'MEMBER: Catalina Salas Ciudad',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/catalina-salas-ciudad/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156195987,
size: 0.5,
source: 159156,
target: 195987 });
// adding node
var x_node = Math.cos(2 * 634 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 634 * Math.PI / N) * 10;
g.nodes.push({
id: 195984,
label: 'MEMBER: Sacha Sarfati',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/02/research_pasteur-sacha-sarfati-76a2b3de-89a8-46c6-bdbf-add75a660ea6-1-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/sacha-sarfati/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156195984,
size: 0.5,
source: 159156,
target: 195984 });
// adding node
var x_node = Math.cos(2 * 635 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 635 * Math.PI / N) * 10;
g.nodes.push({
id: 195981,
label: 'MEMBER: Myriam Aouiti Trabelsi',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/myriam-aouiti-trabelsi/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156195981,
size: 0.5,
source: 159156,
target: 195981 });
// adding node
var x_node = Math.cos(2 * 636 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 636 * Math.PI / N) * 10;
g.nodes.push({
id: 195909,
label: 'MEMBER: Arnaud Coez',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/arnaud-coez/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156195909,
size: 0.5,
source: 159156,
target: 195909 });
// adding node
var x_node = Math.cos(2 * 637 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 637 * Math.PI / N) * 10;
g.nodes.push({
id: 195902,
label: 'MEMBER: Perrine Morvan',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/01/research_pasteur-perrine-morvan-microsoftteams-image-1-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/perrine-morvan/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156195902,
size: 0.5,
source: 159156,
target: 195902 });
// adding node
var x_node = Math.cos(2 * 638 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 638 * Math.PI / N) * 10;
g.nodes.push({
id: 195900,
label: 'MEMBER: Laetitia Aka',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/01/research_pasteur-laetitia-aka-microsoftteams-image-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/laetitia-aka/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156195900,
size: 0.5,
source: 159156,
target: 195900 });
// adding node
var x_node = Math.cos(2 * 639 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 639 * Math.PI / N) * 10;
g.nodes.push({
id: 195773,
label: 'MEMBER: Siham Schacre',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/siham-schacre/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156195773,
size: 0.5,
source: 159156,
target: 195773 });
// adding node
var x_node = Math.cos(2 * 640 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 640 * Math.PI / N) * 10;
g.nodes.push({
id: 195771,
label: 'MEMBER: Sarah Kamami',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/sarah-kamami/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156195771,
size: 0.5,
source: 159156,
target: 195771 });
// adding node
var x_node = Math.cos(2 * 641 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 641 * Math.PI / N) * 10;
g.nodes.push({
id: 195736,
label: 'MEMBER: Jose Pablo Marin Obando',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/01/research_pasteur-jose-pablo-marin-obando-photo-jose-pablo-marin-obando-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/jose-pablo-marin-obando/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156195736,
size: 0.5,
source: 159156,
target: 195736 });
// adding node
var x_node = Math.cos(2 * 642 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 642 * Math.PI / N) * 10;
g.nodes.push({
id: 195636,
label: 'MEMBER: Houssem Chenane',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/houssem-chenane/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156195636,
size: 0.5,
source: 159156,
target: 195636 });
// adding node
var x_node = Math.cos(2 * 643 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 643 * Math.PI / N) * 10;
g.nodes.push({
id: 195616,
label: 'MEMBER: Anouar EL JID',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/anouar-el-jid/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156195616,
size: 0.5,
source: 159156,
target: 195616 });
// adding node
var x_node = Math.cos(2 * 644 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 644 * Math.PI / N) * 10;
g.nodes.push({
id: 195509,
label: 'MEMBER: Violaine Esnault',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/violaine-esnault/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156195509,
size: 0.5,
source: 159156,
target: 195509 });
// adding node
var x_node = Math.cos(2 * 645 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 645 * Math.PI / N) * 10;
g.nodes.push({
id: 195396,
label: 'MEMBER: Pauline Porschitz',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/pauline-porschitz/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156195396,
size: 0.5,
source: 159156,
target: 195396 });
// adding node
var x_node = Math.cos(2 * 646 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 646 * Math.PI / N) * 10;
g.nodes.push({
id: 195412,
label: 'MEMBER: Jan Stenkiewicz-Witeska',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/01/research_pasteur-jan-stenkiewicz-witeska-img-7123-1-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/jan-stenkiewicz-witeska/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156195412,
size: 0.5,
source: 159156,
target: 195412 });
// adding node
var x_node = Math.cos(2 * 647 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 647 * Math.PI / N) * 10;
g.nodes.push({
id: 195410,
label: 'MEMBER: Rima Singha',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/rima-singha/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156195410,
size: 0.5,
source: 159156,
target: 195410 });
// adding node
var x_node = Math.cos(2 * 648 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 648 * Math.PI / N) * 10;
g.nodes.push({
id: 194626,
label: 'MEMBER: Johannes Groen',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/01/research_pasteur-foto-jan-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/johannes-groen/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156194626,
size: 0.5,
source: 159156,
target: 194626 });
// adding node
var x_node = Math.cos(2 * 649 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 649 * Math.PI / N) * 10;
g.nodes.push({
id: 195359,
label: 'MEMBER: Marine Samson',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/marine-samson/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156195359,
size: 0.5,
source: 159156,
target: 195359 });
// adding node
var x_node = Math.cos(2 * 650 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 650 * Math.PI / N) * 10;
g.nodes.push({
id: 195357,
label: 'MEMBER: Mariem Essaïdani',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/mariem-essaidani/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156195357,
size: 0.5,
source: 159156,
target: 195357 });
// adding node
var x_node = Math.cos(2 * 651 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 651 * Math.PI / N) * 10;
g.nodes.push({
id: 195290,
label: 'MEMBER: Geert-Jan Huizing',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/01/research_pasteur-geert-jan-huizing-research-pasteur-geert-jan-huizing-profile-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/geert-jan-huizing/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156195290,
size: 0.5,
source: 159156,
target: 195290 });
// adding node
var x_node = Math.cos(2 * 652 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 652 * Math.PI / N) * 10;
g.nodes.push({
id: 195288,
label: 'MEMBER: Jules Samaran',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/01/research_pasteur-jules-samaran-img-20220729-wa0097-e1676369119204-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/jules-samaran/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156195288,
size: 0.5,
source: 159156,
target: 195288 });
// adding node
var x_node = Math.cos(2 * 653 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 653 * Math.PI / N) * 10;
g.nodes.push({
id: 195216,
label: 'MEMBER: Caroline Henrot',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/01/research_pasteur-caroline-henrot-pasteur-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/caroline-henrot/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156195216,
size: 0.5,
source: 159156,
target: 195216 });
// adding node
var x_node = Math.cos(2 * 654 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 654 * Math.PI / N) * 10;
g.nodes.push({
id: 195208,
label: 'MEMBER: Mylan Ansel',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/01/research_pasteur-mylan-2-150x150.png',
page_url: 'https://research.pasteur.fr/en/member/mylan-ansel/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156195208,
size: 0.5,
source: 159156,
target: 195208 });
// adding node
var x_node = Math.cos(2 * 655 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 655 * Math.PI / N) * 10;
g.nodes.push({
id: 195203,
label: 'MEMBER: Maite Freire Delgado',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/01/research_pasteur-research-pasteur-screen-shot-2022-02-28-at-4.39.35-pm-copie-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/maite-freire-delgado/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156195203,
size: 0.5,
source: 159156,
target: 195203 });
// adding node
var x_node = Math.cos(2 * 656 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 656 * Math.PI / N) * 10;
g.nodes.push({
id: 195199,
label: 'MEMBER: Núria Ros i Rocher',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/01/research_pasteur-img-20190705-152441-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/nuria-ros-i-rocher/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156195199,
size: 0.5,
source: 159156,
target: 195199 });
// adding node
var x_node = Math.cos(2 * 657 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 657 * Math.PI / N) * 10;
g.nodes.push({
id: 195180,
label: 'MEMBER: Chau Ngoc Minh Nguyen',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/chau-ngoc-minh-nguyen/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156195180,
size: 0.5,
source: 159156,
target: 195180 });
// adding node
var x_node = Math.cos(2 * 658 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 658 * Math.PI / N) * 10;
g.nodes.push({
id: 195178,
label: 'MEMBER: Emma Evrard',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/emma-evrard/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156195178,
size: 0.5,
source: 159156,
target: 195178 });
// adding node
var x_node = Math.cos(2 * 659 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 659 * Math.PI / N) * 10;
g.nodes.push({
id: 195170,
label: 'MEMBER: Laura Cantini',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/01/research_pasteur-laura-cantini-lauracantini-33-modifier-hdprint-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/laura-cantini/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156195170,
size: 0.5,
source: 159156,
target: 195170 });
// adding node
var x_node = Math.cos(2 * 660 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 660 * Math.PI / N) * 10;
g.nodes.push({
id: 195166,
label: 'MEMBER: Florian Westrelin',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/florian-westrelin/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156195166,
size: 0.5,
source: 159156,
target: 195166 });
// adding node
var x_node = Math.cos(2 * 661 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 661 * Math.PI / N) * 10;
g.nodes.push({
id: 195140,
label: 'MEMBER: Elena Ghiorzi',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/01/research_pasteur-elena-ghiorzi-research-pasteur-elena-ghiorzi-elena-ghiorzi-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/elena-ghiorzi/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156195140,
size: 0.5,
source: 159156,
target: 195140 });
// adding node
var x_node = Math.cos(2 * 662 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 662 * Math.PI / N) * 10;
g.nodes.push({
id: 195119,
label: 'MEMBER: Valérie Duverné-Polilat',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/01/research_pasteur-valerie-duverne-polilat-vdp-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/valerie-duverne-polilat/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156195119,
size: 0.5,
source: 159156,
target: 195119 });
// adding node
var x_node = Math.cos(2 * 663 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 663 * Math.PI / N) * 10;
g.nodes.push({
id: 195082,
label: 'MEMBER: Amandine Chantharah',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/amandine-chantharah/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156195082,
size: 0.5,
source: 159156,
target: 195082 });
// adding node
var x_node = Math.cos(2 * 664 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 664 * Math.PI / N) * 10;
g.nodes.push({
id: 195064,
label: 'MEMBER: Youna Coquin',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/youna-coquin/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156195064,
size: 0.5,
source: 159156,
target: 195064 });
// adding node
var x_node = Math.cos(2 * 665 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 665 * Math.PI / N) * 10;
g.nodes.push({
id: 195058,
label: 'MEMBER: Giovanni Begliomini',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/giovanni-begliomini-2/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156195058,
size: 0.5,
source: 159156,
target: 195058 });
// adding node
var x_node = Math.cos(2 * 666 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 666 * Math.PI / N) * 10;
g.nodes.push({
id: 195044,
label: 'MEMBER: Jeanne Pascard',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/giovanni-begliomini/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156195044,
size: 0.5,
source: 159156,
target: 195044 });
// adding node
var x_node = Math.cos(2 * 667 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 667 * Math.PI / N) * 10;
g.nodes.push({
id: 194968,
label: 'MEMBER: Mauro Castello Sanjuan',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/mauro-castello-sanjuan/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156194968,
size: 0.5,
source: 159156,
target: 194968 });
// adding node
var x_node = Math.cos(2 * 668 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 668 * Math.PI / N) * 10;
g.nodes.push({
id: 194966,
label: 'MEMBER: Inès Partouche',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/ines-partouche/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156194966,
size: 0.5,
source: 159156,
target: 194966 });
// adding node
var x_node = Math.cos(2 * 669 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 669 * Math.PI / N) * 10;
g.nodes.push({
id: 194799,
label: 'MEMBER: Maurine Delhaye',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/maurine-delhaye/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156194799,
size: 0.5,
source: 159156,
target: 194799 });
// adding node
var x_node = Math.cos(2 * 670 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 670 * Math.PI / N) * 10;
g.nodes.push({
id: 194657,
label: 'MEMBER: Vania Rosas Magallanes',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/vania-rosas-magallanes/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156194657,
size: 0.5,
source: 159156,
target: 194657 });
// adding node
var x_node = Math.cos(2 * 671 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 671 * Math.PI / N) * 10;
g.nodes.push({
id: 194622,
label: 'MEMBER: Thomas Treport',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/01/research_pasteur-thomas-treport-20220920-172855-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/thomas-treport/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156194622,
size: 0.5,
source: 159156,
target: 194622 });
// adding node
var x_node = Math.cos(2 * 672 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 672 * Math.PI / N) * 10;
g.nodes.push({
id: 194615,
label: 'MEMBER: Yara Bouery',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/yara-bouery/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156194615,
size: 0.5,
source: 159156,
target: 194615 });
// adding node
var x_node = Math.cos(2 * 673 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 673 * Math.PI / N) * 10;
g.nodes.push({
id: 194607,
label: 'MEMBER: Claire Giry',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/01/research_pasteur-claire-giry-img-20211023-wa00245459-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/claire-giry/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156194607,
size: 0.5,
source: 159156,
target: 194607 });
// adding node
var x_node = Math.cos(2 * 674 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 674 * Math.PI / N) * 10;
g.nodes.push({
id: 194605,
label: 'MEMBER: Delphine Sitterlin',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/01/research_pasteur-delphine-sitterlin-sans-titrev4-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/delphine-sitterlin/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156194605,
size: 0.5,
source: 159156,
target: 194605 });
// adding node
var x_node = Math.cos(2 * 675 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 675 * Math.PI / N) * 10;
g.nodes.push({
id: 194602,
label: 'MEMBER: Cyrielle Durand',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/01/research_pasteur-cyrielle-durand-snapchat-1724420620-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/cyrielle-durand/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156194602,
size: 0.5,
source: 159156,
target: 194602 });
// adding node
var x_node = Math.cos(2 * 676 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 676 * Math.PI / N) * 10;
g.nodes.push({
id: 194600,
label: 'MEMBER: Cédric Diot',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/01/research_pasteur-cedric-diot-92098693-1909507469182661-5002005903189213184-n-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/cedric-diot/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156194600,
size: 0.5,
source: 159156,
target: 194600 });
// adding node
var x_node = Math.cos(2 * 677 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 677 * Math.PI / N) * 10;
g.nodes.push({
id: 194573,
label: 'MEMBER: Adrien Paravel',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/adrien-paravel/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156194573,
size: 0.5,
source: 159156,
target: 194573 });
// adding node
var x_node = Math.cos(2 * 678 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 678 * Math.PI / N) * 10;
g.nodes.push({
id: 194504,
label: 'MEMBER: Meryem Memmadi',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/meryem-memmadi/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156194504,
size: 0.5,
source: 159156,
target: 194504 });
// adding node
var x_node = Math.cos(2 * 679 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 679 * Math.PI / N) * 10;
g.nodes.push({
id: 194492,
label: 'MEMBER: David Scheidweiler',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/01/research_pasteur-d.-scheidweiler-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/david-scheidweiler/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156194492,
size: 0.5,
source: 159156,
target: 194492 });
// adding node
var x_node = Math.cos(2 * 680 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 680 * Math.PI / N) * 10;
g.nodes.push({
id: 194451,
label: 'MEMBER: Riccardo Vernuccio',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/riccardo-vernuccio/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156194451,
size: 0.5,
source: 159156,
target: 194451 });
// adding node
var x_node = Math.cos(2 * 681 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 681 * Math.PI / N) * 10;
g.nodes.push({
id: 194391,
label: 'MEMBER: Quentin Fontaine',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/quentin-fontaine/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156194391,
size: 0.5,
source: 159156,
target: 194391 });
// adding node
var x_node = Math.cos(2 * 682 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 682 * Math.PI / N) * 10;
g.nodes.push({
id: 194290,
label: 'MEMBER: Tristan Woh',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/09/research_pasteur-tristan-woh-pasteur-photo-tw-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/tristan-woh/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156194290,
size: 0.5,
source: 159156,
target: 194290 });
// adding node
var x_node = Math.cos(2 * 683 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 683 * Math.PI / N) * 10;
g.nodes.push({
id: 194285,
label: 'MEMBER: Anaïs Fauchois',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/01/research_pasteur-anais-fauchois-anais-1-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/anais-fauchois/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156194285,
size: 0.5,
source: 159156,
target: 194285 });
// adding node
var x_node = Math.cos(2 * 684 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 684 * Math.PI / N) * 10;
g.nodes.push({
id: 194281,
label: 'MEMBER: Sabie Fabre',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/sabie-fabre/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156194281,
size: 0.5,
source: 159156,
target: 194281 });
// adding node
var x_node = Math.cos(2 * 685 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 685 * Math.PI / N) * 10;
g.nodes.push({
id: 194263,
label: 'MEMBER: Juliette Mondy',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/juliette-mondy/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156194263,
size: 0.5,
source: 159156,
target: 194263 });
// adding node
var x_node = Math.cos(2 * 686 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 686 * Math.PI / N) * 10;
g.nodes.push({
id: 194214,
label: 'MEMBER: Marta Alberti',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/marta-alberti/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156194214,
size: 0.5,
source: 159156,
target: 194214 });
// adding node
var x_node = Math.cos(2 * 687 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 687 * Math.PI / N) * 10;
g.nodes.push({
id: 194208,
label: 'MEMBER: Cecile Tillier',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/01/research_pasteur-cecile-tillier-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/cecile-tillier/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156194208,
size: 0.5,
source: 159156,
target: 194208 });
// adding node
var x_node = Math.cos(2 * 688 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 688 * Math.PI / N) * 10;
g.nodes.push({
id: 194202,
label: 'MEMBER: Elif Begum Gokerkucuk',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/elif-begum-gokerkucuk/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156194202,
size: 0.5,
source: 159156,
target: 194202 });
// adding node
var x_node = Math.cos(2 * 689 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 689 * Math.PI / N) * 10;
g.nodes.push({
id: 194195,
label: 'MEMBER: Felix Louchez',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/01/research_pasteur-felixlouchez-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/felix-louchez/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156194195,
size: 0.5,
source: 159156,
target: 194195 });
// adding node
var x_node = Math.cos(2 * 690 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 690 * Math.PI / N) * 10;
g.nodes.push({
id: 194190,
label: 'MEMBER: Phuong Anne Gunther',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/01/research_pasteur-anne-gunther-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/phuong-anne-gunther/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156194190,
size: 0.5,
source: 159156,
target: 194190 });
// adding node
var x_node = Math.cos(2 * 691 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 691 * Math.PI / N) * 10;
g.nodes.push({
id: 194184,
label: 'MEMBER: Thomas Harivel',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/01/research_pasteur-thomas-harivel-image-bci-department-150x150.png',
page_url: 'https://research.pasteur.fr/en/member/thomas-harivel/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156194184,
size: 0.5,
source: 159156,
target: 194184 });
// adding node
var x_node = Math.cos(2 * 692 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 692 * Math.PI / N) * 10;
g.nodes.push({
id: 194141,
label: 'MEMBER: Deborah Groussard',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/deborah-groussard/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156194141,
size: 0.5,
source: 159156,
target: 194141 });
// adding node
var x_node = Math.cos(2 * 693 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 693 * Math.PI / N) * 10;
g.nodes.push({
id: 194110,
label: 'MEMBER: Victoria Sevillia',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/01/research_pasteur-victoria-sevillia-photo-victoria-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/victoria-sevillia/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156194110,
size: 0.5,
source: 159156,
target: 194110 });
// adding node
var x_node = Math.cos(2 * 694 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 694 * Math.PI / N) * 10;
g.nodes.push({
id: 194108,
label: 'MEMBER: Benjamin Das Neves',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/01/research_pasteur-benjamin-das-neves-img-3977-1-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/benjamin-das-neves/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156194108,
size: 0.5,
source: 159156,
target: 194108 });
// adding node
var x_node = Math.cos(2 * 695 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 695 * Math.PI / N) * 10;
g.nodes.push({
id: 194077,
label: 'MEMBER: Oguzhan Parasayan',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/01/research_pasteur-photo-pasteur-oguzhan-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/oguzhan-parasayan/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156194077,
size: 0.5,
source: 159156,
target: 194077 });
// adding node
var x_node = Math.cos(2 * 696 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 696 * Math.PI / N) * 10;
g.nodes.push({
id: 194004,
label: 'MEMBER: Sita Jumatin Arapahni',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/01/research_pasteur-sita-jumatin-arapahni-pj-pu005-21215543-2022-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/sita-jumatin-arapahni/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156194004,
size: 0.5,
source: 159156,
target: 194004 });
// adding node
var x_node = Math.cos(2 * 697 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 697 * Math.PI / N) * 10;
g.nodes.push({
id: 193996,
label: 'MEMBER: Ali El Cheikh',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/01/research_pasteur-ali-el-cheikh-ali-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/ali-el-cheikh/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156193996,
size: 0.5,
source: 159156,
target: 193996 });
// adding node
var x_node = Math.cos(2 * 698 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 698 * Math.PI / N) * 10;
g.nodes.push({
id: 193991,
label: 'MEMBER: Ana Elena Retana Lopez',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/01/research_pasteur-retana-lopez-ana-elena-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/ana-elena-retana-lopez/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156193991,
size: 0.5,
source: 159156,
target: 193991 });
// adding node
var x_node = Math.cos(2 * 699 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 699 * Math.PI / N) * 10;
g.nodes.push({
id: 193939,
label: 'MEMBER: Samir Ali-Moussa',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/01/research_pasteur-photo-samir-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/samir-ali-moussa/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156193939,
size: 0.5,
source: 159156,
target: 193939 });
// adding node
var x_node = Math.cos(2 * 700 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 700 * Math.PI / N) * 10;
g.nodes.push({
id: 193913,
label: 'MEMBER: Meret Hopf',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/01/research_pasteur-63718b8a-dd6a-4371-90db-388de8e5dc01-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/meret-hopf/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156193913,
size: 0.5,
source: 159156,
target: 193913 });
// adding node
var x_node = Math.cos(2 * 701 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 701 * Math.PI / N) * 10;
g.nodes.push({
id: 193908,
label: 'MEMBER: Kennedy Bonjour de Oliveira Ferreira',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/01/research_pasteur-kennedy-bonjour-de-oliveira-ferreira-kennedy-bonjour-pic-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/kennedy-bonjour-de-oliveira-ferreira/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156193908,
size: 0.5,
source: 159156,
target: 193908 });
// adding node
var x_node = Math.cos(2 * 702 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 702 * Math.PI / N) * 10;
g.nodes.push({
id: 193903,
label: 'MEMBER: Nastaran Savar',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/01/research_pasteur-nastaran-sadat-savar-b612-20230109-153930-245-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/nastaran-sadat-savar/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156193903,
size: 0.5,
source: 159156,
target: 193903 });
// adding node
var x_node = Math.cos(2 * 703 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 703 * Math.PI / N) * 10;
g.nodes.push({
id: 193865,
label: 'MEMBER: Salim Chalal',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/salim-chalal/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156193865,
size: 0.5,
source: 159156,
target: 193865 });
// adding node
var x_node = Math.cos(2 * 704 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 704 * Math.PI / N) * 10;
g.nodes.push({
id: 193812,
label: 'MEMBER: Sarra Loulizi',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/01/research_pasteur-sarra-loulizi-img-20220917-113941-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/sarra-loulizi/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156193812,
size: 0.5,
source: 159156,
target: 193812 });
// adding node
var x_node = Math.cos(2 * 705 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 705 * Math.PI / N) * 10;
g.nodes.push({
id: 193792,
label: 'MEMBER: Remigiusz Walocha',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/05/research_pasteur-e9587e63-61ed-4bad-8e54-1ebe41dcfd07-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/remigiusz-walocha/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156193792,
size: 0.5,
source: 159156,
target: 193792 });
// adding node
var x_node = Math.cos(2 * 706 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 706 * Math.PI / N) * 10;
g.nodes.push({
id: 193769,
label: 'MEMBER: Dorian Garnier',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/dorian-garnier/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156193769,
size: 0.5,
source: 159156,
target: 193769 });
// adding node
var x_node = Math.cos(2 * 707 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 707 * Math.PI / N) * 10;
g.nodes.push({
id: 193543,
label: 'MEMBER: Jérôme Bourret',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/jerome-bourret/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156193543,
size: 0.5,
source: 159156,
target: 193543 });
// adding node
var x_node = Math.cos(2 * 708 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 708 * Math.PI / N) * 10;
g.nodes.push({
id: 193540,
label: 'MEMBER: Vanessa Guimaraes',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/vanessa-guimaraes/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156193540,
size: 0.5,
source: 159156,
target: 193540 });
// adding node
var x_node = Math.cos(2 * 709 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 709 * Math.PI / N) * 10;
g.nodes.push({
id: 193481,
label: 'MEMBER: Corentin Ramaugé Parra',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/01/research_pasteur-corentin-ramauge-parra-img-0419-2-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/corentin-ramauge-parra/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156193481,
size: 0.5,
source: 159156,
target: 193481 });
// adding node
var x_node = Math.cos(2 * 710 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 710 * Math.PI / N) * 10;
g.nodes.push({
id: 193476,
label: 'MEMBER: Gladwys Faucher',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/gladwys-faucher/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156193476,
size: 0.5,
source: 159156,
target: 193476 });
// adding node
var x_node = Math.cos(2 * 711 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 711 * Math.PI / N) * 10;
g.nodes.push({
id: 193450,
label: 'MEMBER: Yasmina Abou Haydar',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/01/research_pasteur-y.-abou-haydar-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/yasmina-abou-haydar/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156193450,
size: 0.5,
source: 159156,
target: 193450 });
// adding node
var x_node = Math.cos(2 * 712 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 712 * Math.PI / N) * 10;
g.nodes.push({
id: 193445,
label: 'MEMBER: Marie-Anne Rameix-Welti',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/01/research_pasteur-marie-anne-rameix-welti-rameix-welti-2019-e1673972371146-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/marie-anne-rameix-welti/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156193445,
size: 0.5,
source: 159156,
target: 193445 });
// adding node
var x_node = Math.cos(2 * 713 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 713 * Math.PI / N) * 10;
g.nodes.push({
id: 193399,
label: 'MEMBER: Violette Boudsocq',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/violette-boudsocq/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156193399,
size: 0.5,
source: 159156,
target: 193399 });
// adding node
var x_node = Math.cos(2 * 714 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 714 * Math.PI / N) * 10;
g.nodes.push({
id: 193310,
label: 'MEMBER: Yumi Gosselin',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/yumi-gosselin/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156193310,
size: 0.5,
source: 159156,
target: 193310 });
// adding node
var x_node = Math.cos(2 * 715 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 715 * Math.PI / N) * 10;
g.nodes.push({
id: 193301,
label: 'MEMBER: Matthieu Sèze',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/matthieu-seze/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156193301,
size: 0.5,
source: 159156,
target: 193301 });
// adding node
var x_node = Math.cos(2 * 716 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 716 * Math.PI / N) * 10;
g.nodes.push({
id: 193227,
label: 'MEMBER: Thibault Collin',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/01/research_pasteur-thibault-collin-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/thibault-collin/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156193227,
size: 0.5,
source: 159156,
target: 193227 });
// adding node
var x_node = Math.cos(2 * 717 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 717 * Math.PI / N) * 10;
g.nodes.push({
id: 193224,
label: 'MEMBER: Kevin Guenard',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/01/research_pasteur-kevin-guenard-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/kevin-guenard/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156193224,
size: 0.5,
source: 159156,
target: 193224 });
// adding node
var x_node = Math.cos(2 * 718 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 718 * Math.PI / N) * 10;
g.nodes.push({
id: 193087,
label: 'MEMBER: Henna Maulaboksh',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/henna-maulaboksh/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156193087,
size: 0.5,
source: 159156,
target: 193087 });
// adding node
var x_node = Math.cos(2 * 719 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 719 * Math.PI / N) * 10;
g.nodes.push({
id: 192367,
label: 'MEMBER: Typhaine Filhol',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/12/research_pasteur-typhaine-filhol-1696405874696-scaled-e1704443412654-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/typhaine-filhol/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156192367,
size: 0.5,
source: 159156,
target: 192367 });
// adding node
var x_node = Math.cos(2 * 720 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 720 * Math.PI / N) * 10;
g.nodes.push({
id: 192364,
label: 'MEMBER: Morgane Chesnais',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/morgane-chesnais/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156192364,
size: 0.5,
source: 159156,
target: 192364 });
// adding node
var x_node = Math.cos(2 * 721 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 721 * Math.PI / N) * 10;
g.nodes.push({
id: 192136,
label: 'MEMBER: Eva Chatonnat',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/12/research_pasteur-eva-chatonnat-unknown-1-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/eva-chatonnat/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156192136,
size: 0.5,
source: 159156,
target: 192136 });
// adding node
var x_node = Math.cos(2 * 722 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 722 * Math.PI / N) * 10;
g.nodes.push({
id: 192134,
label: 'MEMBER: Axel Ranson',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/axel-ranson/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156192134,
size: 0.5,
source: 159156,
target: 192134 });
// adding node
var x_node = Math.cos(2 * 723 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 723 * Math.PI / N) * 10;
g.nodes.push({
id: 192100,
label: 'MEMBER: Orso Subrini',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/orso-subrini/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156192100,
size: 0.5,
source: 159156,
target: 192100 });
// adding node
var x_node = Math.cos(2 * 724 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 724 * Math.PI / N) * 10;
g.nodes.push({
id: 192091,
label: 'MEMBER: Emelyne Bougit',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/12/research_pasteur-emelyne-bougit-bougitemelyne-photoid2-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/emelyne-bougit/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156192091,
size: 0.5,
source: 159156,
target: 192091 });
// adding node
var x_node = Math.cos(2 * 725 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 725 * Math.PI / N) * 10;
g.nodes.push({
id: 192085,
label: 'MEMBER: Cédric Thépenier',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/cedric-thepenier/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156192085,
size: 0.5,
source: 159156,
target: 192085 });
// adding node
var x_node = Math.cos(2 * 726 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 726 * Math.PI / N) * 10;
g.nodes.push({
id: 191929,
label: 'MEMBER: Maël Gourvès',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/12/research_pasteur-mael-gourves-photo1-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/mael-gourves/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156191929,
size: 0.5,
source: 159156,
target: 191929 });
// adding node
var x_node = Math.cos(2 * 727 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 727 * Math.PI / N) * 10;
g.nodes.push({
id: 191759,
label: 'MEMBER: Marie Robert',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/12/research_pasteur-photo-mr-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/marie-robert/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156191759,
size: 0.5,
source: 159156,
target: 191759 });
// adding node
var x_node = Math.cos(2 * 728 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 728 * Math.PI / N) * 10;
g.nodes.push({
id: 191696,
label: 'MEMBER: Justus Ninnemann',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/12/research_pasteur-justus-ninnemann-sans-titre-2-copie-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/justus-ninnemann/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156191696,
size: 0.5,
source: 159156,
target: 191696 });
// adding node
var x_node = Math.cos(2 * 729 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 729 * Math.PI / N) * 10;
g.nodes.push({
id: 191658,
label: 'MEMBER: Anna Maikova',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/12/research_pasteur-anna-maikova-img-8448-19-2-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/anna-maikova/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156191658,
size: 0.5,
source: 159156,
target: 191658 });
// adding node
var x_node = Math.cos(2 * 730 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 730 * Math.PI / N) * 10;
g.nodes.push({
id: 191651,
label: 'MEMBER: Giovanna De Brito Carneiro',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/12/research_pasteur-giovanna-de-brito-carneiro-facetune-06-04-2022-13-25-54-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/giovanna-de-brito-carneiro/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156191651,
size: 0.5,
source: 159156,
target: 191651 });
// adding node
var x_node = Math.cos(2 * 731 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 731 * Math.PI / N) * 10;
g.nodes.push({
id: 191575,
label: 'MEMBER: Khrystyna Matvieieva',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/12/research_pasteur-khrystyna-matvieieva-img-20221005-092919-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/khrystyna-matvieieva/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156191575,
size: 0.5,
source: 159156,
target: 191575 });
// adding node
var x_node = Math.cos(2 * 732 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 732 * Math.PI / N) * 10;
g.nodes.push({
id: 191571,
label: 'MEMBER: Chloe Leblond',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/chloe-leblond/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156191571,
size: 0.5,
source: 159156,
target: 191571 });
// adding node
var x_node = Math.cos(2 * 733 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 733 * Math.PI / N) * 10;
g.nodes.push({
id: 191383,
label: 'MEMBER: Estelle Lecat',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/estelle-lecat/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156191383,
size: 0.5,
source: 159156,
target: 191383 });
// adding node
var x_node = Math.cos(2 * 734 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 734 * Math.PI / N) * 10;
g.nodes.push({
id: 191380,
label: 'MEMBER: Johanna Gorkisch',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/johanna-gorkisch/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156191380,
size: 0.5,
source: 159156,
target: 191380 });
// adding node
var x_node = Math.cos(2 * 735 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 735 * Math.PI / N) * 10;
g.nodes.push({
id: 191318,
label: 'MEMBER: Lucie Brolon',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/lucie-brolon/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156191318,
size: 0.5,
source: 159156,
target: 191318 });
// adding node
var x_node = Math.cos(2 * 736 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 736 * Math.PI / N) * 10;
g.nodes.push({
id: 191305,
label: 'MEMBER: Eleonore Bouscasse',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/11/research_pasteur-eleonore-bouscasse-image-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/eleonore-bouscasse/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156191305,
size: 0.5,
source: 159156,
target: 191305 });
// adding node
var x_node = Math.cos(2 * 737 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 737 * Math.PI / N) * 10;
g.nodes.push({
id: 191298,
label: 'MEMBER: Rita Azevedo',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/11/research_pasteur-ana-rita-pereira-azevedo-processed-d335b97c-83a5-45a9-9c1f-6ef422fa2727-ainbw1ib-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/rita-azevedo/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156191298,
size: 0.5,
source: 159156,
target: 191298 });
// adding node
var x_node = Math.cos(2 * 738 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 738 * Math.PI / N) * 10;
g.nodes.push({
id: 191233,
label: 'MEMBER: Alex Barbier–Chebbah',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/11/research_pasteur-alex-barbier-chebbah-research-pasteur-alex-barbier-chebbah-photo5-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/alex-barbier-chebbah/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156191233,
size: 0.5,
source: 159156,
target: 191233 });
// adding node
var x_node = Math.cos(2 * 739 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 739 * Math.PI / N) * 10;
g.nodes.push({
id: 191231,
label: 'MEMBER: Robin Cremese',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/11/research_pasteur-robin-cremese-research-pasteur-robin-cremese-screenshot-2024-02-13-at-00.26.29-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/robin-cremese/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156191231,
size: 0.5,
source: 159156,
target: 191231 });
// adding node
var x_node = Math.cos(2 * 740 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 740 * Math.PI / N) * 10;
g.nodes.push({
id: 191181,
label: 'MEMBER: Artémis Matrakis',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/artemis-matrakis/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156191181,
size: 0.5,
source: 159156,
target: 191181 });
// adding node
var x_node = Math.cos(2 * 741 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 741 * Math.PI / N) * 10;
g.nodes.push({
id: 191157,
label: 'MEMBER: Nisha Veits',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/11/research_pasteur-nisha-veits-nisha-150x150.png',
page_url: 'https://research.pasteur.fr/en/member/nisha-veits/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156191157,
size: 0.5,
source: 159156,
target: 191157 });
// adding node
var x_node = Math.cos(2 * 742 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 742 * Math.PI / N) * 10;
g.nodes.push({
id: 191060,
label: 'MEMBER: Hélène Le Ribeuz',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/helene-le-ribeuz/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156191060,
size: 0.5,
source: 159156,
target: 191060 });
// adding node
var x_node = Math.cos(2 * 743 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 743 * Math.PI / N) * 10;
g.nodes.push({
id: 191053,
label: 'MEMBER: Margaux Campion',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/margaux-campion/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156191053,
size: 0.5,
source: 159156,
target: 191053 });
// adding node
var x_node = Math.cos(2 * 744 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 744 * Math.PI / N) * 10;
g.nodes.push({
id: 190989,
label: 'MEMBER: Simon Bessis',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/11/research_pasteur-simon-bessis-simon-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/simon-bessis/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156190989,
size: 0.5,
source: 159156,
target: 190989 });
// adding node
var x_node = Math.cos(2 * 745 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 745 * Math.PI / N) * 10;
g.nodes.push({
id: 190981,
label: 'MEMBER: Genny Amadei',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/01/research_pasteur-genny-amadei-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/genny-amadei/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156190981,
size: 0.5,
source: 159156,
target: 190981 });
// adding node
var x_node = Math.cos(2 * 746 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 746 * Math.PI / N) * 10;
g.nodes.push({
id: 190937,
label: 'MEMBER: Eve Cayla',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/eve-cayla/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156190937,
size: 0.5,
source: 159156,
target: 190937 });
// adding node
var x_node = Math.cos(2 * 747 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 747 * Math.PI / N) * 10;
g.nodes.push({
id: 190868,
label: 'MEMBER: Marielle Piber',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/marielle-piber/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156190868,
size: 0.5,
source: 159156,
target: 190868 });
// adding node
var x_node = Math.cos(2 * 748 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 748 * Math.PI / N) * 10;
g.nodes.push({
id: 190866,
label: 'MEMBER: Georg Braune',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/georg-braune/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156190866,
size: 0.5,
source: 159156,
target: 190866 });
// adding node
var x_node = Math.cos(2 * 749 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 749 * Math.PI / N) * 10;
g.nodes.push({
id: 190815,
label: 'MEMBER: Sangeeta Roy',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/sangeeta-roy/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156190815,
size: 0.5,
source: 159156,
target: 190815 });
// adding node
var x_node = Math.cos(2 * 750 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 750 * Math.PI / N) * 10;
g.nodes.push({
id: 190787,
label: 'MEMBER: Nathan Ribot',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/ribot-nathan/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156190787,
size: 0.5,
source: 159156,
target: 190787 });
// adding node
var x_node = Math.cos(2 * 751 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 751 * Math.PI / N) * 10;
g.nodes.push({
id: 190680,
label: 'MEMBER: Léo Hardy',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/11/research_pasteur-leo-hardy-hardy-leo-web-ip-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/leo-hardy/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156190680,
size: 0.5,
source: 159156,
target: 190680 });
// adding node
var x_node = Math.cos(2 * 752 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 752 * Math.PI / N) * 10;
g.nodes.push({
id: 190676,
label: 'MEMBER: Kevin Debatisse',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/11/research_pasteur-debatisse-kevin-web-ip-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/kevin-debatisse/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156190676,
size: 0.5,
source: 159156,
target: 190676 });
// adding node
var x_node = Math.cos(2 * 753 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 753 * Math.PI / N) * 10;
g.nodes.push({
id: 190654,
label: 'MEMBER: Timothé Jost-Mousseau',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/11/research_pasteur-timothe-jost-mousseau-research-pasteur-timothe-jost-mousseau-photo-tim-e1672934457363-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/timothe-jost-mousseau/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156190654,
size: 0.5,
source: 159156,
target: 190654 });
// adding node
var x_node = Math.cos(2 * 754 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 754 * Math.PI / N) * 10;
g.nodes.push({
id: 190624,
label: 'MEMBER: Minh-Ha Nguyen',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/11/research_pasteur-minh-ha-nguyen-imgp2936-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/minh-ha-nguyen/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156190624,
size: 0.5,
source: 159156,
target: 190624 });
// adding node
var x_node = Math.cos(2 * 755 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 755 * Math.PI / N) * 10;
g.nodes.push({
id: 190621,
label: 'MEMBER: Gaia Scilironi',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/11/research_pasteur-gaia-scilironi-image-6483441-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/gaia-scilironi/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156190621,
size: 0.5,
source: 159156,
target: 190621 });
// adding node
var x_node = Math.cos(2 * 756 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 756 * Math.PI / N) * 10;
g.nodes.push({
id: 190523,
label: 'MEMBER: Ludovica Veggiotti',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/11/research_pasteur-ludovica-veggiotti-veggiotti-ludovica-1-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/ludovica-veggiotti/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156190523,
size: 0.5,
source: 159156,
target: 190523 });
// adding node
var x_node = Math.cos(2 * 757 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 757 * Math.PI / N) * 10;
g.nodes.push({
id: 190514,
label: 'MEMBER: Elodie Couderc',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/11/research_pasteur-elodie-couderc-couderc-elodie-3511recadree-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/elodie-couderc-2/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156190514,
size: 0.5,
source: 159156,
target: 190514 });
// adding node
var x_node = Math.cos(2 * 758 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 758 * Math.PI / N) * 10;
g.nodes.push({
id: 190403,
label: 'MEMBER: Alexandre Elabbadi',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/11/research_pasteur-alexandre-elabbadi-photo-1-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/alexandre-elabbadi/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156190403,
size: 0.5,
source: 159156,
target: 190403 });
// adding node
var x_node = Math.cos(2 * 759 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 759 * Math.PI / N) * 10;
g.nodes.push({
id: 190391,
label: 'MEMBER: Anne-Lise Beaumont',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/11/research_pasteur-anne-lise-beaumont-1667922002113-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/anne-lise-beaumont/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156190391,
size: 0.5,
source: 159156,
target: 190391 });
// adding node
var x_node = Math.cos(2 * 760 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 760 * Math.PI / N) * 10;
g.nodes.push({
id: 190388,
label: 'MEMBER: Michiel van der Zwan',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/10/research_pasteur-michiel-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/michiel-van-der-zwan/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156190388,
size: 0.5,
source: 159156,
target: 190388 });
// adding node
var x_node = Math.cos(2 * 761 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 761 * Math.PI / N) * 10;
g.nodes.push({
id: 190319,
label: 'MEMBER: Marine Andrade',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/marine-andrade/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156190319,
size: 0.5,
source: 159156,
target: 190319 });
// adding node
var x_node = Math.cos(2 * 762 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 762 * Math.PI / N) * 10;
g.nodes.push({
id: 190311,
label: 'MEMBER: Anna Both',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/11/research_pasteur-anna-both-both-anna-1-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/anna-both/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156190311,
size: 0.5,
source: 159156,
target: 190311 });
// adding node
var x_node = Math.cos(2 * 763 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 763 * Math.PI / N) * 10;
g.nodes.push({
id: 190201,
label: 'MEMBER: Melania Murolo',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/11/research_pasteur-melania-murolo-img-1430-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/melania-murolo/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156190201,
size: 0.5,
source: 159156,
target: 190201 });
// adding node
var x_node = Math.cos(2 * 764 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 764 * Math.PI / N) * 10;
g.nodes.push({
id: 190156,
label: 'MEMBER: Fabienne Benz',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/11/research_pasteur-fabienne-benz-dsc0113-passfotoformat-croped-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/fabienne-benz/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156190156,
size: 0.5,
source: 159156,
target: 190156 });
// adding node
var x_node = Math.cos(2 * 765 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 765 * Math.PI / N) * 10;
g.nodes.push({
id: 190145,
label: 'MEMBER: Anthony Bertrand',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/11/research_pasteur-photo-anthonybertrand-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/anthony-bertrand/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156190145,
size: 0.5,
source: 159156,
target: 190145 });
// adding node
var x_node = Math.cos(2 * 766 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 766 * Math.PI / N) * 10;
g.nodes.push({
id: 189972,
label: 'MEMBER: Thomas Musset',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/11/research_pasteur-thomas-musset-1670935836812-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/thomas-musset/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156189972,
size: 0.5,
source: 159156,
target: 189972 });
// adding node
var x_node = Math.cos(2 * 767 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 767 * Math.PI / N) * 10;
g.nodes.push({
id: 189865,
label: 'MEMBER: Eloi Vincent',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/10/research_pasteur-dsc5001-1-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/eloi-vincent-2/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156189865,
size: 0.5,
source: 159156,
target: 189865 });
// adding node
var x_node = Math.cos(2 * 768 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 768 * Math.PI / N) * 10;
g.nodes.push({
id: 189862,
label: 'MEMBER: Marie Imbert',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/10/research_pasteur-marie-imbert-img-3572-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/marie-imbert/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156189862,
size: 0.5,
source: 159156,
target: 189862 });
// adding node
var x_node = Math.cos(2 * 769 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 769 * Math.PI / N) * 10;
g.nodes.push({
id: 189855,
label: 'MEMBER: Diba Yaghoubi',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/10/research_pasteur-diba-yaghoubi-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/diba-yaghoubi/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156189855,
size: 0.5,
source: 159156,
target: 189855 });
// adding node
var x_node = Math.cos(2 * 770 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 770 * Math.PI / N) * 10;
g.nodes.push({
id: 189844,
label: 'MEMBER: Mareike Buhl',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/10/research_pasteur-mareike-buhl-research-pasteur-mareike-buhl-buhl-mareike-2023-06-small-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/mareike-buhl/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156189844,
size: 0.5,
source: 159156,
target: 189844 });
// adding node
var x_node = Math.cos(2 * 771 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 771 * Math.PI / N) * 10;
g.nodes.push({
id: 189842,
label: 'MEMBER: Marta Campi',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/marta-campi/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156189842,
size: 0.5,
source: 159156,
target: 189842 });
// adding node
var x_node = Math.cos(2 * 772 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 772 * Math.PI / N) * 10;
g.nodes.push({
id: 189826,
label: 'MEMBER: Sophie Ribadeau-Dumas',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/10/research_pasteur-sophie-ribadeau-dumas-photo-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/sophie-ribadeau-dumas/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156189826,
size: 0.5,
source: 159156,
target: 189826 });
// adding node
var x_node = Math.cos(2 * 773 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 773 * Math.PI / N) * 10;
g.nodes.push({
id: 189689,
label: 'MEMBER: Jose Roberto Ponce Lopez',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/10/research_pasteur-jose-roberto-ponce-lopez-rober1-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/jose-roberto-ponce-lopez/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156189689,
size: 0.5,
source: 159156,
target: 189689 });
// adding node
var x_node = Math.cos(2 * 774 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 774 * Math.PI / N) * 10;
g.nodes.push({
id: 189656,
label: 'MEMBER: Celena Neau',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/10/research_pasteur-celena-neau-313891400-3321864051421535-847490469650236267-n-4-scaled-e1668515999541-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/celena-neau/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156189656,
size: 0.5,
source: 159156,
target: 189656 });
// adding node
var x_node = Math.cos(2 * 775 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 775 * Math.PI / N) * 10;
g.nodes.push({
id: 189487,
label: 'MEMBER: Gladys Elisabeth',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/gladys-elisabeth/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156189487,
size: 0.5,
source: 159156,
target: 189487 });
// adding node
var x_node = Math.cos(2 * 776 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 776 * Math.PI / N) * 10;
g.nodes.push({
id: 189442,
label: 'MEMBER: Hiba Mejri',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/hiba-mejri/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156189442,
size: 0.5,
source: 159156,
target: 189442 });
// adding node
var x_node = Math.cos(2 * 777 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 777 * Math.PI / N) * 10;
g.nodes.push({
id: 189399,
label: 'MEMBER: Catherine Ladan',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/catherine-ladan/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156189399,
size: 0.5,
source: 159156,
target: 189399 });
// adding node
var x_node = Math.cos(2 * 778 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 778 * Math.PI / N) * 10;
g.nodes.push({
id: 189319,
label: 'MEMBER: Soufiane Jhilal',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/10/research_pasteur-soufiane-jhilal-1656462526388-01-2-e1666866183102-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/soufiane-jhilal/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156189319,
size: 0.5,
source: 159156,
target: 189319 });
// adding node
var x_node = Math.cos(2 * 779 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 779 * Math.PI / N) * 10;
g.nodes.push({
id: 189286,
label: 'MEMBER: Olesia Platonova',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/10/research_pasteur-olesia-platonova-olesia-official-photo-e1667393823639-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/olesia-platonova/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156189286,
size: 0.5,
source: 159156,
target: 189286 });
// adding node
var x_node = Math.cos(2 * 780 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 780 * Math.PI / N) * 10;
g.nodes.push({
id: 189268,
label: 'MEMBER: Madalina Ababii',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/10/research_pasteur-madalina-ababii-madalina-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/madalina-ababii/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156189268,
size: 0.5,
source: 159156,
target: 189268 });
// adding node
var x_node = Math.cos(2 * 781 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 781 * Math.PI / N) * 10;
g.nodes.push({
id: 189178,
label: 'MEMBER: Maëlle Daunesse',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/10/research_pasteur-maelle-daunesse-691914-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/maelle-daunesse/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156189178,
size: 0.5,
source: 159156,
target: 189178 });
// adding node
var x_node = Math.cos(2 * 782 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 782 * Math.PI / N) * 10;
g.nodes.push({
id: 189170,
label: 'MEMBER: Elena Capuzzo',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/10/research_pasteur-photo-elena-capuzzo-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/elena-capuzzo/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156189170,
size: 0.5,
source: 159156,
target: 189170 });
// adding node
var x_node = Math.cos(2 * 783 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 783 * Math.PI / N) * 10;
g.nodes.push({
id: 189128,
label: 'MEMBER: Amandine Valat',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/amandine-valat/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156189128,
size: 0.5,
source: 159156,
target: 189128 });
// adding node
var x_node = Math.cos(2 * 784 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 784 * Math.PI / N) * 10;
g.nodes.push({
id: 189125,
label: 'MEMBER: Aziliz Bothua-Mobian',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/aziliz-bothua-mobian/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156189125,
size: 0.5,
source: 159156,
target: 189125 });
// adding node
var x_node = Math.cos(2 * 785 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 785 * Math.PI / N) * 10;
g.nodes.push({
id: 189118,
label: 'MEMBER: Adrien Graciette',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/adrien-graciette/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156189118,
size: 0.5,
source: 159156,
target: 189118 });
// adding node
var x_node = Math.cos(2 * 786 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 786 * Math.PI / N) * 10;
g.nodes.push({
id: 189108,
label: 'MEMBER: Camille Floch',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/10/research_pasteur-camille-floch-floch-camille-photo-scaled-e1666256043285-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/camille-floch/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156189108,
size: 0.5,
source: 159156,
target: 189108 });
// adding node
var x_node = Math.cos(2 * 787 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 787 * Math.PI / N) * 10;
g.nodes.push({
id: 189101,
label: 'MEMBER: Aswathi Chakrapani',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/aswathi-chakrapani/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156189101,
size: 0.5,
source: 159156,
target: 189101 });
// adding node
var x_node = Math.cos(2 * 788 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 788 * Math.PI / N) * 10;
g.nodes.push({
id: 189062,
label: 'MEMBER: Salomé Guez',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/10/research_pasteur-salome-guez-capture-decran-2022-10-18-a-09.09.52-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/salome-guez/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156189062,
size: 0.5,
source: 159156,
target: 189062 });
// adding node
var x_node = Math.cos(2 * 789 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 789 * Math.PI / N) * 10;
g.nodes.push({
id: 189059,
label: 'MEMBER: Aelin Schouwenburg',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/aelin-schouwenburg/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156189059,
size: 0.5,
source: 159156,
target: 189059 });
// adding node
var x_node = Math.cos(2 * 790 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 790 * Math.PI / N) * 10;
g.nodes.push({
id: 189004,
label: 'MEMBER: Thomas Defard',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/10/research_pasteur-photo-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/thomas-defard/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156189004,
size: 0.5,
source: 159156,
target: 189004 });
// adding node
var x_node = Math.cos(2 * 791 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 791 * Math.PI / N) * 10;
g.nodes.push({
id: 189000,
label: 'MEMBER: Yining Zhao',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/10/research_pasteur-yining-zhao-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/yining-zhao/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156189000,
size: 0.5,
source: 159156,
target: 189000 });
// adding node
var x_node = Math.cos(2 * 792 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 792 * Math.PI / N) * 10;
g.nodes.push({
id: 188996,
label: 'MEMBER: Juan Diego Hernandez Camacho',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/10/research_pasteur-foto-carnet-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/juan-diego-hernandez-camacho/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156188996,
size: 0.5,
source: 159156,
target: 188996 });
// adding node
var x_node = Math.cos(2 * 793 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 793 * Math.PI / N) * 10;
g.nodes.push({
id: 188921,
label: 'MEMBER: Rajeev Mylapalli',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/10/research_pasteur-rajeev-mylapalli-31442aab-c371-42da-81a4-9a38b7bfda94-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/rajeev-mylapalli/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156188921,
size: 0.5,
source: 159156,
target: 188921 });
// adding node
var x_node = Math.cos(2 * 794 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 794 * Math.PI / N) * 10;
g.nodes.push({
id: 188915,
label: 'MEMBER: Vaibhav Sahu',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/vaibhav-sahu/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156188915,
size: 0.5,
source: 159156,
target: 188915 });
// adding node
var x_node = Math.cos(2 * 795 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 795 * Math.PI / N) * 10;
g.nodes.push({
id: 188806,
label: 'MEMBER: Fatima Jerez Arroyo',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/10/research_pasteur-fatima-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/fatima-jerez-arroyo/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156188806,
size: 0.5,
source: 159156,
target: 188806 });
// adding node
var x_node = Math.cos(2 * 796 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 796 * Math.PI / N) * 10;
g.nodes.push({
id: 188804,
label: 'MEMBER: Yago Pazos Boubeta',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/10/research_pasteur-yago-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/yago-pazos-boubeta/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156188804,
size: 0.5,
source: 159156,
target: 188804 });
// adding node
var x_node = Math.cos(2 * 797 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 797 * Math.PI / N) * 10;
g.nodes.push({
id: 188798,
label: 'MEMBER: Francisco Palma Cerda',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/10/research_pasteur-francisco-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/francisco-palma-cerda/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156188798,
size: 0.5,
source: 159156,
target: 188798 });
// adding node
var x_node = Math.cos(2 * 798 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 798 * Math.PI / N) * 10;
g.nodes.push({
id: 188779,
label: 'MEMBER: Jimena Frontera',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/10/research_pasteur-jimena--150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/jimena-frontera/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156188779,
size: 0.5,
source: 159156,
target: 188779 });
// adding node
var x_node = Math.cos(2 * 799 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 799 * Math.PI / N) * 10;
g.nodes.push({
id: 188718,
label: 'MEMBER: Anne-Dominique Lodeho-Devauchelle',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/10/research_pasteur-anne-dominique-lodeho-devauchelle-photoadlodeho-201903-recadree2-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/anne-dominique-lodeho-devauchelle/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156188718,
size: 0.5,
source: 159156,
target: 188718 });
// adding node
var x_node = Math.cos(2 * 800 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 800 * Math.PI / N) * 10;
g.nodes.push({
id: 188703,
label: 'MEMBER: Audrey Hessel',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/10/research_pasteur-audrey-hessel-research-pasteur-audrey-hessel-capture-decran-2023-04-19-a-08.06.31-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/audrey-hessel/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156188703,
size: 0.5,
source: 159156,
target: 188703 });
// adding node
var x_node = Math.cos(2 * 801 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 801 * Math.PI / N) * 10;
g.nodes.push({
id: 188701,
label: 'MEMBER: Samar Berreira Ibraim',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/samar-berreira-ibraim/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156188701,
size: 0.5,
source: 159156,
target: 188701 });
// adding node
var x_node = Math.cos(2 * 802 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 802 * Math.PI / N) * 10;
g.nodes.push({
id: 188699,
label: 'MEMBER: Elodie Chapeaublanc',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/10/research_pasteur-elodie-chapeaublanc-elodie-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/elodie-chapeaublanc/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156188699,
size: 0.5,
source: 159156,
target: 188699 });
// adding node
var x_node = Math.cos(2 * 803 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 803 * Math.PI / N) * 10;
g.nodes.push({
id: 188697,
label: 'MEMBER: Juliette Meyer',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/10/research_pasteur-juliette-meyer-photo1-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/juliette-meyer/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156188697,
size: 0.5,
source: 159156,
target: 188697 });
// adding node
var x_node = Math.cos(2 * 804 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 804 * Math.PI / N) * 10;
g.nodes.push({
id: 188694,
label: 'MEMBER: Evangelia Eleftheriou',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/evangelia-eleftheriou/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156188694,
size: 0.5,
source: 159156,
target: 188694 });
// adding node
var x_node = Math.cos(2 * 805 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 805 * Math.PI / N) * 10;
g.nodes.push({
id: 188633,
label: 'MEMBER: Lena Henke',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/10/research_pasteur-lena-henke-lhenke-mpi-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/lena-henke/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156188633,
size: 0.5,
source: 159156,
target: 188633 });
// adding node
var x_node = Math.cos(2 * 806 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 806 * Math.PI / N) * 10;
g.nodes.push({
id: 188536,
label: 'MEMBER: Benjamin Vesin',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/10/research_pasteur-benjamin-vesin-img-20220724-wa0027-3-1-1-e1665656552693-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/benjamin-vesin/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156188536,
size: 0.5,
source: 159156,
target: 188536 });
// adding node
var x_node = Math.cos(2 * 807 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 807 * Math.PI / N) * 10;
g.nodes.push({
id: 188534,
label: 'MEMBER: Anastasia Goloudina',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/anastasia-goloudina/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156188534,
size: 0.5,
source: 159156,
target: 188534 });
// adding node
var x_node = Math.cos(2 * 808 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 808 * Math.PI / N) * 10;
g.nodes.push({
id: 188532,
label: 'MEMBER: Laëtitia Douguet',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/laetitia-douguet/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156188532,
size: 0.5,
source: 159156,
target: 188532 });
// adding node
var x_node = Math.cos(2 * 809 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 809 * Math.PI / N) * 10;
g.nodes.push({
id: 188530,
label: 'MEMBER: Pierre Authié',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/pierre-authie/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156188530,
size: 0.5,
source: 159156,
target: 188530 });
// adding node
var x_node = Math.cos(2 * 810 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 810 * Math.PI / N) * 10;
g.nodes.push({
id: 188527,
label: 'MEMBER: Fanny Moncoq',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/fanny-moncoq/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156188527,
size: 0.5,
source: 159156,
target: 188527 });
// adding node
var x_node = Math.cos(2 * 811 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 811 * Math.PI / N) * 10;
g.nodes.push({
id: 188522,
label: 'MEMBER: Amandine Noirat',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/amandine-noirat/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156188522,
size: 0.5,
source: 159156,
target: 188522 });
// adding node
var x_node = Math.cos(2 * 812 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 812 * Math.PI / N) * 10;
g.nodes.push({
id: 188321,
label: 'MEMBER: Anna Klimova',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/10/research_pasteur-anna-klimova-ak-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/anna-klimova/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156188321,
size: 0.5,
source: 159156,
target: 188321 });
// adding node
var x_node = Math.cos(2 * 813 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 813 * Math.PI / N) * 10;
g.nodes.push({
id: 188270,
label: 'MEMBER: Catherine Helbing',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/10/research_pasteur-catherine-helbing-catherine-helbing-2-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/catherine-helbing/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156188270,
size: 0.5,
source: 159156,
target: 188270 });
// adding node
var x_node = Math.cos(2 * 814 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 814 * Math.PI / N) * 10;
g.nodes.push({
id: 188261,
label: 'MEMBER: Matthew Shin',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/10/research_pasteur-matthew-shin-20221003-213850-16-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/matthew-shin/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156188261,
size: 0.5,
source: 159156,
target: 188261 });
// adding node
var x_node = Math.cos(2 * 815 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 815 * Math.PI / N) * 10;
g.nodes.push({
id: 188247,
label: 'MEMBER: Agnès Mer Appere',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/10/research_pasteur-agnes-mer-appere-ama-2018-dsc8334-c-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/agnes-mer-appere/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156188247,
size: 0.5,
source: 159156,
target: 188247 });
// adding node
var x_node = Math.cos(2 * 816 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 816 * Math.PI / N) * 10;
g.nodes.push({
id: 188204,
label: 'MEMBER: Victoria Vienne',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/10/research_pasteur-victoria-vienne-20220212-170627-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/victoria-vienne/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156188204,
size: 0.5,
source: 159156,
target: 188204 });
// adding node
var x_node = Math.cos(2 * 817 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 817 * Math.PI / N) * 10;
g.nodes.push({
id: 188128,
label: 'MEMBER: Umberto Palatini',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/10/research_pasteur-umberto-palatini-umberto-palatini-1-scaledcropped-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/umberto-palatini/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156188128,
size: 0.5,
source: 159156,
target: 188128 });
// adding node
var x_node = Math.cos(2 * 818 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 818 * Math.PI / N) * 10;
g.nodes.push({
id: 188126,
label: 'MEMBER: Alexander Bergman',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/10/research_pasteur-alexander-bergman-index2-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/alexander-bergman/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156188126,
size: 0.5,
source: 159156,
target: 188126 });
// adding node
var x_node = Math.cos(2 * 819 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 819 * Math.PI / N) * 10;
g.nodes.push({
id: 188118,
label: 'MEMBER: Justine Groseille',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/10/research_pasteur-justine-groseille-img-8097-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/justine-groseille/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156188118,
size: 0.5,
source: 159156,
target: 188118 });
// adding node
var x_node = Math.cos(2 * 820 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 820 * Math.PI / N) * 10;
g.nodes.push({
id: 188113,
label: 'MEMBER: Azimdine Habib',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/10/research_pasteur-azimdine-habib-photo-le-26-04-2022-ae-15.09-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/azimdine-habib/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156188113,
size: 0.5,
source: 159156,
target: 188113 });
// adding node
var x_node = Math.cos(2 * 821 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 821 * Math.PI / N) * 10;
g.nodes.push({
id: 188111,
label: 'MEMBER: Florence Jagorel',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/10/research_pasteur-florence-jagorel-florence-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/florence-jagorel/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156188111,
size: 0.5,
source: 159156,
target: 188111 });
// adding node
var x_node = Math.cos(2 * 822 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 822 * Math.PI / N) * 10;
g.nodes.push({
id: 188088,
label: 'MEMBER: Laura Ramirez Finn',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/10/research_pasteur-laura-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/laura-ramirez-finn/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156188088,
size: 0.5,
source: 159156,
target: 188088 });
// adding node
var x_node = Math.cos(2 * 823 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 823 * Math.PI / N) * 10;
g.nodes.push({
id: 188083,
label: 'MEMBER: Ana Blas Medina',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/10/research_pasteur-ana-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/ana-blas-medina/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156188083,
size: 0.5,
source: 159156,
target: 188083 });
// adding node
var x_node = Math.cos(2 * 824 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 824 * Math.PI / N) * 10;
g.nodes.push({
id: 188079,
label: 'MEMBER: Paula Thiel Pizzaro',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/10/research_pasteur-paula-thiel-pizzaro-paula-thiel-pizarro-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/paula-thiel-pizzaro/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156188079,
size: 0.5,
source: 159156,
target: 188079 });
// adding node
var x_node = Math.cos(2 * 825 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 825 * Math.PI / N) * 10;
g.nodes.push({
id: 188060,
label: 'MEMBER: Anna Kurowska',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/10/research_pasteur-anna-kurowska-img-0644-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/anna-kurowska/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156188060,
size: 0.5,
source: 159156,
target: 188060 });
// adding node
var x_node = Math.cos(2 * 826 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 826 * Math.PI / N) * 10;
g.nodes.push({
id: 188008,
label: 'MEMBER: Gilles Leloup',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/gilles-leloup/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156188008,
size: 0.5,
source: 159156,
target: 188008 });
// adding node
var x_node = Math.cos(2 * 827 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 827 * Math.PI / N) * 10;
g.nodes.push({
id: 188006,
label: 'MEMBER: Émilie Faye',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/01/research_pasteur-enneural-coding-and-neuroengineering-of-human-speech-functions-frcodage-neural-et-ingenierie-des-fonctions-de-parole-emilie-faye-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/emilie-faye/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156188006,
size: 0.5,
source: 159156,
target: 188006 });
// adding node
var x_node = Math.cos(2 * 828 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 828 * Math.PI / N) * 10;
g.nodes.push({
id: 188001,
label: 'MEMBER: Mariette Vinurel',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/mariette-vinurel/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156188001,
size: 0.5,
source: 159156,
target: 188001 });
// adding node
var x_node = Math.cos(2 * 829 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 829 * Math.PI / N) * 10;
g.nodes.push({
id: 187990,
label: 'MEMBER: Xiaoyue Wang',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/10/research_pasteur-xiaoyue-wang-1-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/xiaoyue-wang/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156187990,
size: 0.5,
source: 159156,
target: 187990 });
// adding node
var x_node = Math.cos(2 * 830 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 830 * Math.PI / N) * 10;
g.nodes.push({
id: 187985,
label: 'MEMBER: Sophie Bouton',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/01/research_pasteur-enneural-coding-and-neuroengineering-of-human-speech-functions-frcodage-neural-et-ingenierie-des-fonctions-de-parole-photo-me-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/sophie-bouton/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156187985,
size: 0.5,
source: 159156,
target: 187985 });
// adding node
var x_node = Math.cos(2 * 831 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 831 * Math.PI / N) * 10;
g.nodes.push({
id: 187931,
label: 'MEMBER: Stephan Fischer',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/stephan-fischer/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156187931,
size: 0.5,
source: 159156,
target: 187931 });
// adding node
var x_node = Math.cos(2 * 832 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 832 * Math.PI / N) * 10;
g.nodes.push({
id: 187846,
label: 'MEMBER: Beatriz Beamud',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/09/research_pasteur-beatriz-beamud-bba-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/beatriz-beamud/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156187846,
size: 0.5,
source: 159156,
target: 187846 });
// adding node
var x_node = Math.cos(2 * 833 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 833 * Math.PI / N) * 10;
g.nodes.push({
id: 187839,
label: 'MEMBER: Paul Rochette',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/09/research_pasteur-paul-rochette-index-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/paul-rochette/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156187839,
size: 0.5,
source: 159156,
target: 187839 });
// adding node
var x_node = Math.cos(2 * 834 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 834 * Math.PI / N) * 10;
g.nodes.push({
id: 187766,
label: 'MEMBER: Anthony Rodrigues',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/anthony-rodrigues/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156187766,
size: 0.5,
source: 159156,
target: 187766 });
// adding node
var x_node = Math.cos(2 * 835 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 835 * Math.PI / N) * 10;
g.nodes.push({
id: 187666,
label: 'MEMBER: Cindy Michel',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/09/research_pasteur-cindy-michel-michel-cindy-6652b-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/cindy-michel/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156187666,
size: 0.5,
source: 159156,
target: 187666 });
// adding node
var x_node = Math.cos(2 * 836 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 836 * Math.PI / N) * 10;
g.nodes.push({
id: 187664,
label: 'MEMBER: Marie-Amandine Chabry',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/09/research_pasteur-marie-amandine-chabry-chabry-marie-amandine-6597b-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/marie-amandine-chabry/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156187664,
size: 0.5,
source: 159156,
target: 187664 });
// adding node
var x_node = Math.cos(2 * 837 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 837 * Math.PI / N) * 10;
g.nodes.push({
id: 187643,
label: 'MEMBER: Jong Eun Ihm',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/jong-eun-ihm/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156187643,
size: 0.5,
source: 159156,
target: 187643 });
// adding node
var x_node = Math.cos(2 * 838 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 838 * Math.PI / N) * 10;
g.nodes.push({
id: 187636,
label: 'MEMBER: Constantin Bogdan Ciambur',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/09/research_pasteur-constantin-bogdan-ciambur-research-pasteur-constantin-bogdan-ciambur-microsoftteams-image-3-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/constantin-bogdan-ciambur/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156187636,
size: 0.5,
source: 159156,
target: 187636 });
// adding node
var x_node = Math.cos(2 * 839 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 839 * Math.PI / N) * 10;
g.nodes.push({
id: 187565,
label: 'MEMBER: Antoine Bouchet',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/antoine-bouchet/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156187565,
size: 0.5,
source: 159156,
target: 187565 });
// adding node
var x_node = Math.cos(2 * 840 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 840 * Math.PI / N) * 10;
g.nodes.push({
id: 187502,
label: 'MEMBER: Katja Heuer',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/09/research_pasteur-katja-heuer-katja-150x150.png',
page_url: 'https://research.pasteur.fr/en/member/katja-heuer/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156187502,
size: 0.5,
source: 159156,
target: 187502 });
// adding node
var x_node = Math.cos(2 * 841 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 841 * Math.PI / N) * 10;
g.nodes.push({
id: 187500,
label: 'MEMBER: Nicolas Traut',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/09/research_pasteur-nicolas-traut-photo-nicolas-upscaled-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/nicolas-traut/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156187500,
size: 0.5,
source: 159156,
target: 187500 });
// adding node
var x_node = Math.cos(2 * 842 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 842 * Math.PI / N) * 10;
g.nodes.push({
id: 187296,
label: 'MEMBER: Giacomo Nardi',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/09/research_pasteur-giacomo-nardi-pic-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/giacomo-nardi/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156187296,
size: 0.5,
source: 159156,
target: 187296 });
// adding node
var x_node = Math.cos(2 * 843 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 843 * Math.PI / N) * 10;
g.nodes.push({
id: 187162,
label: 'MEMBER: Manuel Ares arroyo',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/09/research_pasteur-manuel-ares-arroyo-mahnbtdl-400x400-1-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/manuel-ares-arroyo/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156187162,
size: 0.5,
source: 159156,
target: 187162 });
// adding node
var x_node = Math.cos(2 * 844 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 844 * Math.PI / N) * 10;
g.nodes.push({
id: 187160,
label: 'MEMBER: Eloi Littner',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/09/research_pasteur-eloi-littner-profil-carre-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/eloi-littner/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156187160,
size: 0.5,
source: 159156,
target: 187160 });
// adding node
var x_node = Math.cos(2 * 845 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 845 * Math.PI / N) * 10;
g.nodes.push({
id: 187008,
label: 'MEMBER: Elodie Dandelot',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/09/research_pasteur-elodie-dandelot-1516808045836-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/elodie-dandelot/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156187008,
size: 0.5,
source: 159156,
target: 187008 });
// adding node
var x_node = Math.cos(2 * 846 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 846 * Math.PI / N) * 10;
g.nodes.push({
id: 186965,
label: 'MEMBER: Virginie Sauvage',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/virginie-sauvage/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156186965,
size: 0.5,
source: 159156,
target: 186965 });
// adding node
var x_node = Math.cos(2 * 847 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 847 * Math.PI / N) * 10;
g.nodes.push({
id: 186961,
label: 'MEMBER: Matthieu Cocagne',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/matthieu-cocagne__trashed/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156186961,
size: 0.5,
source: 159156,
target: 186961 });
// adding node
var x_node = Math.cos(2 * 848 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 848 * Math.PI / N) * 10;
g.nodes.push({
id: 186944,
label: 'MEMBER: Siby-Diakite Dieyenaba',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/siby-diakite-dieyenaba/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156186944,
size: 0.5,
source: 159156,
target: 186944 });
// adding node
var x_node = Math.cos(2 * 849 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 849 * Math.PI / N) * 10;
g.nodes.push({
id: 186561,
label: 'MEMBER: Elizabeth Nelson',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/09/research_pasteur-elizabeth-nelson-29-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/elizabeth-nelson/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156186561,
size: 0.5,
source: 159156,
target: 186561 });
// adding node
var x_node = Math.cos(2 * 850 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 850 * Math.PI / N) * 10;
g.nodes.push({
id: 186478,
label: 'MEMBER: Marija Nisavic',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/09/research_pasteur-marija-nisavic-img-20220710-112923-523-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/marija-nisavic/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156186478,
size: 0.5,
source: 159156,
target: 186478 });
// adding node
var x_node = Math.cos(2 * 851 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 851 * Math.PI / N) * 10;
g.nodes.push({
id: 186471,
label: 'MEMBER: Rayen Elj',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/09/research_pasteur-rayen-elj-photo-rayen-elj-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/rayen-elj/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156186471,
size: 0.5,
source: 159156,
target: 186471 });
// adding node
var x_node = Math.cos(2 * 852 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 852 * Math.PI / N) * 10;
g.nodes.push({
id: 186367,
label: 'MEMBER: Ludivine Baron',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/09/research_pasteur-baron-ludivine-7127-scaled-e1663919532830-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/ludivine-baron/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156186367,
size: 0.5,
source: 159156,
target: 186367 });
// adding node
var x_node = Math.cos(2 * 853 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 853 * Math.PI / N) * 10;
g.nodes.push({
id: 186364,
label: 'MEMBER: Sylvette Wiener Vacher',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/sylvette-wiener-vacher/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156186364,
size: 0.5,
source: 159156,
target: 186364 });
// adding node
var x_node = Math.cos(2 * 854 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 854 * Math.PI / N) * 10;
g.nodes.push({
id: 186361,
label: 'MEMBER: Paul Avan',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/paul-avan/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156186361,
size: 0.5,
source: 159156,
target: 186361 });
// adding node
var x_node = Math.cos(2 * 855 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 855 * Math.PI / N) * 10;
g.nodes.push({
id: 186346,
label: 'MEMBER: Quentin Leclerc',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/09/research_pasteur-quentin-leclerc-quentin-copy-1-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/quentin-leclerc/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156186346,
size: 0.5,
source: 159156,
target: 186346 });
// adding node
var x_node = Math.cos(2 * 856 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 856 * Math.PI / N) * 10;
g.nodes.push({
id: 186344,
label: 'MEMBER: Romain Narci',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/romain-narci/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156186344,
size: 0.5,
source: 159156,
target: 186344 });
// adding node
var x_node = Math.cos(2 * 857 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 857 * Math.PI / N) * 10;
g.nodes.push({
id: 186314,
label: 'MEMBER: Charlotte Perlant',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/09/research_pasteur-charlotte-perlant-charlotte2-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/charlotte-perlant/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156186314,
size: 0.5,
source: 159156,
target: 186314 });
// adding node
var x_node = Math.cos(2 * 858 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 858 * Math.PI / N) * 10;
g.nodes.push({
id: 186177,
label: 'MEMBER: Leela Thamaraikkannan',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/leela-thamaraikkannan/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156186177,
size: 0.5,
source: 159156,
target: 186177 });
// adding node
var x_node = Math.cos(2 * 859 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 859 * Math.PI / N) * 10;
g.nodes.push({
id: 186173,
label: 'MEMBER: Lina Cristancho Fajardo',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/09/research_pasteur-lina-cristancho-fajardo-2024-01-11-10.58.20-e1704967192825-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/lina-cristancho-fajardo/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156186173,
size: 0.5,
source: 159156,
target: 186173 });
// adding node
var x_node = Math.cos(2 * 860 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 860 * Math.PI / N) * 10;
g.nodes.push({
id: 186135,
label: 'MEMBER: Orgeta Zejneli',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/09/research_pasteur-image-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/orgeta-zejneli/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156186135,
size: 0.5,
source: 159156,
target: 186135 });
// adding node
var x_node = Math.cos(2 * 861 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 861 * Math.PI / N) * 10;
g.nodes.push({
id: 185792,
label: 'MEMBER: Kimi Azad',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/08/research_pasteur-kimi-photo1-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/kimi-azad/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156185792,
size: 0.5,
source: 159156,
target: 185792 });
// adding node
var x_node = Math.cos(2 * 862 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 862 * Math.PI / N) * 10;
g.nodes.push({
id: 185772,
label: 'MEMBER: Leah Friedman',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/08/research_pasteur-leah-friedman-photo-leah-friedman-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/leah-friedman/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156185772,
size: 0.5,
source: 159156,
target: 185772 });
// adding node
var x_node = Math.cos(2 * 863 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 863 * Math.PI / N) * 10;
g.nodes.push({
id: 185770,
label: 'MEMBER: Leone Debarge',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/leone-debarge/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156185770,
size: 0.5,
source: 159156,
target: 185770 });
// adding node
var x_node = Math.cos(2 * 864 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 864 * Math.PI / N) * 10;
g.nodes.push({
id: 185768,
label: 'MEMBER: Judith Pineau',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/08/research_pasteur-judith-pineau-55a58678-0f1c-4b47-8080-d067a2aa145a-1-201-a-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/judith-pineau/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156185768,
size: 0.5,
source: 159156,
target: 185768 });
// adding node
var x_node = Math.cos(2 * 865 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 865 * Math.PI / N) * 10;
g.nodes.push({
id: 185324,
label: 'MEMBER: Barbara Mouyama',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/barbara-mouyama/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156185324,
size: 0.5,
source: 159156,
target: 185324 });
// adding node
var x_node = Math.cos(2 * 866 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 866 * Math.PI / N) * 10;
g.nodes.push({
id: 185174,
label: 'MEMBER: Praveen Rahi',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/praveen-rahi/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156185174,
size: 0.5,
source: 159156,
target: 185174 });
// adding node
var x_node = Math.cos(2 * 867 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 867 * Math.PI / N) * 10;
g.nodes.push({
id: 185144,
label: 'MEMBER: Thomas Delerue',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/thomas-delerue/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156185144,
size: 0.5,
source: 159156,
target: 185144 });
// adding node
var x_node = Math.cos(2 * 868 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 868 * Math.PI / N) * 10;
g.nodes.push({
id: 184781,
label: 'MEMBER: Christine Letellier',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/01/research_pasteur-christine-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/christine-letellier/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156184781,
size: 0.5,
source: 159156,
target: 184781 });
// adding node
var x_node = Math.cos(2 * 869 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 869 * Math.PI / N) * 10;
g.nodes.push({
id: 183961,
label: 'MEMBER: Pedro Dorado Morales',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/07/research_pasteur-dorado-pedro-web-ip-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/pedro-dorado-morales/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156183961,
size: 0.5,
source: 159156,
target: 183961 });
// adding node
var x_node = Math.cos(2 * 870 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 870 * Math.PI / N) * 10;
g.nodes.push({
id: 183926,
label: 'MEMBER: Clément Tarantini',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/quentin-tarantini/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156183926,
size: 0.5,
source: 159156,
target: 183926 });
// adding node
var x_node = Math.cos(2 * 871 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 871 * Math.PI / N) * 10;
g.nodes.push({
id: 183925,
label: 'MEMBER: Fleur Beauvieux',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/fleur-beauvieux/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156183925,
size: 0.5,
source: 159156,
target: 183925 });
// adding node
var x_node = Math.cos(2 * 872 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 872 * Math.PI / N) * 10;
g.nodes.push({
id: 183886,
label: 'MEMBER: Manon Perrot',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/07/research_pasteur-manon-perrot-index-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/manon-perrot/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156183886,
size: 0.5,
source: 159156,
target: 183886 });
// adding node
var x_node = Math.cos(2 * 873 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 873 * Math.PI / N) * 10;
g.nodes.push({
id: 183755,
label: 'MEMBER: Jean-Claude Dupont',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/07/research_pasteur-jean-claude-dupont-small-img-20210609-194406-534-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/jean-claude-dupont/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156183755,
size: 0.5,
source: 159156,
target: 183755 });
// adding node
var x_node = Math.cos(2 * 874 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 874 * Math.PI / N) * 10;
g.nodes.push({
id: 183423,
label: 'MEMBER: Adam Keely',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/adam-keely/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156183423,
size: 0.5,
source: 159156,
target: 183423 });
// adding node
var x_node = Math.cos(2 * 875 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 875 * Math.PI / N) * 10;
g.nodes.push({
id: 183396,
label: 'MEMBER: Maxence Collard',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/maxence-collard-2/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156183396,
size: 0.5,
source: 159156,
target: 183396 });
// adding node
var x_node = Math.cos(2 * 876 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 876 * Math.PI / N) * 10;
g.nodes.push({
id: 183391,
label: 'MEMBER: Gaia Vannini',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/maxence-collard/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156183391,
size: 0.5,
source: 159156,
target: 183391 });
// adding node
var x_node = Math.cos(2 * 877 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 877 * Math.PI / N) * 10;
g.nodes.push({
id: 183349,
label: 'MEMBER: Antoine Brault',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/07/research_pasteur-antoine-brault-bc8898e5-5dec-4ebe-b180-d9397ab43630-1-105-c-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/antoine-brault-2/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156183349,
size: 0.5,
source: 159156,
target: 183349 });
// adding node
var x_node = Math.cos(2 * 878 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 878 * Math.PI / N) * 10;
g.nodes.push({
id: 183339,
label: 'MEMBER: Romain Roullier',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/07/research_pasteur-romain-roullier-romain-roullie-img-20220517-wa0014-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/romain-roullier/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156183339,
size: 0.5,
source: 159156,
target: 183339 });
// adding node
var x_node = Math.cos(2 * 879 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 879 * Math.PI / N) * 10;
g.nodes.push({
id: 183300,
label: 'MEMBER: Théo Maire',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/07/research_pasteur-theo-maire-index-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/theo-maire/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156183300,
size: 0.5,
source: 159156,
target: 183300 });
// adding node
var x_node = Math.cos(2 * 880 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 880 * Math.PI / N) * 10;
g.nodes.push({
id: 183247,
label: 'MEMBER: Simon Drew',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/07/research_pasteur-imag9924-2-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/simon-drew/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156183247,
size: 0.5,
source: 159156,
target: 183247 });
// adding node
var x_node = Math.cos(2 * 881 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 881 * Math.PI / N) * 10;
g.nodes.push({
id: 183216,
label: 'MEMBER: Kateryna Dotsenko',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/kateryna-dotsenko/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156183216,
size: 0.5,
source: 159156,
target: 183216 });
// adding node
var x_node = Math.cos(2 * 882 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 882 * Math.PI / N) * 10;
g.nodes.push({
id: 183204,
label: 'MEMBER: Monica-Gabriela Zavala-Martinez',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/monica-gabriela-zavala-martinez/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156183204,
size: 0.5,
source: 159156,
target: 183204 });
// adding node
var x_node = Math.cos(2 * 883 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 883 * Math.PI / N) * 10;
g.nodes.push({
id: 183185,
label: 'MEMBER: Fay Betsou',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/07/research_pasteur-fay-betsou-fay-2-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/fay-betsou/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156183185,
size: 0.5,
source: 159156,
target: 183185 });
// adding node
var x_node = Math.cos(2 * 884 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 884 * Math.PI / N) * 10;
g.nodes.push({
id: 183172,
label: 'MEMBER: Jamie Sugrue',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/07/research_pasteur-jamie-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/jamie-sugrue/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156183172,
size: 0.5,
source: 159156,
target: 183172 });
// adding node
var x_node = Math.cos(2 * 885 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 885 * Math.PI / N) * 10;
g.nodes.push({
id: 183075,
label: 'MEMBER: Nataliia Kashpur',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/nataliia-kashpur/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156183075,
size: 0.5,
source: 159156,
target: 183075 });
// adding node
var x_node = Math.cos(2 * 886 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 886 * Math.PI / N) * 10;
g.nodes.push({
id: 183060,
label: 'MEMBER: Gaëlle Letort',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/07/research_pasteur-gaelle-letort-screenshot-2022-07-01-at-11.41.05-150x150.png',
page_url: 'https://research.pasteur.fr/en/member/gaelle-letort-2/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156183060,
size: 0.5,
source: 159156,
target: 183060 });
// adding node
var x_node = Math.cos(2 * 887 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 887 * Math.PI / N) * 10;
g.nodes.push({
id: 183036,
label: 'MEMBER: Djamel Tahir',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/djamel-tahir/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156183036,
size: 0.5,
source: 159156,
target: 183036 });
// adding node
var x_node = Math.cos(2 * 888 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 888 * Math.PI / N) * 10;
g.nodes.push({
id: 183032,
label: 'MEMBER: Manuel Majrouh',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/06/research_pasteur-manuel-majrouh-img-20220808-135540-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/manuel-majrouh/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156183032,
size: 0.5,
source: 159156,
target: 183032 });
// adding node
var x_node = Math.cos(2 * 889 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 889 * Math.PI / N) * 10;
g.nodes.push({
id: 183019,
label: 'MEMBER: Tidiane Camaret N’Dir',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/tidiane-camaret-ndir/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156183019,
size: 0.5,
source: 159156,
target: 183019 });
// adding node
var x_node = Math.cos(2 * 890 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 890 * Math.PI / N) * 10;
g.nodes.push({
id: 182933,
label: 'MEMBER: Shiyu Liu',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/06/research_pasteur-shiyu-liu-liu-shiyu-photo-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/shiyu-liu/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156182933,
size: 0.5,
source: 159156,
target: 182933 });
// adding node
var x_node = Math.cos(2 * 891 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 891 * Math.PI / N) * 10;
g.nodes.push({
id: 182796,
label: 'MEMBER: Jaouen Tran-Rajau',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/06/research_pasteur-capture-decran-2022-06-27-a-09.53.45-150x150.png',
page_url: 'https://research.pasteur.fr/en/member/jaouen-tran-rajau/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156182796,
size: 0.5,
source: 159156,
target: 182796 });
// adding node
var x_node = Math.cos(2 * 892 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 892 * Math.PI / N) * 10;
g.nodes.push({
id: 182783,
label: 'MEMBER: Noémi Dominique',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/noemi-dominique/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156182783,
size: 0.5,
source: 159156,
target: 182783 });
// adding node
var x_node = Math.cos(2 * 893 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 893 * Math.PI / N) * 10;
g.nodes.push({
id: 182499,
label: 'MEMBER: Harley Dwane Betts',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/harley-dwane-betts/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156182499,
size: 0.5,
source: 159156,
target: 182499 });
// adding node
var x_node = Math.cos(2 * 894 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 894 * Math.PI / N) * 10;
g.nodes.push({
id: 182494,
label: 'MEMBER: Camélia Kitoun',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/harley-betts/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156182494,
size: 0.5,
source: 159156,
target: 182494 });
// adding node
var x_node = Math.cos(2 * 895 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 895 * Math.PI / N) * 10;
g.nodes.push({
id: 182404,
label: 'MEMBER: Enzo Gadin',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/06/research_pasteur-enzo-gadin-img-0384-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/enzo-gadin/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156182404,
size: 0.5,
source: 159156,
target: 182404 });
// adding node
var x_node = Math.cos(2 * 896 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 896 * Math.PI / N) * 10;
g.nodes.push({
id: 182349,
label: 'MEMBER: Clara Dussaux',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/06/research_pasteur-clara-dussaux-photoid-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/clara-dussaux/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156182349,
size: 0.5,
source: 159156,
target: 182349 });
// adding node
var x_node = Math.cos(2 * 897 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 897 * Math.PI / N) * 10;
g.nodes.push({
id: 182330,
label: 'MEMBER: Héloïse Hervé',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/heloise-herve/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156182330,
size: 0.5,
source: 159156,
target: 182330 });
// adding node
var x_node = Math.cos(2 * 898 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 898 * Math.PI / N) * 10;
g.nodes.push({
id: 182244,
label: 'MEMBER: Hadjer Loukil',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/hadjer-loukil/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156182244,
size: 0.5,
source: 159156,
target: 182244 });
// adding node
var x_node = Math.cos(2 * 899 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 899 * Math.PI / N) * 10;
g.nodes.push({
id: 182069,
label: 'MEMBER: Olivier Feudjio',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/06/research_pasteur-olivier-150x150.png',
page_url: 'https://research.pasteur.fr/en/member/olivier-feudjio/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156182069,
size: 0.5,
source: 159156,
target: 182069 });
// adding node
var x_node = Math.cos(2 * 900 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 900 * Math.PI / N) * 10;
g.nodes.push({
id: 182061,
label: 'MEMBER: Gautam Sarkar',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/06/research_pasteur-gautam-lr-150x150.png',
page_url: 'https://research.pasteur.fr/en/member/gautam-sarkar/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156182061,
size: 0.5,
source: 159156,
target: 182061 });
// adding node
var x_node = Math.cos(2 * 901 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 901 * Math.PI / N) * 10;
g.nodes.push({
id: 182053,
label: 'MEMBER: Said Mougari',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/06/research_pasteur-said-mougari-mougari-said-7514-e1721127271732-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/said-mougari/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156182053,
size: 0.5,
source: 159156,
target: 182053 });
// adding node
var x_node = Math.cos(2 * 902 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 902 * Math.PI / N) * 10;
g.nodes.push({
id: 182030,
label: 'MEMBER: Hung Thai Van',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/hung-thai-van/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156182030,
size: 0.5,
source: 159156,
target: 182030 });
// adding node
var x_node = Math.cos(2 * 903 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 903 * Math.PI / N) * 10;
g.nodes.push({
id: 181977,
label: 'MEMBER: Safwen Ghediri',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/safwen-ghediri/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156181977,
size: 0.5,
source: 159156,
target: 181977 });
// adding node
var x_node = Math.cos(2 * 904 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 904 * Math.PI / N) * 10;
g.nodes.push({
id: 181838,
label: 'MEMBER: Sophie Vacant',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/sophie-vacant/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156181838,
size: 0.5,
source: 159156,
target: 181838 });
// adding node
var x_node = Math.cos(2 * 905 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 905 * Math.PI / N) * 10;
g.nodes.push({
id: 181829,
label: 'MEMBER: Emilie Fruquière',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/emilie-fruquiere/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156181829,
size: 0.5,
source: 159156,
target: 181829 });
// adding node
var x_node = Math.cos(2 * 906 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 906 * Math.PI / N) * 10;
g.nodes.push({
id: 181816,
label: 'MEMBER: Ruchi Agrawal',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/ruchi-agrawal/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156181816,
size: 0.5,
source: 159156,
target: 181816 });
// adding node
var x_node = Math.cos(2 * 907 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 907 * Math.PI / N) * 10;
g.nodes.push({
id: 181804,
label: 'MEMBER: Erik Maikranz',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/06/research_pasteur-erik-maikranz-img-0344-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/erik-maikranz/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156181804,
size: 0.5,
source: 159156,
target: 181804 });
// adding node
var x_node = Math.cos(2 * 908 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 908 * Math.PI / N) * 10;
g.nodes.push({
id: 181802,
label: 'MEMBER: Hiba Belkadi',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/06/research_pasteur-hiba-belkadi-photo-carre-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/hiba-belkadi/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156181802,
size: 0.5,
source: 159156,
target: 181802 });
// adding node
var x_node = Math.cos(2 * 909 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 909 * Math.PI / N) * 10;
g.nodes.push({
id: 181759,
label: 'MEMBER: Dang Liu',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/06/research_pasteur-dang-liu-dang-liu-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/dang-liu/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156181759,
size: 0.5,
source: 159156,
target: 181759 });
// adding node
var x_node = Math.cos(2 * 910 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 910 * Math.PI / N) * 10;
g.nodes.push({
id: 181725,
label: 'MEMBER: Mathieu Lepas',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/mathieu-lepas/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156181725,
size: 0.5,
source: 159156,
target: 181725 });
// adding node
var x_node = Math.cos(2 * 911 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 911 * Math.PI / N) * 10;
g.nodes.push({
id: 181630,
label: 'MEMBER: Shaoxiang Wang',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/06/research_pasteur-screenshot-2022-06-02-at-15.01.58-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/shaoxiang-wang/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156181630,
size: 0.5,
source: 159156,
target: 181630 });
// adding node
var x_node = Math.cos(2 * 912 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 912 * Math.PI / N) * 10;
g.nodes.push({
id: 181626,
label: 'MEMBER: Daryna Batechko',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/06/research_pasteur-batechko-daryna-photo-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/daryna-batechko/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156181626,
size: 0.5,
source: 159156,
target: 181626 });
// adding node
var x_node = Math.cos(2 * 913 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 913 * Math.PI / N) * 10;
g.nodes.push({
id: 181615,
label: 'MEMBER: Jeremy Chantrel',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/06/research_pasteur-photo-jeremy-chantrel-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/jeremy-chantrel/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156181615,
size: 0.5,
source: 159156,
target: 181615 });
// adding node
var x_node = Math.cos(2 * 914 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 914 * Math.PI / N) * 10;
g.nodes.push({
id: 181610,
label: 'MEMBER: Lamia Djoual',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/06/research_pasteur-photo-lamia-djoual-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/lamia-djoual/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156181610,
size: 0.5,
source: 159156,
target: 181610 });
// adding node
var x_node = Math.cos(2 * 915 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 915 * Math.PI / N) * 10;
g.nodes.push({
id: 181605,
label: 'MEMBER: Marielle Saclier',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/06/research_pasteur-photo-marielle-saclier-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/marielle-saclier/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156181605,
size: 0.5,
source: 159156,
target: 181605 });
// adding node
var x_node = Math.cos(2 * 916 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 916 * Math.PI / N) * 10;
g.nodes.push({
id: 181603,
label: 'MEMBER: Karina Ilchenko',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/06/research_pasteur-karina-ilchenko-dw6-dwxq9arg0qvvsivy9wdryym-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/karina-ilchenko/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156181603,
size: 0.5,
source: 159156,
target: 181603 });
// adding node
var x_node = Math.cos(2 * 917 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 917 * Math.PI / N) * 10;
g.nodes.push({
id: 181590,
label: 'MEMBER: Tarik Najib',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/tarik-najib/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156181590,
size: 0.5,
source: 159156,
target: 181590 });
// adding node
var x_node = Math.cos(2 * 918 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 918 * Math.PI / N) * 10;
g.nodes.push({
id: 181564,
label: 'MEMBER: Laurianne Temime',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/06/research_pasteur-laurianne-temime-photo-laurianne-temime-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/laurianne-temime/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156181564,
size: 0.5,
source: 159156,
target: 181564 });
// adding node
var x_node = Math.cos(2 * 919 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 919 * Math.PI / N) * 10;
g.nodes.push({
id: 181530,
label: 'MEMBER: Márcio Ribeiro',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/06/research_pasteur-marcio-ribeiro-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/marcio-ribeiro/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156181530,
size: 0.5,
source: 159156,
target: 181530 });
// adding node
var x_node = Math.cos(2 * 920 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 920 * Math.PI / N) * 10;
g.nodes.push({
id: 181510,
label: 'MEMBER: Carla Cabal Fernandez',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/carla-cabal-fernandez/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156181510,
size: 0.5,
source: 159156,
target: 181510 });
// adding node
var x_node = Math.cos(2 * 921 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 921 * Math.PI / N) * 10;
g.nodes.push({
id: 181500,
label: 'MEMBER: Victor Pryakhin',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/victor-pryakhin/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156181500,
size: 0.5,
source: 159156,
target: 181500 });
// adding node
var x_node = Math.cos(2 * 922 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 922 * Math.PI / N) * 10;
g.nodes.push({
id: 181330,
label: 'MEMBER: Yakov Vitrenko',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/05/research_pasteur-yakov-vitrenko-avatar-1-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/yakov-vitrenko/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156181330,
size: 0.5,
source: 159156,
target: 181330 });
// adding node
var x_node = Math.cos(2 * 923 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 923 * Math.PI / N) * 10;
g.nodes.push({
id: 181288,
label: 'MEMBER: Ines Ben Hadj Kaddour',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/ines-ben-hadj-kaddour/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156181288,
size: 0.5,
source: 159156,
target: 181288 });
// adding node
var x_node = Math.cos(2 * 924 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 924 * Math.PI / N) * 10;
g.nodes.push({
id: 181227,
label: 'MEMBER: Charles-Henry Bourlier',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/05/research_pasteur-charles-henry-bourlier-cv-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/charles-henry-bourlier/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156181227,
size: 0.5,
source: 159156,
target: 181227 });
// adding node
var x_node = Math.cos(2 * 925 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 925 * Math.PI / N) * 10;
g.nodes.push({
id: 181064,
label: 'MEMBER: Xavière Menatong Tene',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/xaviere-menatong-tene/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156181064,
size: 0.5,
source: 159156,
target: 181064 });
// adding node
var x_node = Math.cos(2 * 926 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 926 * Math.PI / N) * 10;
g.nodes.push({
id: 181030,
label: 'MEMBER: Kinga Grabowska',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/05/research_pasteur-kinga-grabowska-kinga-website-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/kinga-grabowska/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156181030,
size: 0.5,
source: 159156,
target: 181030 });
// adding node
var x_node = Math.cos(2 * 927 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 927 * Math.PI / N) * 10;
g.nodes.push({
id: 181015,
label: 'MEMBER: Tanya Foley',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/tanya-foley/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156181015,
size: 0.5,
source: 159156,
target: 181015 });
// adding node
var x_node = Math.cos(2 * 928 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 928 * Math.PI / N) * 10;
g.nodes.push({
id: 181009,
label: 'MEMBER: Udi Binshtok',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/05/research_pasteur-udi-binshtok-udi-binshtok-digital-photo-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/udi-binshtok/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156181009,
size: 0.5,
source: 159156,
target: 181009 });
// adding node
var x_node = Math.cos(2 * 929 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 929 * Math.PI / N) * 10;
g.nodes.push({
id: 180861,
label: 'MEMBER: Thomas Moreau',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/05/research_pasteur-thomas-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/thomas-moreau/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156180861,
size: 0.5,
source: 159156,
target: 180861 });
// adding node
var x_node = Math.cos(2 * 930 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 930 * Math.PI / N) * 10;
g.nodes.push({
id: 180778,
label: 'MEMBER: Stefaniia Ivashchenko',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/stefaniia-ivashchenko/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156180778,
size: 0.5,
source: 159156,
target: 180778 });
// adding node
var x_node = Math.cos(2 * 931 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 931 * Math.PI / N) * 10;
g.nodes.push({
id: 180552,
label: 'MEMBER: Danguolè Norkunaite',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/danguole-norkunaite/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156180552,
size: 0.5,
source: 159156,
target: 180552 });
// adding node
var x_node = Math.cos(2 * 932 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 932 * Math.PI / N) * 10;
g.nodes.push({
id: 180548,
label: 'MEMBER: Giacomo Carloni',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2024/05/research_pasteur-photo-e1715084543582-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/giacomo-carloni/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156180548,
size: 0.5,
source: 159156,
target: 180548 });
// adding node
var x_node = Math.cos(2 * 933 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 933 * Math.PI / N) * 10;
g.nodes.push({
id: 180544,
label: 'MEMBER: Maryam Hanine',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/maryam-hanine/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156180544,
size: 0.5,
source: 159156,
target: 180544 });
// adding node
var x_node = Math.cos(2 * 934 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 934 * Math.PI / N) * 10;
g.nodes.push({
id: 180540,
label: 'MEMBER: margaux Chauvet',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/margaux-chauvet/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156180540,
size: 0.5,
source: 159156,
target: 180540 });
// adding node
var x_node = Math.cos(2 * 935 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 935 * Math.PI / N) * 10;
g.nodes.push({
id: 180527,
label: 'MEMBER: Korantin Le Mouël',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/korantin-le-mouel/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156180527,
size: 0.5,
source: 159156,
target: 180527 });
// adding node
var x_node = Math.cos(2 * 936 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 936 * Math.PI / N) * 10;
g.nodes.push({
id: 180381,
label: 'MEMBER: Ruairi Robertson',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/05/research_pasteur-ruairi-robertson-rr-headshot-april-2017-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/ruairi-robertson/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156180381,
size: 0.5,
source: 159156,
target: 180381 });
// adding node
var x_node = Math.cos(2 * 937 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 937 * Math.PI / N) * 10;
g.nodes.push({
id: 180377,
label: 'MEMBER: Tri Tho Nguyen',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/05/research_pasteur-tri-tho-nguyen-img-0867-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/tri-tho-nguyen/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156180377,
size: 0.5,
source: 159156,
target: 180377 });
// adding node
var x_node = Math.cos(2 * 938 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 938 * Math.PI / N) * 10;
g.nodes.push({
id: 180372,
label: 'MEMBER: Simona Caldani',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/simona-caldani/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156180372,
size: 0.5,
source: 159156,
target: 180372 });
// adding node
var x_node = Math.cos(2 * 939 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 939 * Math.PI / N) * 10;
g.nodes.push({
id: 180363,
label: 'MEMBER: Isciane Commenge',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/isciane-commenge/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156180363,
size: 0.5,
source: 159156,
target: 180363 });
// adding node
var x_node = Math.cos(2 * 940 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 940 * Math.PI / N) * 10;
g.nodes.push({
id: 180302,
label: 'MEMBER: Marvin Albert',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/05/research_pasteur-marvin-albert-photo-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/marvin-albert/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156180302,
size: 0.5,
source: 159156,
target: 180302 });
// adding node
var x_node = Math.cos(2 * 941 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 941 * Math.PI / N) * 10;
g.nodes.push({
id: 180288,
label: 'MEMBER: Marianne Madec',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/marianne-madec/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156180288,
size: 0.5,
source: 159156,
target: 180288 });
// adding node
var x_node = Math.cos(2 * 942 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 942 * Math.PI / N) * 10;
g.nodes.push({
id: 180186,
label: 'MEMBER: Julie De Oliveira',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/05/research_pasteur-julie-de-oliveira-fb-img-1654863890495-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/julie-de-oliveira__trashed/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156180186,
size: 0.5,
source: 159156,
target: 180186 });
// adding node
var x_node = Math.cos(2 * 943 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 943 * Math.PI / N) * 10;
g.nodes.push({
id: 180057,
label: 'MEMBER: Aurélie Dorget',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/04/research_pasteur-aurelie-dorget-aureliedorget-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/aurelie-dorget/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156180057,
size: 0.5,
source: 159156,
target: 180057 });
// adding node
var x_node = Math.cos(2 * 944 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 944 * Math.PI / N) * 10;
g.nodes.push({
id: 180051,
label: 'MEMBER: jonas Lefevre-Daumal',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/jonas-lefevre-daumal/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156180051,
size: 0.5,
source: 159156,
target: 180051 });
// adding node
var x_node = Math.cos(2 * 945 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 945 * Math.PI / N) * 10;
g.nodes.push({
id: 180038,
label: 'MEMBER: Francesco Andreace',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/francesco-andreace/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156180038,
size: 0.5,
source: 159156,
target: 180038 });
// adding node
var x_node = Math.cos(2 * 946 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 946 * Math.PI / N) * 10;
g.nodes.push({
id: 179673,
label: 'MEMBER: Danylo Vyhovskyi',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/04/research_pasteur-danylo-vyhovskyi-telechargement-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/danylo-vyhovskyi/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156179673,
size: 0.5,
source: 159156,
target: 179673 });
// adding node
var x_node = Math.cos(2 * 947 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 947 * Math.PI / N) * 10;
g.nodes.push({
id: 179640,
label: 'MEMBER: Sergio Mallart',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/sergio-mallart/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156179640,
size: 0.5,
source: 159156,
target: 179640 });
// adding node
var x_node = Math.cos(2 * 948 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 948 * Math.PI / N) * 10;
g.nodes.push({
id: 179630,
label: 'MEMBER: Mariana Valente',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/04/research_pasteur-mariana-valente-mariana-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/mariana-valente/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156179630,
size: 0.5,
source: 159156,
target: 179630 });
// adding node
var x_node = Math.cos(2 * 949 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 949 * Math.PI / N) * 10;
g.nodes.push({
id: 179597,
label: 'MEMBER: Anakine Prizins',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/04/research_pasteur-anakine-prizins-anakine-web2-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/anakine-prizins/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156179597,
size: 0.5,
source: 159156,
target: 179597 });
// adding node
var x_node = Math.cos(2 * 950 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 950 * Math.PI / N) * 10;
g.nodes.push({
id: 179571,
label: 'MEMBER: Inès Devred',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/ines-devred/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156179571,
size: 0.5,
source: 159156,
target: 179571 });
// adding node
var x_node = Math.cos(2 * 951 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 951 * Math.PI / N) * 10;
g.nodes.push({
id: 179550,
label: 'MEMBER: Soumia Abdellaoui',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/04/research_pasteur-soumia-abdellaoui-screenshot-2022-04-19-22-59-17-44-965bbf4d18d205f782c6b8409c5773a42-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/soumia-abdellaoui/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156179550,
size: 0.5,
source: 159156,
target: 179550 });
// adding node
var x_node = Math.cos(2 * 952 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 952 * Math.PI / N) * 10;
g.nodes.push({
id: 179542,
label: 'MEMBER: Léa Hamon',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/04/research_pasteur-lea-hamon-lea-hamon-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/lea-hamon/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156179542,
size: 0.5,
source: 159156,
target: 179542 });
// adding node
var x_node = Math.cos(2 * 953 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 953 * Math.PI / N) * 10;
g.nodes.push({
id: 179500,
label: 'MEMBER: Marie Philippe',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/04/research_pasteur-marie-philippe-photo-marie-identite-1-150x150.png',
page_url: 'https://research.pasteur.fr/en/member/marie-philippe/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156179500,
size: 0.5,
source: 159156,
target: 179500 });
// adding node
var x_node = Math.cos(2 * 954 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 954 * Math.PI / N) * 10;
g.nodes.push({
id: 179429,
label: 'MEMBER: Maria Isabella Gariboldi',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/04/research_pasteur-maria-isabella-gariboldi-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/maria-isabella-gariboldi/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156179429,
size: 0.5,
source: 159156,
target: 179429 });
// adding node
var x_node = Math.cos(2 * 955 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 955 * Math.PI / N) * 10;
g.nodes.push({
id: 179424,
label: 'MEMBER: Gaston Bizel-Bizellot',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/04/research_pasteur-gaston-bizel-bizellot-photo-gaston-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/gaston-bizel-bizello/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156179424,
size: 0.5,
source: 159156,
target: 179424 });
// adding node
var x_node = Math.cos(2 * 956 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 956 * Math.PI / N) * 10;
g.nodes.push({
id: 179335,
label: 'MEMBER: Raphaël Jeger Madiot',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/raphael-jeger-madiot/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156179335,
size: 0.5,
source: 159156,
target: 179335 });
// adding node
var x_node = Math.cos(2 * 957 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 957 * Math.PI / N) * 10;
g.nodes.push({
id: 179330,
label: 'MEMBER: Raphael Reme',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/04/research_pasteur-raphael-reme-me-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/raphael-reme/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156179330,
size: 0.5,
source: 159156,
target: 179330 });
// adding node
var x_node = Math.cos(2 * 958 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 958 * Math.PI / N) * 10;
g.nodes.push({
id: 179328,
label: 'MEMBER: Benjamin Dupuis',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/01/research_pasteur-photo-dupuis-benjamin-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/benjamin-dupuis/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156179328,
size: 0.5,
source: 159156,
target: 179328 });
// adding node
var x_node = Math.cos(2 * 959 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 959 * Math.PI / N) * 10;
g.nodes.push({
id: 179326,
label: 'MEMBER: Vololoniaina Raharinosy',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/vololoniaina-raharinosy/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156179326,
size: 0.5,
source: 159156,
target: 179326 });
// adding node
var x_node = Math.cos(2 * 960 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 960 * Math.PI / N) * 10;
g.nodes.push({
id: 179157,
label: 'MEMBER: Minoli Doshi',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/04/research_pasteur-screenshot-20220404-2046562-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/minoli-doshi/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156179157,
size: 0.5,
source: 159156,
target: 179157 });
// adding node
var x_node = Math.cos(2 * 961 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 961 * Math.PI / N) * 10;
g.nodes.push({
id: 179089,
label: 'MEMBER: Gautham Sankara Narayana',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/04/research_pasteur-gautham-sankara-narayana-img-7919-1-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/gautham-sankara-narayana/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156179089,
size: 0.5,
source: 159156,
target: 179089 });
// adding node
var x_node = Math.cos(2 * 962 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 962 * Math.PI / N) * 10;
g.nodes.push({
id: 179080,
label: 'MEMBER: Yifan Zhou',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/04/research_pasteur-yifan-zhou-yifanzhou-20230331170432-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/yifan-zhou/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156179080,
size: 0.5,
source: 159156,
target: 179080 });
// adding node
var x_node = Math.cos(2 * 963 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 963 * Math.PI / N) * 10;
g.nodes.push({
id: 178933,
label: 'MEMBER: Anaël Ayrolles',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/anael-ayrolles/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156178933,
size: 0.5,
source: 159156,
target: 178933 });
// adding node
var x_node = Math.cos(2 * 964 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 964 * Math.PI / N) * 10;
g.nodes.push({
id: 178743,
label: 'MEMBER: Francisco Garcia Rodriguez',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/03/research_pasteur-francisco-garcia-rodriguez-francisco-pic-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/francisco-garcia-rodriguez/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156178743,
size: 0.5,
source: 159156,
target: 178743 });
// adding node
var x_node = Math.cos(2 * 965 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 965 * Math.PI / N) * 10;
g.nodes.push({
id: 178717,
label: 'MEMBER: Toni Gouhier',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/03/research_pasteur-toni-gouhier-screenshot-20230619-221216-instagram-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/toni-gouhier/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156178717,
size: 0.5,
source: 159156,
target: 178717 });
// adding node
var x_node = Math.cos(2 * 966 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 966 * Math.PI / N) * 10;
g.nodes.push({
id: 178703,
label: 'MEMBER: Claire Mestdagh',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/03/research_pasteur-claire-mestdagh-photo-claire-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/claire-mestdagh/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156178703,
size: 0.5,
source: 159156,
target: 178703 });
// adding node
var x_node = Math.cos(2 * 967 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 967 * Math.PI / N) * 10;
g.nodes.push({
id: 178435,
label: 'MEMBER: Alida Kropf',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/03/research_pasteur-alida-kropf-passfoto-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/alida-kropf/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156178435,
size: 0.5,
source: 159156,
target: 178435 });
// adding node
var x_node = Math.cos(2 * 968 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 968 * Math.PI / N) * 10;
g.nodes.push({
id: 178217,
label: 'MEMBER: Lavinia Slabu',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/03/research_pasteur-lavinia-slabu-ida-2022-2304-scaled-e1663593426623-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/lavinia-slabu/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156178217,
size: 0.5,
source: 159156,
target: 178217 });
// adding node
var x_node = Math.cos(2 * 969 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 969 * Math.PI / N) * 10;
g.nodes.push({
id: 178135,
label: 'MEMBER: Simon Blachier',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/03/research_pasteur-blachier-simon-m2-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/simon-blachier/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156178135,
size: 0.5,
source: 159156,
target: 178135 });
// adding node
var x_node = Math.cos(2 * 970 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 970 * Math.PI / N) * 10;
g.nodes.push({
id: 177905,
label: 'MEMBER: Marie Royer',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/03/research_pasteur-royer-marie-photo-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/marie-royer/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156177905,
size: 0.5,
source: 159156,
target: 177905 });
// adding node
var x_node = Math.cos(2 * 971 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 971 * Math.PI / N) * 10;
g.nodes.push({
id: 177817,
label: 'MEMBER: Yuka Suzuki',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/03/research_pasteur-yuka-suzuki-photo-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/yuka-suzuki/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156177817,
size: 0.5,
source: 159156,
target: 177817 });
// adding node
var x_node = Math.cos(2 * 972 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 972 * Math.PI / N) * 10;
g.nodes.push({
id: 177766,
label: 'MEMBER: Annabelle Henrion Lacritick',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/03/research_pasteur-annabelle-henrion-lacritick-853x1024-1-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/annabelle-henrion-lacritik/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156177766,
size: 0.5,
source: 159156,
target: 177766 });
// adding node
var x_node = Math.cos(2 * 973 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 973 * Math.PI / N) * 10;
g.nodes.push({
id: 177763,
label: 'MEMBER: Ottavia Romoli',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/03/research_pasteur-romoli-ottavia-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/ottavia-romoli/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156177763,
size: 0.5,
source: 159156,
target: 177763 });
// adding node
var x_node = Math.cos(2 * 974 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 974 * Math.PI / N) * 10;
g.nodes.push({
id: 177760,
label: 'MEMBER: Jared Nigg',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/03/research_pasteur-nigg-jared-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/jared-nigg/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156177760,
size: 0.5,
source: 159156,
target: 177760 });
// adding node
var x_node = Math.cos(2 * 975 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 975 * Math.PI / N) * 10;
g.nodes.push({
id: 177754,
label: 'MEMBER: Parul Singh',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/03/research_pasteur-parul-singh-img-1468-scaled-e1647601615846-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/parul-singh/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156177754,
size: 0.5,
source: 159156,
target: 177754 });
// adding node
var x_node = Math.cos(2 * 976 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 976 * Math.PI / N) * 10;
g.nodes.push({
id: 177555,
label: 'MEMBER: Anqi Zhou',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/03/research_pasteur-anqi-zhou-research-pasteur-anqi-zhou-screenshot-2024-02-13-at-00.27.42-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/anqi-zhou/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156177555,
size: 0.5,
source: 159156,
target: 177555 });
// adding node
var x_node = Math.cos(2 * 977 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 977 * Math.PI / N) * 10;
g.nodes.push({
id: 177454,
label: 'MEMBER: Nazarii Sabat',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/03/research_pasteur-nazarii-sabat-photo-site-4-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/nazarii-sabat/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156177454,
size: 0.5,
source: 159156,
target: 177454 });
// adding node
var x_node = Math.cos(2 * 978 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 978 * Math.PI / N) * 10;
g.nodes.push({
id: 177442,
label: 'MEMBER: Jean Elie Cluzel',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/03/research_pasteur-processed-1fd023d4-5c1d-4662-9788-de2941b22a9e-cwcp98eb-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/jean-elie-cluzel/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156177442,
size: 0.5,
source: 159156,
target: 177442 });
// adding node
var x_node = Math.cos(2 * 979 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 979 * Math.PI / N) * 10;
g.nodes.push({
id: 177438,
label: 'MEMBER: Jules Lubetzki',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/jules-lubetzki/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156177438,
size: 0.5,
source: 159156,
target: 177438 });
// adding node
var x_node = Math.cos(2 * 980 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 980 * Math.PI / N) * 10;
g.nodes.push({
id: 177376,
label: 'MEMBER: Lucas Pradeau',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/02/research_pasteur-lucas-pradeau-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/lucas-pradeau/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156177376,
size: 0.5,
source: 159156,
target: 177376 });
// adding node
var x_node = Math.cos(2 * 981 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 981 * Math.PI / N) * 10;
g.nodes.push({
id: 177306,
label: 'MEMBER: Eva Krupa',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/eva-krupa/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156177306,
size: 0.5,
source: 159156,
target: 177306 });
// adding node
var x_node = Math.cos(2 * 982 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 982 * Math.PI / N) * 10;
g.nodes.push({
id: 177300,
label: 'MEMBER: Alexandre Cébeillac',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/02/research_pasteur-alexandre-cebeillac-alexandre-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/alexandre-cebeillac/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156177300,
size: 0.5,
source: 159156,
target: 177300 });
// adding node
var x_node = Math.cos(2 * 983 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 983 * Math.PI / N) * 10;
g.nodes.push({
id: 177287,
label: 'MEMBER: Sarah Bonnet',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/02/research_pasteur-sarah-bonnet-photo-sarah-bonnet-1-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/sarah-bonnet/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156177287,
size: 0.5,
source: 159156,
target: 177287 });
// adding node
var x_node = Math.cos(2 * 984 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 984 * Math.PI / N) * 10;
g.nodes.push({
id: 177169,
label: 'MEMBER: Sylvie Decraux',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/02/research_pasteur-decraux-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/sylvie-decraux/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156177169,
size: 0.5,
source: 159156,
target: 177169 });
// adding node
var x_node = Math.cos(2 * 985 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 985 * Math.PI / N) * 10;
g.nodes.push({
id: 177092,
label: 'MEMBER: Apostolos Liakopoulos',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/apostolos-liakopoulos/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156177092,
size: 0.5,
source: 159156,
target: 177092 });
// adding node
var x_node = Math.cos(2 * 986 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 986 * Math.PI / N) * 10;
g.nodes.push({
id: 177062,
label: 'MEMBER: Muge Senarisoy',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/02/research_pasteur-muge-senarisoy-ms-photo2021-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/muge-senarisoy/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156177062,
size: 0.5,
source: 159156,
target: 177062 });
// adding node
var x_node = Math.cos(2 * 987 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 987 * Math.PI / N) * 10;
g.nodes.push({
id: 177052,
label: 'MEMBER: Albane Jouault',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/albane-jouault/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156177052,
size: 0.5,
source: 159156,
target: 177052 });
// adding node
var x_node = Math.cos(2 * 988 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 988 * Math.PI / N) * 10;
g.nodes.push({
id: 177009,
label: 'MEMBER: Belsy Del Carmen Valeriano Alegria',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/belsy-del-carmen-valeriano-alegria/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156177009,
size: 0.5,
source: 159156,
target: 177009 });
// adding node
var x_node = Math.cos(2 * 989 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 989 * Math.PI / N) * 10;
g.nodes.push({
id: 176914,
label: 'MEMBER: Emma Beaumont',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/02/research_pasteur-emma-beaumont-photoeb-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/emma-beaumont/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156176914,
size: 0.5,
source: 159156,
target: 176914 });
// adding node
var x_node = Math.cos(2 * 990 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 990 * Math.PI / N) * 10;
g.nodes.push({
id: 176907,
label: 'MEMBER: Caroline Petitdemange',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/caroline-petitdemange/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156176907,
size: 0.5,
source: 159156,
target: 176907 });
// adding node
var x_node = Math.cos(2 * 991 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 991 * Math.PI / N) * 10;
g.nodes.push({
id: 176675,
label: 'MEMBER: Thomas Vial',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/02/research_pasteur-thomas-vial-vial-thomas-vt-1245-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/thomas-vial/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156176675,
size: 0.5,
source: 159156,
target: 176675 });
// adding node
var x_node = Math.cos(2 * 992 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 992 * Math.PI / N) * 10;
g.nodes.push({
id: 176668,
label: 'MEMBER: Macha Dussouchaud',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/02/research_pasteur-macha-dussouchaud-macha-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/macha-dussouchaud/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156176668,
size: 0.5,
source: 159156,
target: 176668 });
// adding node
var x_node = Math.cos(2 * 993 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 993 * Math.PI / N) * 10;
g.nodes.push({
id: 176617,
label: 'MEMBER: Amal Bennouna',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/02/research_pasteur-amal-bennouna-img-20201021-132946-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/amal-bennouna__trashed/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156176617,
size: 0.5,
source: 159156,
target: 176617 });
// adding node
var x_node = Math.cos(2 * 994 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 994 * Math.PI / N) * 10;
g.nodes.push({
id: 176594,
label: 'MEMBER: Jorge Torres Paz',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/02/research_pasteur-jorge-torres-paz-foto-jorge-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/jorge-torres-paz/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156176594,
size: 0.5,
source: 159156,
target: 176594 });
// adding node
var x_node = Math.cos(2 * 995 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 995 * Math.PI / N) * 10;
g.nodes.push({
id: 176578,
label: 'MEMBER: Farah Rahal',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/02/research_pasteur-farah-rahal-photo-farah-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/farah-rahal-2/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156176578,
size: 0.5,
source: 159156,
target: 176578 });
// adding node
var x_node = Math.cos(2 * 996 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 996 * Math.PI / N) * 10;
g.nodes.push({
id: 176494,
label: 'MEMBER: Lucia Araujo-Chaveron',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/02/research_pasteur-lucia-araujo-chaveron-1-1-e1644845335584-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/lucia-araujo-chaveron/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156176494,
size: 0.5,
source: 159156,
target: 176494 });
// adding node
var x_node = Math.cos(2 * 997 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 997 * Math.PI / N) * 10;
g.nodes.push({
id: 176461,
label: 'MEMBER: Gaëlle Lievre',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/gaelle-lievre/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156176461,
size: 0.5,
source: 159156,
target: 176461 });
// adding node
var x_node = Math.cos(2 * 998 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 998 * Math.PI / N) * 10;
g.nodes.push({
id: 176455,
label: 'MEMBER: Simon Galmiche',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/simon-galmiche/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156176455,
size: 0.5,
source: 159156,
target: 176455 });
// adding node
var x_node = Math.cos(2 * 999 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 999 * Math.PI / N) * 10;
g.nodes.push({
id: 176374,
label: 'MEMBER: Andrew Holtz',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/02/research_pasteur-img-4348-003-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/andrew-holtz/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156176374,
size: 0.5,
source: 159156,
target: 176374 });
// adding node
var x_node = Math.cos(2 * 1000 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1000 * Math.PI / N) * 10;
g.nodes.push({
id: 176170,
label: 'MEMBER: Sonia Nicchi',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/02/research_pasteur-sonia-nicchi-1644420112841-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/sonia-nicchi/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156176170,
size: 0.5,
source: 159156,
target: 176170 });
// adding node
var x_node = Math.cos(2 * 1001 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1001 * Math.PI / N) * 10;
g.nodes.push({
id: 176108,
label: 'MEMBER: Julia Kende',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/02/research_pasteur-julia-kende-photo-150x150.png',
page_url: 'https://research.pasteur.fr/en/member/julia-kende/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156176108,
size: 0.5,
source: 159156,
target: 176108 });
// adding node
var x_node = Math.cos(2 * 1002 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1002 * Math.PI / N) * 10;
g.nodes.push({
id: 176028,
label: 'MEMBER: Alix De Thoisy',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/alix-de-thoisy/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156176028,
size: 0.5,
source: 159156,
target: 176028 });
// adding node
var x_node = Math.cos(2 * 1003 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1003 * Math.PI / N) * 10;
g.nodes.push({
id: 175996,
label: 'MEMBER: Morgan Lambérioux',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/02/research_pasteur-lamberioux-morga-web-ip-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/morgan-lamberioux/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156175996,
size: 0.5,
source: 159156,
target: 175996 });
// adding node
var x_node = Math.cos(2 * 1004 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1004 * Math.PI / N) * 10;
g.nodes.push({
id: 175988,
label: 'MEMBER: Xavier Eyer',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2018/04/research_pasteur-unknown-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/xavier-eyer/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156175988,
size: 0.5,
source: 159156,
target: 175988 });
// adding node
var x_node = Math.cos(2 * 1005 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1005 * Math.PI / N) * 10;
g.nodes.push({
id: 175973,
label: 'MEMBER: Louna Fruchard',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/02/research_pasteur-louna-fruchard-fruchard-louna-web-ip-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/louna-fruchard/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156175973,
size: 0.5,
source: 159156,
target: 175973 });
// adding node
var x_node = Math.cos(2 * 1006 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1006 * Math.PI / N) * 10;
g.nodes.push({
id: 175967,
label: 'MEMBER: Baptiste Darracq',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/baptiste-darracq/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156175967,
size: 0.5,
source: 159156,
target: 175967 });
// adding node
var x_node = Math.cos(2 * 1007 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1007 * Math.PI / N) * 10;
g.nodes.push({
id: 175948,
label: 'MEMBER: Emma Bloch',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/emma-bloch/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156175948,
size: 0.5,
source: 159156,
target: 175948 });
// adding node
var x_node = Math.cos(2 * 1008 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1008 * Math.PI / N) * 10;
g.nodes.push({
id: 175838,
label: 'MEMBER: Maria Vangelatou',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/02/research_pasteur-maria-vangelatou-92350283-885252988568502-1704564789117714432-n-1-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/maria-vangelatou/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156175838,
size: 0.5,
source: 159156,
target: 175838 });
// adding node
var x_node = Math.cos(2 * 1009 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1009 * Math.PI / N) * 10;
g.nodes.push({
id: 175836,
label: 'MEMBER: Andreas Zoumpoulakis',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/andreas-zoumpoulakis/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156175836,
size: 0.5,
source: 159156,
target: 175836 });
// adding node
var x_node = Math.cos(2 * 1010 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1010 * Math.PI / N) * 10;
g.nodes.push({
id: 175824,
label: 'MEMBER: Elena Lopez Rodriguez',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/02/research_pasteur-elena-lopez-rodriguez-dsc-1721-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/elena-lopez-rodriguez-2/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156175824,
size: 0.5,
source: 159156,
target: 175824 });
// adding node
var x_node = Math.cos(2 * 1011 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1011 * Math.PI / N) * 10;
g.nodes.push({
id: 175733,
label: 'MEMBER: Marine Ghazarian',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/02/research_pasteur-marine-ghazarian-image-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/marine-ghazarian/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156175733,
size: 0.5,
source: 159156,
target: 175733 });
// adding node
var x_node = Math.cos(2 * 1012 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1012 * Math.PI / N) * 10;
g.nodes.push({
id: 175714,
label: 'MEMBER: Alexis Dziedziech',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/03/research_pasteur-img-6491-scaled-e1646300371304-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/alexis-dziedziech/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156175714,
size: 0.5,
source: 159156,
target: 175714 });
// adding node
var x_node = Math.cos(2 * 1013 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1013 * Math.PI / N) * 10;
g.nodes.push({
id: 175649,
label: 'MEMBER: Josue Rafael Barquero Chavarria',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/02/research_pasteur-josue-rafael-barquero-chavarria-photo-josue-barquero-chavarria2-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/josue-rafael-barquero-chavarria/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156175649,
size: 0.5,
source: 159156,
target: 175649 });
// adding node
var x_node = Math.cos(2 * 1014 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1014 * Math.PI / N) * 10;
g.nodes.push({
id: 175637,
label: 'MEMBER: Léa Vinel',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/lea-vinel/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156175637,
size: 0.5,
source: 159156,
target: 175637 });
// adding node
var x_node = Math.cos(2 * 1015 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1015 * Math.PI / N) * 10;
g.nodes.push({
id: 175634,
label: 'MEMBER: Tina Ejlalmanesh',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/tina-ejlalmanesh/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156175634,
size: 0.5,
source: 159156,
target: 175634 });
// adding node
var x_node = Math.cos(2 * 1016 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1016 * Math.PI / N) * 10;
g.nodes.push({
id: 175588,
label: 'MEMBER: Silvia Luna Lazzara',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/02/research_pasteur-silvia-lazzara-silvia-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/silvia-lazzara/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156175588,
size: 0.5,
source: 159156,
target: 175588 });
// adding node
var x_node = Math.cos(2 * 1017 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1017 * Math.PI / N) * 10;
g.nodes.push({
id: 175566,
label: 'MEMBER: Lene Vimeux',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/02/research_pasteur-lene-vimeux-1652183735356-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/lene-vimeux/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156175566,
size: 0.5,
source: 159156,
target: 175566 });
// adding node
var x_node = Math.cos(2 * 1018 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1018 * Math.PI / N) * 10;
g.nodes.push({
id: 175518,
label: 'MEMBER: Allyson Holmes',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/02/research_pasteur-allyson-holmes-picture3-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/allyson-holmes/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156175518,
size: 0.5,
source: 159156,
target: 175518 });
// adding node
var x_node = Math.cos(2 * 1019 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1019 * Math.PI / N) * 10;
g.nodes.push({
id: 175516,
label: 'MEMBER: Henri Galez',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/02/research_pasteur-henri-galez-img-20200621-wa0021-2-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/henri-galez/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156175516,
size: 0.5,
source: 159156,
target: 175516 });
// adding node
var x_node = Math.cos(2 * 1020 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1020 * Math.PI / N) * 10;
g.nodes.push({
id: 175505,
label: 'MEMBER: Eulalie Liorzou',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/02/research_pasteur-eulalie-liorzou-695782-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/eulalie-liorzou/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156175505,
size: 0.5,
source: 159156,
target: 175505 });
// adding node
var x_node = Math.cos(2 * 1021 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1021 * Math.PI / N) * 10;
g.nodes.push({
id: 175486,
label: 'MEMBER: Pauline Gastineau',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/02/research_pasteur-pauline-gastineau-20220622-104019-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/pauline-gastineau/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156175486,
size: 0.5,
source: 159156,
target: 175486 });
// adding node
var x_node = Math.cos(2 * 1022 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1022 * Math.PI / N) * 10;
g.nodes.push({
id: 175222,
label: 'MEMBER: Daniela Ricci',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/01/research_pasteur-img-9269-1-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/daniela-ricci/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156175222,
size: 0.5,
source: 159156,
target: 175222 });
// adding node
var x_node = Math.cos(2 * 1023 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1023 * Math.PI / N) * 10;
g.nodes.push({
id: 175186,
label: 'MEMBER: Chloé Baum',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/01/research_pasteur-chloe-baum-b49c9dd9-4311-4bf9-a009-e56568ff7194-1-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/chloe-baum/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156175186,
size: 0.5,
source: 159156,
target: 175186 });
// adding node
var x_node = Math.cos(2 * 1024 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1024 * Math.PI / N) * 10;
g.nodes.push({
id: 175178,
label: 'MEMBER: Pierre Buffet',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/01/research_pasteur-photo-2022-pierre-buffet-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/buffet-pierre/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156175178,
size: 0.5,
source: 159156,
target: 175178 });
// adding node
var x_node = Math.cos(2 * 1025 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1025 * Math.PI / N) * 10;
g.nodes.push({
id: 175157,
label: 'MEMBER: Thibault Leray',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/thibault-leray/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156175157,
size: 0.5,
source: 159156,
target: 175157 });
// adding node
var x_node = Math.cos(2 * 1026 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1026 * Math.PI / N) * 10;
g.nodes.push({
id: 175155,
label: 'MEMBER: Oriane Fiquet',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/oriane-fiquet/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156175155,
size: 0.5,
source: 159156,
target: 175155 });
// adding node
var x_node = Math.cos(2 * 1027 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1027 * Math.PI / N) * 10;
g.nodes.push({
id: 175153,
label: 'MEMBER: Evgeny Tatirovsky',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/01/research_pasteur-evgeny-tatirovsky-0-received-654399991854009-2-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/evgeny-tatirovsky/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156175153,
size: 0.5,
source: 159156,
target: 175153 });
// adding node
var x_node = Math.cos(2 * 1028 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1028 * Math.PI / N) * 10;
g.nodes.push({
id: 175141,
label: 'MEMBER: Sébastien Gradit',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/01/research_pasteur-sebastien-gradit-id-sg-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/sebastien-gradit/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156175141,
size: 0.5,
source: 159156,
target: 175141 });
// adding node
var x_node = Math.cos(2 * 1029 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1029 * Math.PI / N) * 10;
g.nodes.push({
id: 175061,
label: 'MEMBER: Cyril Scandola',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/01/research_pasteur-cyril-scandola-img-2285-1-scaled-e1643290796323-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/cyril-scandola/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156175061,
size: 0.5,
source: 159156,
target: 175061 });
// adding node
var x_node = Math.cos(2 * 1030 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1030 * Math.PI / N) * 10;
g.nodes.push({
id: 175036,
label: 'MEMBER: Ana Maria Murta Santi',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/01/research_pasteur-ana-maria-murta-santi-photo-web-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/ana-maria-murta-santi/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156175036,
size: 0.5,
source: 159156,
target: 175036 });
// adding node
var x_node = Math.cos(2 * 1031 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1031 * Math.PI / N) * 10;
g.nodes.push({
id: 175033,
label: 'MEMBER: Dyhia Amroune',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/01/research_pasteur-dyhia-amroune-img-20220308-164206-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/dyhia-amroune/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156175033,
size: 0.5,
source: 159156,
target: 175033 });
// adding node
var x_node = Math.cos(2 * 1032 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1032 * Math.PI / N) * 10;
g.nodes.push({
id: 175019,
label: 'MEMBER: Mohamed Mourad Kenfaoui',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/01/research_pasteur-mohamed-mourad-kenfaoui-c5600b9f-c807-4083-8ac4-ac21f1c8f64c-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/mohamed-mourad-kenfaoui-2/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156175019,
size: 0.5,
source: 159156,
target: 175019 });
// adding node
var x_node = Math.cos(2 * 1033 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1033 * Math.PI / N) * 10;
g.nodes.push({
id: 174861,
label: 'MEMBER: Hajar Boulouiz',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/01/research_pasteur-hajar-boulouiz-img-3599-copy-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/hajar-boulouiz/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156174861,
size: 0.5,
source: 159156,
target: 174861 });
// adding node
var x_node = Math.cos(2 * 1034 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1034 * Math.PI / N) * 10;
g.nodes.push({
id: 174813,
label: 'MEMBER: Vallier Sordoillet',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/01/research_pasteur-sordoillet-vallier-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/vallier-sordoillet/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156174813,
size: 0.5,
source: 159156,
target: 174813 });
// adding node
var x_node = Math.cos(2 * 1035 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1035 * Math.PI / N) * 10;
g.nodes.push({
id: 174799,
label: 'MEMBER: Noémi Goncalves',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/noemi-goncalves/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156174799,
size: 0.5,
source: 159156,
target: 174799 });
// adding node
var x_node = Math.cos(2 * 1036 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1036 * Math.PI / N) * 10;
g.nodes.push({
id: 174797,
label: 'MEMBER: Loïc Le Rhun',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/loic-le-rhun/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156174797,
size: 0.5,
source: 159156,
target: 174797 });
// adding node
var x_node = Math.cos(2 * 1037 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1037 * Math.PI / N) * 10;
g.nodes.push({
id: 174794,
label: 'MEMBER: Hassan Omais',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/hassan-omais/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156174794,
size: 0.5,
source: 159156,
target: 174794 });
// adding node
var x_node = Math.cos(2 * 1038 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1038 * Math.PI / N) * 10;
g.nodes.push({
id: 174791,
label: 'MEMBER: Hannah Daoudi',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/hannah-daoudi/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156174791,
size: 0.5,
source: 159156,
target: 174791 });
// adding node
var x_node = Math.cos(2 * 1039 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1039 * Math.PI / N) * 10;
g.nodes.push({
id: 174783,
label: 'MEMBER: Mauricio Saenz Roldan',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/mauricio-saenz-roldan/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156174783,
size: 0.5,
source: 159156,
target: 174783 });
// adding node
var x_node = Math.cos(2 * 1040 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1040 * Math.PI / N) * 10;
g.nodes.push({
id: 174776,
label: 'MEMBER: Alexa Buck',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/alexa-buck/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156174776,
size: 0.5,
source: 159156,
target: 174776 });
// adding node
var x_node = Math.cos(2 * 1041 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1041 * Math.PI / N) * 10;
g.nodes.push({
id: 174774,
label: 'MEMBER: Sabrina Mechaussier',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/sabrina-mechaussier/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156174774,
size: 0.5,
source: 159156,
target: 174774 });
// adding node
var x_node = Math.cos(2 * 1042 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1042 * Math.PI / N) * 10;
g.nodes.push({
id: 174771,
label: 'MEMBER: Thibault Peineau',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/thibault-peineau/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156174771,
size: 0.5,
source: 159156,
target: 174771 });
// adding node
var x_node = Math.cos(2 * 1043 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1043 * Math.PI / N) * 10;
g.nodes.push({
id: 174768,
label: 'MEMBER: Simone Azeglio',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/01/research_pasteur-simone-azeglio-29872385-10212379518898817-4301572541427685108-o-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/simone-azeglio/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156174768,
size: 0.5,
source: 159156,
target: 174768 });
// adding node
var x_node = Math.cos(2 * 1044 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1044 * Math.PI / N) * 10;
g.nodes.push({
id: 174765,
label: 'MEMBER: Wei Li',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/wei-li/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156174765,
size: 0.5,
source: 159156,
target: 174765 });
// adding node
var x_node = Math.cos(2 * 1045 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1045 * Math.PI / N) * 10;
g.nodes.push({
id: 174732,
label: 'MEMBER: Bérangère Virlon',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/01/research_pasteur-berangere-virlon-virlon-berengere-2314-bv-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/berangere-virlon/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156174732,
size: 0.5,
source: 159156,
target: 174732 });
// adding node
var x_node = Math.cos(2 * 1046 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1046 * Math.PI / N) * 10;
g.nodes.push({
id: 174719,
label: 'MEMBER: Sonny Yde',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/sonny-yde/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156174719,
size: 0.5,
source: 159156,
target: 174719 });
// adding node
var x_node = Math.cos(2 * 1047 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1047 * Math.PI / N) * 10;
g.nodes.push({
id: 174686,
label: 'MEMBER: Léa Feldmann',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/01/research_pasteur-lea-feldmann-photo-id-lea-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/lea-feldmann/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156174686,
size: 0.5,
source: 159156,
target: 174686 });
// adding node
var x_node = Math.cos(2 * 1048 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1048 * Math.PI / N) * 10;
g.nodes.push({
id: 174637,
label: 'MEMBER: Stylianos Papadopoulos',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/01/research_pasteur-stylianos-papadopoulos-fa10b756-f990-49c4-bc91-220e9afd10f9-1-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/stylianos-papadopoulos/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156174637,
size: 0.5,
source: 159156,
target: 174637 });
// adding node
var x_node = Math.cos(2 * 1049 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1049 * Math.PI / N) * 10;
g.nodes.push({
id: 174635,
label: 'MEMBER: Thimoro Cheng',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/thimoro-cheng/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156174635,
size: 0.5,
source: 159156,
target: 174635 });
// adding node
var x_node = Math.cos(2 * 1050 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1050 * Math.PI / N) * 10;
g.nodes.push({
id: 174489,
label: 'MEMBER: Laura Xénard',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/01/research_pasteur-laura-xenard-photo2-150x150.png',
page_url: 'https://research.pasteur.fr/en/member/laura-xenard/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156174489,
size: 0.5,
source: 159156,
target: 174489 });
// adding node
var x_node = Math.cos(2 * 1051 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1051 * Math.PI / N) * 10;
g.nodes.push({
id: 174333,
label: 'MEMBER: Thomas Cortier',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/01/research_pasteur-thomas-cortier-thomas-cortier-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/thomas-cortier/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156174333,
size: 0.5,
source: 159156,
target: 174333 });
// adding node
var x_node = Math.cos(2 * 1052 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1052 * Math.PI / N) * 10;
g.nodes.push({
id: 174319,
label: 'MEMBER: Clarisabel Garcia',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/01/research_pasteur-clarisabel-garcia-clarisabelgarcia-photo-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/clarisabel-garcia-2/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156174319,
size: 0.5,
source: 159156,
target: 174319 });
// adding node
var x_node = Math.cos(2 * 1053 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1053 * Math.PI / N) * 10;
g.nodes.push({
id: 174288,
label: 'MEMBER: Benjamin Dorra',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/01/research_pasteur-benjamin-dorra-selfiecropcompressed-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/benjamin-dorra/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156174288,
size: 0.5,
source: 159156,
target: 174288 });
// adding node
var x_node = Math.cos(2 * 1054 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1054 * Math.PI / N) * 10;
g.nodes.push({
id: 174098,
label: 'MEMBER: Clara Mendia',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/clara-mendia/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156174098,
size: 0.5,
source: 159156,
target: 174098 });
// adding node
var x_node = Math.cos(2 * 1055 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1055 * Math.PI / N) * 10;
g.nodes.push({
id: 174074,
label: 'MEMBER: Emma Colard Itté',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/01/research_pasteur-emma-colard-itte-img-3361-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/emma-colard-itte/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156174074,
size: 0.5,
source: 159156,
target: 174074 });
// adding node
var x_node = Math.cos(2 * 1056 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1056 * Math.PI / N) * 10;
g.nodes.push({
id: 174044,
label: 'MEMBER: Mathilde Lecuit',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/01/research_pasteur-mathilde-lecuit-picture-ml-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/mathilde-lecuit/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156174044,
size: 0.5,
source: 159156,
target: 174044 });
// adding node
var x_node = Math.cos(2 * 1057 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1057 * Math.PI / N) * 10;
g.nodes.push({
id: 174012,
label: 'MEMBER: Adèle Micouin',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/01/research_pasteur-adele-micouin-20220114-101055-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/adele-micouin/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156174012,
size: 0.5,
source: 159156,
target: 174012 });
// adding node
var x_node = Math.cos(2 * 1058 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1058 * Math.PI / N) * 10;
g.nodes.push({
id: 173939,
label: 'MEMBER: Vincent Petit',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/vincent-petit/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156173939,
size: 0.5,
source: 159156,
target: 173939 });
// adding node
var x_node = Math.cos(2 * 1059 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1059 * Math.PI / N) * 10;
g.nodes.push({
id: 173908,
label: 'MEMBER: Solène Roux',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/solene-roux/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156173908,
size: 0.5,
source: 159156,
target: 173908 });
// adding node
var x_node = Math.cos(2 * 1060 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1060 * Math.PI / N) * 10;
g.nodes.push({
id: 173902,
label: 'MEMBER: Anne-Valérie Heritier',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/anne-valerie-heritier/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156173902,
size: 0.5,
source: 159156,
target: 173902 });
// adding node
var x_node = Math.cos(2 * 1061 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1061 * Math.PI / N) * 10;
g.nodes.push({
id: 173898,
label: 'MEMBER: Asadollah Aghaie',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/asadollah-aghaie/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156173898,
size: 0.5,
source: 159156,
target: 173898 });
// adding node
var x_node = Math.cos(2 * 1062 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1062 * Math.PI / N) * 10;
g.nodes.push({
id: 173896,
label: 'MEMBER: Amrit Estivalet',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/amrit-estivalet/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156173896,
size: 0.5,
source: 159156,
target: 173896 });
// adding node
var x_node = Math.cos(2 * 1063 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1063 * Math.PI / N) * 10;
g.nodes.push({
id: 173892,
label: 'MEMBER: Muriel Sudres',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/muriel-sudres/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156173892,
size: 0.5,
source: 159156,
target: 173892 });
// adding node
var x_node = Math.cos(2 * 1064 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1064 * Math.PI / N) * 10;
g.nodes.push({
id: 173890,
label: 'MEMBER: Enguerran Mouly',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/enguerran-mouly/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156173890,
size: 0.5,
source: 159156,
target: 173890 });
// adding node
var x_node = Math.cos(2 * 1065 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1065 * Math.PI / N) * 10;
g.nodes.push({
id: 173888,
label: 'MEMBER: Magali Niasme-Grare',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/magali-niasme-grare/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156173888,
size: 0.5,
source: 159156,
target: 173888 });
// adding node
var x_node = Math.cos(2 * 1066 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1066 * Math.PI / N) * 10;
g.nodes.push({
id: 173886,
label: 'MEMBER: Crystel Bonnet',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/crystel-bonnet/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156173886,
size: 0.5,
source: 159156,
target: 173886 });
// adding node
var x_node = Math.cos(2 * 1067 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1067 * Math.PI / N) * 10;
g.nodes.push({
id: 173856,
label: 'MEMBER: Amaury Korb',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/01/research_pasteur-amaury-korb-a.-korb-oct.-22-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/amaury-korb/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156173856,
size: 0.5,
source: 159156,
target: 173856 });
// adding node
var x_node = Math.cos(2 * 1068 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1068 * Math.PI / N) * 10;
g.nodes.push({
id: 173846,
label: 'MEMBER: Ana Catarina Martins',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/01/research_pasteur-ana-catarina-martins-ana-catarina-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/ana-catarina-martins/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156173846,
size: 0.5,
source: 159156,
target: 173846 });
// adding node
var x_node = Math.cos(2 * 1069 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1069 * Math.PI / N) * 10;
g.nodes.push({
id: 173823,
label: 'MEMBER: Marilys Castet',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/01/research_pasteur-marilys-castet-marilys-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/marilys-castet/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156173823,
size: 0.5,
source: 159156,
target: 173823 });
// adding node
var x_node = Math.cos(2 * 1070 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1070 * Math.PI / N) * 10;
g.nodes.push({
id: 173805,
label: 'MEMBER: Juliette Perrot',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/juliette-perrot/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156173805,
size: 0.5,
source: 159156,
target: 173805 });
// adding node
var x_node = Math.cos(2 * 1071 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1071 * Math.PI / N) * 10;
g.nodes.push({
id: 173645,
label: 'MEMBER: Marc Settelen',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/marc-settelen/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156173645,
size: 0.5,
source: 159156,
target: 173645 });
// adding node
var x_node = Math.cos(2 * 1072 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1072 * Math.PI / N) * 10;
g.nodes.push({
id: 173607,
label: 'MEMBER: Fabien Compeau',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/01/research_pasteur-f.-compeau-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/fabien-compeau/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156173607,
size: 0.5,
source: 159156,
target: 173607 });
// adding node
var x_node = Math.cos(2 * 1073 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1073 * Math.PI / N) * 10;
g.nodes.push({
id: 173598,
label: 'MEMBER: Nathan Guibert',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/nathan-guibert/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156173598,
size: 0.5,
source: 159156,
target: 173598 });
// adding node
var x_node = Math.cos(2 * 1074 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1074 * Math.PI / N) * 10;
g.nodes.push({
id: 173443,
label: 'MEMBER: Solène Bernard',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/01/research_pasteur-moi2-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/solene-bernard/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156173443,
size: 0.5,
source: 159156,
target: 173443 });
// adding node
var x_node = Math.cos(2 * 1075 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1075 * Math.PI / N) * 10;
g.nodes.push({
id: 173431,
label: 'MEMBER: Nur Elyza Binte Zulkifli',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/binte-zulkifli-nur-elyza/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156173431,
size: 0.5,
source: 159156,
target: 173431 });
// adding node
var x_node = Math.cos(2 * 1076 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1076 * Math.PI / N) * 10;
g.nodes.push({
id: 173426,
label: 'MEMBER: Hebert Echenique Rivera',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/01/research_pasteur-photo-hebert-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/hebert-echenique-rivera/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156173426,
size: 0.5,
source: 159156,
target: 173426 });
// adding node
var x_node = Math.cos(2 * 1077 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1077 * Math.PI / N) * 10;
g.nodes.push({
id: 173373,
label: 'MEMBER: Sara Napolitano',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/01/research_pasteur-sara-napolitano-inria-0474-036-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/sara-napolitano/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156173373,
size: 0.5,
source: 159156,
target: 173373 });
// adding node
var x_node = Math.cos(2 * 1078 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1078 * Math.PI / N) * 10;
g.nodes.push({
id: 173366,
label: 'MEMBER: Névé Aupérin',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/01/research_pasteur-neve-profile-lr-150x150.png',
page_url: 'https://research.pasteur.fr/en/member/neve-auperin/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156173366,
size: 0.5,
source: 159156,
target: 173366 });
// adding node
var x_node = Math.cos(2 * 1079 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1079 * Math.PI / N) * 10;
g.nodes.push({
id: 173358,
label: 'MEMBER: Arantxa Rojas',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/01/research_pasteur-arantxa-rojas-arantxa-2lr-web-150x150.png',
page_url: 'https://research.pasteur.fr/en/member/arantxa-rojas/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156173358,
size: 0.5,
source: 159156,
target: 173358 });
// adding node
var x_node = Math.cos(2 * 1080 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1080 * Math.PI / N) * 10;
g.nodes.push({
id: 173355,
label: 'MEMBER: Noémie Wolkowicz',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/noemie-wolkowicz/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156173355,
size: 0.5,
source: 159156,
target: 173355 });
// adding node
var x_node = Math.cos(2 * 1081 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1081 * Math.PI / N) * 10;
g.nodes.push({
id: 173181,
label: 'MEMBER: Anne-Lise Giraud',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/01/research_pasteur-anne-lise-giraud-alg-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/anne-lise-mamessier-giraud/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156173181,
size: 0.5,
source: 159156,
target: 173181 });
// adding node
var x_node = Math.cos(2 * 1082 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1082 * Math.PI / N) * 10;
g.nodes.push({
id: 173178,
label: 'MEMBER: Yidan Wang',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/yidan-wang/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156173178,
size: 0.5,
source: 159156,
target: 173178 });
// adding node
var x_node = Math.cos(2 * 1083 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1083 * Math.PI / N) * 10;
g.nodes.push({
id: 173142,
label: 'MEMBER: Maëva Pichon',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/maeva-pichon/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156173142,
size: 0.5,
source: 159156,
target: 173142 });
// adding node
var x_node = Math.cos(2 * 1084 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1084 * Math.PI / N) * 10;
g.nodes.push({
id: 172924,
label: 'MEMBER: Liza Sarde',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/12/research_pasteur-liza-sarde-photo-liza-sarde-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/liza-sarde/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156172924,
size: 0.5,
source: 159156,
target: 172924 });
// adding node
var x_node = Math.cos(2 * 1085 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1085 * Math.PI / N) * 10;
g.nodes.push({
id: 172520,
label: 'MEMBER: Malalaniaina Rakotobe',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/12/research_pasteur-malala-photo-website-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/malalaniaina-rakotobe/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156172520,
size: 0.5,
source: 159156,
target: 172520 });
// adding node
var x_node = Math.cos(2 * 1086 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1086 * Math.PI / N) * 10;
g.nodes.push({
id: 172503,
label: 'MEMBER: Chiara Crestani',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/12/research_pasteur-photochiara-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/chiara-crestani/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156172503,
size: 0.5,
source: 159156,
target: 172503 });
// adding node
var x_node = Math.cos(2 * 1087 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1087 * Math.PI / N) * 10;
g.nodes.push({
id: 172360,
label: 'MEMBER: Arunaditya Deshmukh',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/arunaditya-deshmukh/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156172360,
size: 0.5,
source: 159156,
target: 172360 });
// adding node
var x_node = Math.cos(2 * 1088 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1088 * Math.PI / N) * 10;
g.nodes.push({
id: 171817,
label: 'MEMBER: Elena Perez-Anton',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/12/research_pasteur-elena-perez-anton-photo-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/elena-perez-anton/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156171817,
size: 0.5,
source: 159156,
target: 171817 });
// adding node
var x_node = Math.cos(2 * 1089 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1089 * Math.PI / N) * 10;
g.nodes.push({
id: 171577,
label: 'MEMBER: Léa Pinon',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/lea-pinon/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156171577,
size: 0.5,
source: 159156,
target: 171577 });
// adding node
var x_node = Math.cos(2 * 1090 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1090 * Math.PI / N) * 10;
g.nodes.push({
id: 171436,
label: 'MEMBER: Diane Letourneur',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/11/research_pasteur-diane-letourneur-picture-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/diane-letourneur/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156171436,
size: 0.5,
source: 159156,
target: 171436 });
// adding node
var x_node = Math.cos(2 * 1091 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1091 * Math.PI / N) * 10;
g.nodes.push({
id: 171311,
label: 'MEMBER: Sevan Belian',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/11/research_pasteur-sevan-belian-sevan-website-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/sevan-belian/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156171311,
size: 0.5,
source: 159156,
target: 171311 });
// adding node
var x_node = Math.cos(2 * 1092 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1092 * Math.PI / N) * 10;
g.nodes.push({
id: 171243,
label: 'MEMBER: François Dossin',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/11/research_pasteur-francois-dossin-photo1-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/francois-dossin/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156171243,
size: 0.5,
source: 159156,
target: 171243 });
// adding node
var x_node = Math.cos(2 * 1093 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1093 * Math.PI / N) * 10;
g.nodes.push({
id: 171008,
label: 'MEMBER: Violeta Basten Romero',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/11/research_pasteur-violeta-basten-romero-745b4aa5-003d-460c-ab4e-d22a2ba0477d-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/violeta-basten-romero/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156171008,
size: 0.5,
source: 159156,
target: 171008 });
// adding node
var x_node = Math.cos(2 * 1094 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1094 * Math.PI / N) * 10;
g.nodes.push({
id: 170909,
label: 'MEMBER: Grégory Gérenton',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/11/research_pasteur-gregory-gerenton-gregory-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/gregory-gerenton/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156170909,
size: 0.5,
source: 159156,
target: 170909 });
// adding node
var x_node = Math.cos(2 * 1095 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1095 * Math.PI / N) * 10;
g.nodes.push({
id: 170519,
label: 'MEMBER: Eli Maciel',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/eli-maciel/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156170519,
size: 0.5,
source: 159156,
target: 170519 });
// adding node
var x_node = Math.cos(2 * 1096 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1096 * Math.PI / N) * 10;
g.nodes.push({
id: 170355,
label: 'MEMBER: Markel Martinez Carranza',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/11/research_pasteur-markel-martinez-carranza-cropped1-scaled-e1650636496331-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/markel-martinez-carranza/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156170355,
size: 0.5,
source: 159156,
target: 170355 });
// adding node
var x_node = Math.cos(2 * 1097 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1097 * Math.PI / N) * 10;
g.nodes.push({
id: 170295,
label: 'MEMBER: Mathilde Dusseaux',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/11/research_pasteur-mathilde-dusseaux-mathilde-dusseaux-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/mathilde-dusseaux/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156170295,
size: 0.5,
source: 159156,
target: 170295 });
// adding node
var x_node = Math.cos(2 * 1098 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1098 * Math.PI / N) * 10;
g.nodes.push({
id: 170262,
label: 'MEMBER: Behnam Yousefi',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/11/research_pasteur-behnam-yousefi-behnam-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/behnam-yousefi/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156170262,
size: 0.5,
source: 159156,
target: 170262 });
// adding node
var x_node = Math.cos(2 * 1099 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1099 * Math.PI / N) * 10;
g.nodes.push({
id: 170256,
label: 'MEMBER: Thibaut Brunet',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/11/research_pasteur-thibaut-brunet-headshot-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/thibaut-brunet/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156170256,
size: 0.5,
source: 159156,
target: 170256 });
// adding node
var x_node = Math.cos(2 * 1100 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1100 * Math.PI / N) * 10;
g.nodes.push({
id: 170251,
label: 'MEMBER: Margot Penru',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/margot-penru/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156170251,
size: 0.5,
source: 159156,
target: 170251 });
// adding node
var x_node = Math.cos(2 * 1101 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1101 * Math.PI / N) * 10;
g.nodes.push({
id: 170226,
label: 'MEMBER: Cheïma Boudjeniba',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/cheima-boudjeniba/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156170226,
size: 0.5,
source: 159156,
target: 170226 });
// adding node
var x_node = Math.cos(2 * 1102 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1102 * Math.PI / N) * 10;
g.nodes.push({
id: 170221,
label: 'MEMBER: Céline Quinsac',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/11/research_pasteur-celine-quinsac-photo-quinsac-ida-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/celine-quinsac/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156170221,
size: 0.5,
source: 159156,
target: 170221 });
// adding node
var x_node = Math.cos(2 * 1103 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1103 * Math.PI / N) * 10;
g.nodes.push({
id: 170205,
label: 'MEMBER: Hélène Philippe',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/11/research_pasteur-helene-philippe-img-7165-scaled-e1645781425618-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/helene-philippe/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156170205,
size: 0.5,
source: 159156,
target: 170205 });
// adding node
var x_node = Math.cos(2 * 1104 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1104 * Math.PI / N) * 10;
g.nodes.push({
id: 170130,
label: 'MEMBER: Guilhem Royer',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/11/research_pasteur-guilhem-royer-guilhem-photo-041121-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/guilhem-royer/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156170130,
size: 0.5,
source: 159156,
target: 170130 });
// adding node
var x_node = Math.cos(2 * 1105 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1105 * Math.PI / N) * 10;
g.nodes.push({
id: 170085,
label: 'MEMBER: Alix Phalipon',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/11/research_pasteur-alix-phalipon-photo-alix-phalipon3-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/alix-phalipon/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156170085,
size: 0.5,
source: 159156,
target: 170085 });
// adding node
var x_node = Math.cos(2 * 1106 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1106 * Math.PI / N) * 10;
g.nodes.push({
id: 170041,
label: 'MEMBER: Daniele Campisi',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/11/research_pasteur-daniele-campisi-1544358976357-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/daniele-campisi/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156170041,
size: 0.5,
source: 159156,
target: 170041 });
// adding node
var x_node = Math.cos(2 * 1107 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1107 * Math.PI / N) * 10;
g.nodes.push({
id: 169942,
label: 'MEMBER: Oceane Fourquet',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/10/research_pasteur-oceane-fourquet-received-10565179785690541-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/oceane-fourquet/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156169942,
size: 0.5,
source: 159156,
target: 169942 });
// adding node
var x_node = Math.cos(2 * 1108 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1108 * Math.PI / N) * 10;
g.nodes.push({
id: 169931,
label: 'MEMBER: Mara Santarelli',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/10/research_pasteur-mara-santarelli-img-7545-1-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/mara-santarelli/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156169931,
size: 0.5,
source: 159156,
target: 169931 });
// adding node
var x_node = Math.cos(2 * 1109 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1109 * Math.PI / N) * 10;
g.nodes.push({
id: 169927,
label: 'MEMBER: Federico Melograna',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/federico-melograna/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156169927,
size: 0.5,
source: 159156,
target: 169927 });
// adding node
var x_node = Math.cos(2 * 1110 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1110 * Math.PI / N) * 10;
g.nodes.push({
id: 169702,
label: 'MEMBER: Ayawavi Viviane Agbogan',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/10/research_pasteur-ayawavi-viviane-agbogan-viviane-agbogan-1-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/ayawavi-viviane-agbogan/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156169702,
size: 0.5,
source: 159156,
target: 169702 });
// adding node
var x_node = Math.cos(2 * 1111 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1111 * Math.PI / N) * 10;
g.nodes.push({
id: 169452,
label: 'MEMBER: Banujaa Jeyarajah',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/banujaa-jeyarajah/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156169452,
size: 0.5,
source: 159156,
target: 169452 });
// adding node
var x_node = Math.cos(2 * 1112 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1112 * Math.PI / N) * 10;
g.nodes.push({
id: 169447,
label: 'MEMBER: Yoan Marie-joseph',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/yoan-marie-joseph/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156169447,
size: 0.5,
source: 159156,
target: 169447 });
// adding node
var x_node = Math.cos(2 * 1113 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1113 * Math.PI / N) * 10;
g.nodes.push({
id: 169385,
label: 'MEMBER: Clémentine Rouyère',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/10/research_pasteur-clementine-rouyere-clementine-photoptite-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/clementine-rouyere/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156169385,
size: 0.5,
source: 159156,
target: 169385 });
// adding node
var x_node = Math.cos(2 * 1114 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1114 * Math.PI / N) * 10;
g.nodes.push({
id: 169378,
label: 'MEMBER: Julie Thomsen',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/10/research_pasteur-thomsenjulie-photo-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/julie-thomsen/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156169378,
size: 0.5,
source: 159156,
target: 169378 });
// adding node
var x_node = Math.cos(2 * 1115 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1115 * Math.PI / N) * 10;
g.nodes.push({
id: 169367,
label: 'MEMBER: Blaise Lafoux',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/10/research_pasteur-blaise-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/blaise-lafoux/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156169367,
size: 0.5,
source: 159156,
target: 169367 });
// adding node
var x_node = Math.cos(2 * 1116 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1116 * Math.PI / N) * 10;
g.nodes.push({
id: 169153,
label: 'MEMBER: Daniel Krentzel',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/10/research_pasteur-daniel-krentzel-photo5879465600504412453-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/daniel-krentzel/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156169153,
size: 0.5,
source: 159156,
target: 169153 });
// adding node
var x_node = Math.cos(2 * 1117 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1117 * Math.PI / N) * 10;
g.nodes.push({
id: 169070,
label: 'MEMBER: Elvira Infante',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/10/research_pasteur-elvira-infante-photo-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/elvira-infante/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156169070,
size: 0.5,
source: 159156,
target: 169070 });
// adding node
var x_node = Math.cos(2 * 1118 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1118 * Math.PI / N) * 10;
g.nodes.push({
id: 169053,
label: 'MEMBER: Aimée Taylor',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/aimee-taylor/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156169053,
size: 0.5,
source: 159156,
target: 169053 });
// adding node
var x_node = Math.cos(2 * 1119 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1119 * Math.PI / N) * 10;
g.nodes.push({
id: 168974,
label: 'MEMBER: Gonçalo Nogueira',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/10/research_pasteur-goncalo--150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/goncalo-nogueira/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156168974,
size: 0.5,
source: 159156,
target: 168974 });
// adding node
var x_node = Math.cos(2 * 1120 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1120 * Math.PI / N) * 10;
g.nodes.push({
id: 168913,
label: 'MEMBER: Yaxal Ponce Soto',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/10/research_pasteur-yaxal-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/yaxal-ponce-soto/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156168913,
size: 0.5,
source: 159156,
target: 168913 });
// adding node
var x_node = Math.cos(2 * 1121 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1121 * Math.PI / N) * 10;
g.nodes.push({
id: 168834,
label: 'MEMBER: Elizabeth Maloney',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/10/research_pasteur-elizabeth-maloney-elizabeth-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/elizabeth-maloney/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156168834,
size: 0.5,
source: 159156,
target: 168834 });
// adding node
var x_node = Math.cos(2 * 1122 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1122 * Math.PI / N) * 10;
g.nodes.push({
id: 168825,
label: 'MEMBER: Yanping Zhou',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/10/research_pasteur-yanping-zhou-photo-id-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/yanping-zhou/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156168825,
size: 0.5,
source: 159156,
target: 168825 });
// adding node
var x_node = Math.cos(2 * 1123 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1123 * Math.PI / N) * 10;
g.nodes.push({
id: 168744,
label: 'MEMBER: Puck Norell',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/10/research_pasteur-puck-norell-243394113-2062278380590411-9196739616777070472-n-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/puck-nasman-norell/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156168744,
size: 0.5,
source: 159156,
target: 168744 });
// adding node
var x_node = Math.cos(2 * 1124 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1124 * Math.PI / N) * 10;
g.nodes.push({
id: 168665,
label: 'MEMBER: Madison Lenormand',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/10/research_pasteur-madison-lenormand-e1633695343496-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/madison-lenormand/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156168665,
size: 0.5,
source: 159156,
target: 168665 });
// adding node
var x_node = Math.cos(2 * 1125 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1125 * Math.PI / N) * 10;
g.nodes.push({
id: 168653,
label: 'MEMBER: Lucie Lamothe',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/10/research_pasteur-lucie-lamothe-photo-cv-cropee-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/lucie-lamothe/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156168653,
size: 0.5,
source: 159156,
target: 168653 });
// adding node
var x_node = Math.cos(2 * 1126 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1126 * Math.PI / N) * 10;
g.nodes.push({
id: 168648,
label: 'MEMBER: Cécile Palao',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/10/research_pasteur-cecile-palao-cecile-palao-rond-150x150.png',
page_url: 'https://research.pasteur.fr/en/member/cecile-palao/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156168648,
size: 0.5,
source: 159156,
target: 168648 });
// adding node
var x_node = Math.cos(2 * 1127 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1127 * Math.PI / N) * 10;
g.nodes.push({
id: 168596,
label: 'MEMBER: Parul Sharma',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/10/research_pasteur-parul-sharma-pic1-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/parul-sharma/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156168596,
size: 0.5,
source: 159156,
target: 168596 });
// adding node
var x_node = Math.cos(2 * 1128 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1128 * Math.PI / N) * 10;
g.nodes.push({
id: 168566,
label: 'MEMBER: Miguel Gomez-Raya-Vilanova',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/10/research_pasteur-miguel-gomez-raya-vilanova-img-4082-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/miguel-gomez-raya-vilanova/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156168566,
size: 0.5,
source: 159156,
target: 168566 });
// adding node
var x_node = Math.cos(2 * 1129 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1129 * Math.PI / N) * 10;
g.nodes.push({
id: 168557,
label: 'MEMBER: Mariem Znaidia',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/mariem-znaidia/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156168557,
size: 0.5,
source: 159156,
target: 168557 });
// adding node
var x_node = Math.cos(2 * 1130 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1130 * Math.PI / N) * 10;
g.nodes.push({
id: 168547,
label: 'MEMBER: Léa Avon',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/10/research_pasteur-lea-avon-research-pasteur-lea-avon-pp-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/lea-avon/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156168547,
size: 0.5,
source: 159156,
target: 168547 });
// adding node
var x_node = Math.cos(2 * 1131 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1131 * Math.PI / N) * 10;
g.nodes.push({
id: 168540,
label: 'MEMBER: Florian Préjean',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/florian-prejean/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156168540,
size: 0.5,
source: 159156,
target: 168540 });
// adding node
var x_node = Math.cos(2 * 1132 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1132 * Math.PI / N) * 10;
g.nodes.push({
id: 168444,
label: 'MEMBER: Mathilde Grimée',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/10/research_pasteur-mathilde-grimee-de02585c-b3fe-4ba9-bb57-d829f1f4a5e4-1-105-c-1-1-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/mathilde-grimee/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156168444,
size: 0.5,
source: 159156,
target: 168444 });
// adding node
var x_node = Math.cos(2 * 1133 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1133 * Math.PI / N) * 10;
g.nodes.push({
id: 168431,
label: 'MEMBER: Teresa Piechowiak',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/teresa-piechowiak/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156168431,
size: 0.5,
source: 159156,
target: 168431 });
// adding node
var x_node = Math.cos(2 * 1134 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1134 * Math.PI / N) * 10;
g.nodes.push({
id: 168418,
label: 'MEMBER: Alix Demians d’Archimbaud',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/10/research_pasteur-alix-demians-darchimbaud-photo-alix-demians-darchimbaud4-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/alix-demians-darchimbaud/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156168418,
size: 0.5,
source: 159156,
target: 168418 });
// adding node
var x_node = Math.cos(2 * 1135 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1135 * Math.PI / N) * 10;
g.nodes.push({
id: 168405,
label: 'MEMBER: Yasmine Achat',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/yasmine-achat/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156168405,
size: 0.5,
source: 159156,
target: 168405 });
// adding node
var x_node = Math.cos(2 * 1136 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1136 * Math.PI / N) * 10;
g.nodes.push({
id: 168402,
label: 'MEMBER: Camille Martin-Gallausiaux',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/10/research_pasteur-camille-martin-gallausiaux-photo-camille-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/camille-martin-gallausiaux/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156168402,
size: 0.5,
source: 159156,
target: 168402 });
// adding node
var x_node = Math.cos(2 * 1137 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1137 * Math.PI / N) * 10;
g.nodes.push({
id: 168380,
label: 'MEMBER: Cristina Di Silvestre',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/10/research_pasteur-cristina-di-silvestre-cristina-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/cristina-di-silvestre/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156168380,
size: 0.5,
source: 159156,
target: 168380 });
// adding node
var x_node = Math.cos(2 * 1138 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1138 * Math.PI / N) * 10;
g.nodes.push({
id: 168376,
label: 'MEMBER: Dorenda Schoorl',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/10/research_pasteur-dorenda-schoorl-img-20210830-wa0008-1-e1634132717871-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/dorenda-schoorl/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156168376,
size: 0.5,
source: 159156,
target: 168376 });
// adding node
var x_node = Math.cos(2 * 1139 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1139 * Math.PI / N) * 10;
g.nodes.push({
id: 168361,
label: 'MEMBER: Gaston Rijo de Leon',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/10/research_pasteur-gaston-rijo-de-leon-img-20191026-114642-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/gaston-rijo-de-leon/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156168361,
size: 0.5,
source: 159156,
target: 168361 });
// adding node
var x_node = Math.cos(2 * 1140 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1140 * Math.PI / N) * 10;
g.nodes.push({
id: 168320,
label: 'MEMBER: Chloe Bouarab',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/10/research_pasteur-chloe-bouarab-chloe-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/chloe-bouarab/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156168320,
size: 0.5,
source: 159156,
target: 168320 });
// adding node
var x_node = Math.cos(2 * 1141 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1141 * Math.PI / N) * 10;
g.nodes.push({
id: 168308,
label: 'MEMBER: José Crispin Zavala Alvarado',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/jose-crispin-zavala-alvarado-2/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156168308,
size: 0.5,
source: 159156,
target: 168308 });
// adding node
var x_node = Math.cos(2 * 1142 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1142 * Math.PI / N) * 10;
g.nodes.push({
id: 168241,
label: 'MEMBER: David Fernandez Martinez',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/12/research_pasteur-inshallah-e1670338002180-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/david-fernandez-martinez-2/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156168241,
size: 0.5,
source: 159156,
target: 168241 });
// adding node
var x_node = Math.cos(2 * 1143 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1143 * Math.PI / N) * 10;
g.nodes.push({
id: 168180,
label: 'MEMBER: Nell Saunders',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/nell-saunders/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156168180,
size: 0.5,
source: 159156,
target: 168180 });
// adding node
var x_node = Math.cos(2 * 1144 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1144 * Math.PI / N) * 10;
g.nodes.push({
id: 168177,
label: 'MEMBER: William Henry Bolland',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/william-henry-bolland/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156168177,
size: 0.5,
source: 159156,
target: 168177 });
// adding node
var x_node = Math.cos(2 * 1145 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1145 * Math.PI / N) * 10;
g.nodes.push({
id: 168120,
label: 'MEMBER: Lucie Dupuis',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/lucie-dupuis/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156168120,
size: 0.5,
source: 159156,
target: 168120 });
// adding node
var x_node = Math.cos(2 * 1146 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1146 * Math.PI / N) * 10;
g.nodes.push({
id: 168051,
label: 'MEMBER: Oksana Reznichenko',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/09/research_pasteur-oksana-reznichenko-capture-decran-2022-10-18-a-09.09.39-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/oksana-reznichenko/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156168051,
size: 0.5,
source: 159156,
target: 168051 });
// adding node
var x_node = Math.cos(2 * 1147 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1147 * Math.PI / N) * 10;
g.nodes.push({
id: 167895,
label: 'MEMBER: Ye Peng',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/09/research_pasteur-ye-peng-img-5390-01-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/ye-peng/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156167895,
size: 0.5,
source: 159156,
target: 167895 });
// adding node
var x_node = Math.cos(2 * 1148 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1148 * Math.PI / N) * 10;
g.nodes.push({
id: 167764,
label: 'MEMBER: Chloé Marie Poquet',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/chloe-marie-poquet/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156167764,
size: 0.5,
source: 159156,
target: 167764 });
// adding node
var x_node = Math.cos(2 * 1149 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1149 * Math.PI / N) * 10;
g.nodes.push({
id: 167756,
label: 'MEMBER: Fabien Fuche',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/fabien-fuche-2/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156167756,
size: 0.5,
source: 159156,
target: 167756 });
// adding node
var x_node = Math.cos(2 * 1150 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1150 * Math.PI / N) * 10;
g.nodes.push({
id: 167546,
label: 'MEMBER: Emmanuel Roux',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/emmanuel-roux/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156167546,
size: 0.5,
source: 159156,
target: 167546 });
// adding node
var x_node = Math.cos(2 * 1151 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1151 * Math.PI / N) * 10;
g.nodes.push({
id: 167431,
label: 'MEMBER: Sharvani Shrinivas Shintre',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/09/research_pasteur-sharvani-shrinivas-shintre-shintre-sharvani-photo-1-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/sharvani-shrinivas-shintre/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156167431,
size: 0.5,
source: 159156,
target: 167431 });
// adding node
var x_node = Math.cos(2 * 1152 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1152 * Math.PI / N) * 10;
g.nodes.push({
id: 167275,
label: 'MEMBER: Jessica Schmuck',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/09/research_pasteur-jessica-schmuck-index-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/jessica-schmuck/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156167275,
size: 0.5,
source: 159156,
target: 167275 });
// adding node
var x_node = Math.cos(2 * 1153 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1153 * Math.PI / N) * 10;
g.nodes.push({
id: 167165,
label: 'MEMBER: Amaia Ochandorena Saa',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/09/research_pasteur-amaia-ochandorena-saa-ochandorena-saa-amaia-2786-red2-e1634157525331-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/amaia-ochandorena-saa/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156167165,
size: 0.5,
source: 159156,
target: 167165 });
// adding node
var x_node = Math.cos(2 * 1154 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1154 * Math.PI / N) * 10;
g.nodes.push({
id: 167106,
label: 'MEMBER: Léo Caulat',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/09/research_pasteur-leo-caulat-031219-0276-e1631795714932-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/leo-caulat/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156167106,
size: 0.5,
source: 159156,
target: 167106 });
// adding node
var x_node = Math.cos(2 * 1155 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1155 * Math.PI / N) * 10;
g.nodes.push({
id: 167086,
label: 'MEMBER: Solène Cottis',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/09/research_pasteur-solene-cottis-solene-cottis-de-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/solene-cottis/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156167086,
size: 0.5,
source: 159156,
target: 167086 });
// adding node
var x_node = Math.cos(2 * 1156 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1156 * Math.PI / N) * 10;
g.nodes.push({
id: 167056,
label: 'MEMBER: Małgorzata Gazda',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/09/research_pasteur-malgorzata-gazda-gazda-malgorzata-2-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/malgorzata-gazda/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156167056,
size: 0.5,
source: 159156,
target: 167056 });
// adding node
var x_node = Math.cos(2 * 1157 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1157 * Math.PI / N) * 10;
g.nodes.push({
id: 166881,
label: 'MEMBER: Eva Benedek',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/09/research_pasteur-eva-benedek-img-20210513-184142-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/eva-benedek/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156166881,
size: 0.5,
source: 159156,
target: 166881 });
// adding node
var x_node = Math.cos(2 * 1158 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1158 * Math.PI / N) * 10;
g.nodes.push({
id: 166839,
label: 'MEMBER: Camille Fortas',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/camille-fortas/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156166839,
size: 0.5,
source: 159156,
target: 166839 });
// adding node
var x_node = Math.cos(2 * 1159 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1159 * Math.PI / N) * 10;
g.nodes.push({
id: 166786,
label: 'MEMBER: Laura Pokorny',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/09/research_pasteur-laura-pokorny-laurapokornycropped-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/laura-pokorny/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156166786,
size: 0.5,
source: 159156,
target: 166786 });
// adding node
var x_node = Math.cos(2 * 1160 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1160 * Math.PI / N) * 10;
g.nodes.push({
id: 166541,
label: 'MEMBER: Alexander Chamolly',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/09/research_pasteur-alex-chamolly-gp-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/alexander-chamolly/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156166541,
size: 0.5,
source: 159156,
target: 166541 });
// adding node
var x_node = Math.cos(2 * 1161 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1161 * Math.PI / N) * 10;
g.nodes.push({
id: 166537,
label: 'MEMBER: Camille Dos Santos-Toinet',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/09/research_pasteur-camille-dos-santos-toinet-groupe04-03-mdweb-1708291355359-e1708294149588-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/camille-dos-santos/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156166537,
size: 0.5,
source: 159156,
target: 166537 });
// adding node
var x_node = Math.cos(2 * 1162 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1162 * Math.PI / N) * 10;
g.nodes.push({
id: 166535,
label: 'MEMBER: Klementina Borovnik',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/09/research_pasteur-klementina-borovnik-20210822-174400-03-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/klementina-borovnik/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156166535,
size: 0.5,
source: 159156,
target: 166535 });
// adding node
var x_node = Math.cos(2 * 1163 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1163 * Math.PI / N) * 10;
g.nodes.push({
id: 166309,
label: 'MEMBER: Samuel Hoff',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/samuel-hoff/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156166309,
size: 0.5,
source: 159156,
target: 166309 });
// adding node
var x_node = Math.cos(2 * 1164 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1164 * Math.PI / N) * 10;
g.nodes.push({
id: 166170,
label: 'MEMBER: Laura Garcia',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/09/research_pasteur-laura-garcia-782604ab-ef18-46cd-977a-70b1809686e7-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/laura-garcia/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156166170,
size: 0.5,
source: 159156,
target: 166170 });
// adding node
var x_node = Math.cos(2 * 1165 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1165 * Math.PI / N) * 10;
g.nodes.push({
id: 166168,
label: 'MEMBER: Camille Berthelot',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/09/research_pasteur-camille-berthelot-1631695994853-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/camille-berthelot/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156166168,
size: 0.5,
source: 159156,
target: 166168 });
// adding node
var x_node = Math.cos(2 * 1166 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1166 * Math.PI / N) * 10;
g.nodes.push({
id: 166101,
label: 'MEMBER: Chloé Sturmach',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/chloe-sturmach/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156166101,
size: 0.5,
source: 159156,
target: 166101 });
// adding node
var x_node = Math.cos(2 * 1167 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1167 * Math.PI / N) * 10;
g.nodes.push({
id: 166097,
label: 'MEMBER: Sinem Caglar',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/sinem-caglar/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156166097,
size: 0.5,
source: 159156,
target: 166097 });
// adding node
var x_node = Math.cos(2 * 1168 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1168 * Math.PI / N) * 10;
g.nodes.push({
id: 166075,
label: 'MEMBER: Richard Girard',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/richard-girard/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156166075,
size: 0.5,
source: 159156,
target: 166075 });
// adding node
var x_node = Math.cos(2 * 1169 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1169 * Math.PI / N) * 10;
g.nodes.push({
id: 165989,
label: 'MEMBER: Bárbara Fonseca',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/09/research_pasteur-barbara-fonseca-cropped-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/barbara-fonseca/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156165989,
size: 0.5,
source: 159156,
target: 165989 });
// adding node
var x_node = Math.cos(2 * 1170 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1170 * Math.PI / N) * 10;
g.nodes.push({
id: 165941,
label: 'MEMBER: Emerson Leonardo Alvarez Quinche',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/emerson-leonardo-alvarez-quinche/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156165941,
size: 0.5,
source: 159156,
target: 165941 });
// adding node
var x_node = Math.cos(2 * 1171 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1171 * Math.PI / N) * 10;
g.nodes.push({
id: 165873,
label: 'MEMBER: Maelenn Chevreuil',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/09/research_pasteur-maelenn-chevreuil-photo-cv-lm-2-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/maelenn-chevreuil/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156165873,
size: 0.5,
source: 159156,
target: 165873 });
// adding node
var x_node = Math.cos(2 * 1172 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1172 * Math.PI / N) * 10;
g.nodes.push({
id: 165850,
label: 'MEMBER: Nassim Mahtal',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/nassim-mahtal/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156165850,
size: 0.5,
source: 159156,
target: 165850 });
// adding node
var x_node = Math.cos(2 * 1173 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1173 * Math.PI / N) * 10;
g.nodes.push({
id: 165707,
label: 'MEMBER: Pierre Luisi',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/08/research_pasteur-pierre-luisi-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/pierre-luisi/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156165707,
size: 0.5,
source: 159156,
target: 165707 });
// adding node
var x_node = Math.cos(2 * 1174 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1174 * Math.PI / N) * 10;
g.nodes.push({
id: 165508,
label: 'MEMBER: Lisa Verzier',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/lisa-verzier/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156165508,
size: 0.5,
source: 159156,
target: 165508 });
// adding node
var x_node = Math.cos(2 * 1175 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1175 * Math.PI / N) * 10;
g.nodes.push({
id: 165469,
label: 'MEMBER: Martin Boutroux',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/08/research_pasteur-martin-boutroux-pasteur-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/martin-boutroux/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156165469,
size: 0.5,
source: 159156,
target: 165469 });
// adding node
var x_node = Math.cos(2 * 1176 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1176 * Math.PI / N) * 10;
g.nodes.push({
id: 165455,
label: 'MEMBER: Chiara Cimmaruta',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/08/research_pasteur-chiara-cimmaruta-photo-chiara-cimmaruta-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/chiara-cimmaruta/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156165455,
size: 0.5,
source: 159156,
target: 165455 });
// adding node
var x_node = Math.cos(2 * 1177 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1177 * Math.PI / N) * 10;
g.nodes.push({
id: 165399,
label: 'MEMBER: Victoire Perraud',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/08/research_pasteur-victoire-perraud-victoire-img-4423-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/victoire-perraud/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156165399,
size: 0.5,
source: 159156,
target: 165399 });
// adding node
var x_node = Math.cos(2 * 1178 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1178 * Math.PI / N) * 10;
g.nodes.push({
id: 165385,
label: 'MEMBER: Seonhee Kim',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/08/research_pasteur-seonhee-kim-photo-seonhee-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/seonhee-kim/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156165385,
size: 0.5,
source: 159156,
target: 165385 });
// adding node
var x_node = Math.cos(2 * 1179 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1179 * Math.PI / N) * 10;
g.nodes.push({
id: 165290,
label: 'MEMBER: Julien Lannoy',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/08/research_pasteur-julien-lannoy-photo-julien-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/julien-lannoy/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156165290,
size: 0.5,
source: 159156,
target: 165290 });
// adding node
var x_node = Math.cos(2 * 1180 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1180 * Math.PI / N) * 10;
g.nodes.push({
id: 165229,
label: 'MEMBER: Anvita Bhargava',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/08/research_pasteur-anvita-bhargava-photo-anvita-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/anvita-bhargava/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156165229,
size: 0.5,
source: 159156,
target: 165229 });
// adding node
var x_node = Math.cos(2 * 1181 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1181 * Math.PI / N) * 10;
g.nodes.push({
id: 165146,
label: 'MEMBER: Alexander Beer',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/08/research_pasteur-alexander-beer-alexander-beer-1-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/alexander-beer/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156165146,
size: 0.5,
source: 159156,
target: 165146 });
// adding node
var x_node = Math.cos(2 * 1182 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1182 * Math.PI / N) * 10;
g.nodes.push({
id: 165143,
label: 'MEMBER: Aleksandra Chikina',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/aleksandra-chikina/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156165143,
size: 0.5,
source: 159156,
target: 165143 });
// adding node
var x_node = Math.cos(2 * 1183 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1183 * Math.PI / N) * 10;
g.nodes.push({
id: 165141,
label: 'MEMBER: Marion Guerin',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/marion-guerin/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156165141,
size: 0.5,
source: 159156,
target: 165141 });
// adding node
var x_node = Math.cos(2 * 1184 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1184 * Math.PI / N) * 10;
g.nodes.push({
id: 165133,
label: 'MEMBER: Mathilde Ruggiu',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/ruggiu-mathilde/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156165133,
size: 0.5,
source: 159156,
target: 165133 });
// adding node
var x_node = Math.cos(2 * 1185 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1185 * Math.PI / N) * 10;
g.nodes.push({
id: 165008,
label: 'MEMBER: Mariana De Niz',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/08/research_pasteur-mariana-de-niz-hidalgo-mariana-pasteur-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/mariana-de-niz-hidalgo/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156165008,
size: 0.5,
source: 159156,
target: 165008 });
// adding node
var x_node = Math.cos(2 * 1186 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1186 * Math.PI / N) * 10;
g.nodes.push({
id: 164893,
label: 'MEMBER: Marta Lindner',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/08/research_pasteur-marta-lindner-marta-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/marta-lindner/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156164893,
size: 0.5,
source: 159156,
target: 164893 });
// adding node
var x_node = Math.cos(2 * 1187 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1187 * Math.PI / N) * 10;
g.nodes.push({
id: 164891,
label: 'MEMBER: Maia Brunstein',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/08/research_pasteur-maia-brunstein-photo-maia2-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/maia-brunstein/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156164891,
size: 0.5,
source: 159156,
target: 164891 });
// adding node
var x_node = Math.cos(2 * 1188 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1188 * Math.PI / N) * 10;
g.nodes.push({
id: 164883,
label: 'MEMBER: Emma Ducos',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/emma-ducos/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156164883,
size: 0.5,
source: 159156,
target: 164883 });
// adding node
var x_node = Math.cos(2 * 1189 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1189 * Math.PI / N) * 10;
g.nodes.push({
id: 164880,
label: 'MEMBER: Mathieu Pham Van Cang',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/mathieu-phamvan-cang/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156164880,
size: 0.5,
source: 159156,
target: 164880 });
// adding node
var x_node = Math.cos(2 * 1190 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1190 * Math.PI / N) * 10;
g.nodes.push({
id: 164878,
label: 'MEMBER: Tanguy Delmas',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/tanguy-delmas/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156164878,
size: 0.5,
source: 159156,
target: 164878 });
// adding node
var x_node = Math.cos(2 * 1191 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1191 * Math.PI / N) * 10;
g.nodes.push({
id: 164875,
label: 'MEMBER: Didier Dulon',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/didier-dulon/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156164875,
size: 0.5,
source: 159156,
target: 164875 });
// adding node
var x_node = Math.cos(2 * 1192 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1192 * Math.PI / N) * 10;
g.nodes.push({
id: 164869,
label: 'MEMBER: Victor Renato Torres Lazo',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/victor-torres-lazo/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156164869,
size: 0.5,
source: 159156,
target: 164869 });
// adding node
var x_node = Math.cos(2 * 1193 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1193 * Math.PI / N) * 10;
g.nodes.push({
id: 164867,
label: 'MEMBER: Evelyne Ferrary',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/evelyne-ferrary/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156164867,
size: 0.5,
source: 159156,
target: 164867 });
// adding node
var x_node = Math.cos(2 * 1194 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1194 * Math.PI / N) * 10;
g.nodes.push({
id: 164865,
label: 'MEMBER: Yann Nguyen',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/yann-nguyen/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156164865,
size: 0.5,
source: 159156,
target: 164865 });
// adding node
var x_node = Math.cos(2 * 1195 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1195 * Math.PI / N) * 10;
g.nodes.push({
id: 164847,
label: 'MEMBER: Sepideh Iranfar',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/sepideh-iranfar-3/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156164847,
size: 0.5,
source: 159156,
target: 164847 });
// adding node
var x_node = Math.cos(2 * 1196 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1196 * Math.PI / N) * 10;
g.nodes.push({
id: 164842,
label: 'MEMBER: Alexis Bénichou',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/08/research_pasteur-alexis-benichou-photo-prairie-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/alexis-benichou/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156164842,
size: 0.5,
source: 159156,
target: 164842 });
// adding node
var x_node = Math.cos(2 * 1197 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1197 * Math.PI / N) * 10;
g.nodes.push({
id: 164837,
label: 'MEMBER: Alexandre Blanc',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/08/research_pasteur-alexandre-blanc-me-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/alexandre-blanc/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156164837,
size: 0.5,
source: 159156,
target: 164837 });
// adding node
var x_node = Math.cos(2 * 1198 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1198 * Math.PI / N) * 10;
g.nodes.push({
id: 164797,
label: 'MEMBER: Jérôme Nevoux',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/sepideh-iranfar-2/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156164797,
size: 0.5,
source: 159156,
target: 164797 });
// adding node
var x_node = Math.cos(2 * 1199 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1199 * Math.PI / N) * 10;
g.nodes.push({
id: 164792,
label: 'MEMBER: Chloe Felgerolle',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/chloe-felgerolle/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156164792,
size: 0.5,
source: 159156,
target: 164792 });
// adding node
var x_node = Math.cos(2 * 1200 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1200 * Math.PI / N) * 10;
g.nodes.push({
id: 164788,
label: 'MEMBER: Maxence Cornille',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/maxence-cornille/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156164788,
size: 0.5,
source: 159156,
target: 164788 });
// adding node
var x_node = Math.cos(2 * 1201 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1201 * Math.PI / N) * 10;
g.nodes.push({
id: 164786,
label: 'MEMBER: Ghizlene Lahlou',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/ghizlene-lahlou/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156164786,
size: 0.5,
source: 159156,
target: 164786 });
// adding node
var x_node = Math.cos(2 * 1202 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1202 * Math.PI / N) * 10;
g.nodes.push({
id: 164784,
label: 'MEMBER: Beatrix Meha',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/beatrix-meha/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156164784,
size: 0.5,
source: 159156,
target: 164784 });
// adding node
var x_node = Math.cos(2 * 1203 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1203 * Math.PI / N) * 10;
g.nodes.push({
id: 164782,
label: 'MEMBER: Baptiste Plion',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/baptiste-plion/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156164782,
size: 0.5,
source: 159156,
target: 164782 });
// adding node
var x_node = Math.cos(2 * 1204 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1204 * Math.PI / N) * 10;
g.nodes.push({
id: 164779,
label: 'MEMBER: Marie Jose Lecomte',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/marie-jose-lecomte/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156164779,
size: 0.5,
source: 159156,
target: 164779 });
// adding node
var x_node = Math.cos(2 * 1205 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1205 * Math.PI / N) * 10;
g.nodes.push({
id: 164770,
label: 'MEMBER: Carla Barbosa Spinola',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/carla-barbosa-spinola/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156164770,
size: 0.5,
source: 159156,
target: 164770 });
// adding node
var x_node = Math.cos(2 * 1206 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1206 * Math.PI / N) * 10;
g.nodes.push({
id: 164767,
label: 'MEMBER: Camille Dejean',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/camille-dejean/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156164767,
size: 0.5,
source: 159156,
target: 164767 });
// adding node
var x_node = Math.cos(2 * 1207 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1207 * Math.PI / N) * 10;
g.nodes.push({
id: 164765,
label: 'MEMBER: Carolina De Campos Pina',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/carolina-de-campos-pina/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156164765,
size: 0.5,
source: 159156,
target: 164765 });
// adding node
var x_node = Math.cos(2 * 1208 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1208 * Math.PI / N) * 10;
g.nodes.push({
id: 164763,
label: 'MEMBER: Olivier Postal',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/olivier-postal/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156164763,
size: 0.5,
source: 159156,
target: 164763 });
// adding node
var x_node = Math.cos(2 * 1209 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1209 * Math.PI / N) * 10;
g.nodes.push({
id: 164759,
label: 'MEMBER: Philippe Jean',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/philippe-jean/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156164759,
size: 0.5,
source: 159156,
target: 164759 });
// adding node
var x_node = Math.cos(2 * 1210 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1210 * Math.PI / N) * 10;
g.nodes.push({
id: 164747,
label: 'MEMBER: Boris Gourévitch',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/boris-gourevitch/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156164747,
size: 0.5,
source: 159156,
target: 164747 });
// adding node
var x_node = Math.cos(2 * 1211 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1211 * Math.PI / N) * 10;
g.nodes.push({
id: 164742,
label: 'MEMBER: Anthony Renard',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/anthony-renard/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156164742,
size: 0.5,
source: 159156,
target: 164742 });
// adding node
var x_node = Math.cos(2 * 1212 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1212 * Math.PI / N) * 10;
g.nodes.push({
id: 164738,
label: 'MEMBER: Antonin Verdier',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/antonin-verdier/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156164738,
size: 0.5,
source: 159156,
target: 164738 });
// adding node
var x_node = Math.cos(2 * 1213 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1213 * Math.PI / N) * 10;
g.nodes.push({
id: 164736,
label: 'MEMBER: Etienne Gosselin',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/etienne-gosselin/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156164736,
size: 0.5,
source: 159156,
target: 164736 });
// adding node
var x_node = Math.cos(2 * 1214 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1214 * Math.PI / N) * 10;
g.nodes.push({
id: 164732,
label: 'MEMBER: Sara Jamali',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/sara-jamali/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156164732,
size: 0.5,
source: 159156,
target: 164732 });
// adding node
var x_node = Math.cos(2 * 1215 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1215 * Math.PI / N) * 10;
g.nodes.push({
id: 164730,
label: 'MEMBER: Sophie Bagur',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/bagur-sophie/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156164730,
size: 0.5,
source: 159156,
target: 164730 });
// adding node
var x_node = Math.cos(2 * 1216 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1216 * Math.PI / N) * 10;
g.nodes.push({
id: 164684,
label: 'MEMBER: Joanna Schwenkgrub',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/joanna-schwenkgrub/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156164684,
size: 0.5,
source: 159156,
target: 164684 });
// adding node
var x_node = Math.cos(2 * 1217 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1217 * Math.PI / N) * 10;
g.nodes.push({
id: 164705,
label: 'MEMBER: Lucie Flamand',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/08/research_pasteur-lucie-flamand-photo-badge1-1-150x150.png',
page_url: 'https://research.pasteur.fr/en/member/lucie-flamand/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156164705,
size: 0.5,
source: 159156,
target: 164705 });
// adding node
var x_node = Math.cos(2 * 1218 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1218 * Math.PI / N) * 10;
g.nodes.push({
id: 164680,
label: 'MEMBER: Jérémie Barral',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/08/research_pasteur-jeremie-barral-jbarral-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/barral-jeremie/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156164680,
size: 0.5,
source: 159156,
target: 164680 });
// adding node
var x_node = Math.cos(2 * 1219 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1219 * Math.PI / N) * 10;
g.nodes.push({
id: 164604,
label: 'MEMBER: Keith Doelling',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/keith-doelling/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156164604,
size: 0.5,
source: 159156,
target: 164604 });
// adding node
var x_node = Math.cos(2 * 1220 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1220 * Math.PI / N) * 10;
g.nodes.push({
id: 164602,
label: 'MEMBER: Diane Lazard',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/diane-lazard/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156164602,
size: 0.5,
source: 159156,
target: 164602 });
// adding node
var x_node = Math.cos(2 * 1221 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1221 * Math.PI / N) * 10;
g.nodes.push({
id: 164600,
label: 'MEMBER: Luc Arnal',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/luc-arnal/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156164600,
size: 0.5,
source: 159156,
target: 164600 });
// adding node
var x_node = Math.cos(2 * 1222 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1222 * Math.PI / N) * 10;
g.nodes.push({
id: 164587,
label: 'MEMBER: Brice Bathellier',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/brice-bathellier/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156164587,
size: 0.5,
source: 159156,
target: 164587 });
// adding node
var x_node = Math.cos(2 * 1223 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1223 * Math.PI / N) * 10;
g.nodes.push({
id: 164458,
label: 'MEMBER: Kelvin Kho',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/08/research_pasteur-kelvin-kho-kho-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/kelvin-kho/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156164458,
size: 0.5,
source: 159156,
target: 164458 });
// adding node
var x_node = Math.cos(2 * 1224 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1224 * Math.PI / N) * 10;
g.nodes.push({
id: 164411,
label: 'MEMBER: Yohann Sassier',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/yohann-sassier/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156164411,
size: 0.5,
source: 159156,
target: 164411 });
// adding node
var x_node = Math.cos(2 * 1225 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1225 * Math.PI / N) * 10;
g.nodes.push({
id: 164409,
label: 'MEMBER: Remy Dailleux',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/remy-dailleux/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156164409,
size: 0.5,
source: 159156,
target: 164409 });
// adding node
var x_node = Math.cos(2 * 1226 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1226 * Math.PI / N) * 10;
g.nodes.push({
id: 164390,
label: 'MEMBER: Victor Piriou',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/08/research_pasteur-victor-piriou-img-20220308-163955-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/victor-piriou/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156164390,
size: 0.5,
source: 159156,
target: 164390 });
// adding node
var x_node = Math.cos(2 * 1227 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1227 * Math.PI / N) * 10;
g.nodes.push({
id: 164388,
label: 'MEMBER: Mounib Mohamed Benimam',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/08/research_pasteur-mounib-mohamed-benimam-1588170203182-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/mounib-mohamed-benimam/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156164388,
size: 0.5,
source: 159156,
target: 164388 });
// adding node
var x_node = Math.cos(2 * 1228 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1228 * Math.PI / N) * 10;
g.nodes.push({
id: 164220,
label: 'MEMBER: Yanis Dahoumane',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/yanis-dahoumane/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156164220,
size: 0.5,
source: 159156,
target: 164220 });
// adding node
var x_node = Math.cos(2 * 1229 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1229 * Math.PI / N) * 10;
g.nodes.push({
id: 163451,
label: 'MEMBER: Lise Boulard',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/07/research_pasteur-lise-boulard-photo-lb2-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/lise-boulard/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156163451,
size: 0.5,
source: 159156,
target: 163451 });
// adding node
var x_node = Math.cos(2 * 1230 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1230 * Math.PI / N) * 10;
g.nodes.push({
id: 163287,
label: 'MEMBER: Tara Moheb',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/07/research_pasteur-tara-moheb-tara-moheb-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/tara-moheb/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156163287,
size: 0.5,
source: 159156,
target: 163287 });
// adding node
var x_node = Math.cos(2 * 1231 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1231 * Math.PI / N) * 10;
g.nodes.push({
id: 162993,
label: 'MEMBER: Cantin Ortiz',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/cantin-ortiz/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156162993,
size: 0.5,
source: 159156,
target: 162993 });
// adding node
var x_node = Math.cos(2 * 1232 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1232 * Math.PI / N) * 10;
g.nodes.push({
id: 162938,
label: 'MEMBER: Hugo Bouvier',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/07/research_pasteur-hugo-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/hugo-bouvier/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156162938,
size: 0.5,
source: 159156,
target: 162938 });
// adding node
var x_node = Math.cos(2 * 1233 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1233 * Math.PI / N) * 10;
g.nodes.push({
id: 162798,
label: 'MEMBER: Cyrielle Mohamed Kassime',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/cyrielle-mohamed-kassime/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156162798,
size: 0.5,
source: 159156,
target: 162798 });
// adding node
var x_node = Math.cos(2 * 1234 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1234 * Math.PI / N) * 10;
g.nodes.push({
id: 162795,
label: 'MEMBER: Apolline Pierre',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/apolline-pierre/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156162795,
size: 0.5,
source: 159156,
target: 162795 });
// adding node
var x_node = Math.cos(2 * 1235 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1235 * Math.PI / N) * 10;
g.nodes.push({
id: 162792,
label: 'MEMBER: Nawal Yahiaoui',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/nawal-yahiaoui/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156162792,
size: 0.5,
source: 159156,
target: 162792 });
// adding node
var x_node = Math.cos(2 * 1236 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1236 * Math.PI / N) * 10;
g.nodes.push({
id: 162683,
label: 'MEMBER: Lucie Cappuccio',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/07/research_pasteur-lucie-cappuccio-photo-lucie-cappuccio-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/lucie-cappuccio/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156162683,
size: 0.5,
source: 159156,
target: 162683 });
// adding node
var x_node = Math.cos(2 * 1237 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1237 * Math.PI / N) * 10;
g.nodes.push({
id: 162672,
label: 'MEMBER: Eliana Real',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/07/research_pasteur-eliana-real-img-20171106-141515-1-1-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/eliana-coelho-real/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156162672,
size: 0.5,
source: 159156,
target: 162672 });
// adding node
var x_node = Math.cos(2 * 1238 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1238 * Math.PI / N) * 10;
g.nodes.push({
id: 162241,
label: 'MEMBER: Papa Mamadou Diagne',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/papa-mamadou-diagne/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156162241,
size: 0.5,
source: 159156,
target: 162241 });
// adding node
var x_node = Math.cos(2 * 1239 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1239 * Math.PI / N) * 10;
g.nodes.push({
id: 162154,
label: 'MEMBER: Daniela Megrian',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/06/research_pasteur-daniela-megrian-nunez-e30bbe8c-3e2c-4c44-a33d-bbd890190097-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/daniela-megrian-nunez/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156162154,
size: 0.5,
source: 159156,
target: 162154 });
// adding node
var x_node = Math.cos(2 * 1240 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1240 * Math.PI / N) * 10;
g.nodes.push({
id: 162147,
label: 'MEMBER: Clara Pigozzo',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/clara-pigozzo/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156162147,
size: 0.5,
source: 159156,
target: 162147 });
// adding node
var x_node = Math.cos(2 * 1241 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1241 * Math.PI / N) * 10;
g.nodes.push({
id: 162125,
label: 'MEMBER: Benoit Fauchie',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/benoit-fauchie/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156162125,
size: 0.5,
source: 159156,
target: 162125 });
// adding node
var x_node = Math.cos(2 * 1242 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1242 * Math.PI / N) * 10;
g.nodes.push({
id: 161963,
label: 'MEMBER: Ashish Kumar Singh',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/06/research_pasteur-ashish-k-singh-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/ashish-kumar-singh/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156161963,
size: 0.5,
source: 159156,
target: 161963 });
// adding node
var x_node = Math.cos(2 * 1243 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1243 * Math.PI / N) * 10;
g.nodes.push({
id: 161739,
label: 'MEMBER: Martin Frauenlob',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/06/research_pasteur-martin-frauenlob-profile-picture-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/martin-frauenlob/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156161739,
size: 0.5,
source: 159156,
target: 161739 });
// adding node
var x_node = Math.cos(2 * 1244 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1244 * Math.PI / N) * 10;
g.nodes.push({
id: 161624,
label: 'MEMBER: Victor Sanda Mera',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/06/research_pasteur-victor-sanda-mera-victor-sanda-photo-1-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/victor-sanda-mera/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156161624,
size: 0.5,
source: 159156,
target: 161624 });
// adding node
var x_node = Math.cos(2 * 1245 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1245 * Math.PI / N) * 10;
g.nodes.push({
id: 161614,
label: 'MEMBER: Matthieu Thiberge',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/matthieu-thiberge/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156161614,
size: 0.5,
source: 159156,
target: 161614 });
// adding node
var x_node = Math.cos(2 * 1246 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1246 * Math.PI / N) * 10;
g.nodes.push({
id: 161611,
label: 'MEMBER: Sandrine Gouguet',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/sandrine-gouguet/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156161611,
size: 0.5,
source: 159156,
target: 161611 });
// adding node
var x_node = Math.cos(2 * 1247 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1247 * Math.PI / N) * 10;
g.nodes.push({
id: 161585,
label: 'MEMBER: Mariia Avstrikova',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/mariia-avstrikova/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156161585,
size: 0.5,
source: 159156,
target: 161585 });
// adding node
var x_node = Math.cos(2 * 1248 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1248 * Math.PI / N) * 10;
g.nodes.push({
id: 161527,
label: 'MEMBER: Nour Awad',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/nour-awad/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156161527,
size: 0.5,
source: 159156,
target: 161527 });
// adding node
var x_node = Math.cos(2 * 1249 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1249 * Math.PI / N) * 10;
g.nodes.push({
id: 161417,
label: 'MEMBER: Jordi Ciprin',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/06/research_pasteur-jordi-ciprin--150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/jordi-ciprin/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156161417,
size: 0.5,
source: 159156,
target: 161417 });
// adding node
var x_node = Math.cos(2 * 1250 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1250 * Math.PI / N) * 10;
g.nodes.push({
id: 161295,
label: 'MEMBER: Augustin Martin',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/06/research_pasteur-augustin-martin-sans-titre-e1625053555287-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/augustin-martin/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156161295,
size: 0.5,
source: 159156,
target: 161295 });
// adding node
var x_node = Math.cos(2 * 1251 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1251 * Math.PI / N) * 10;
g.nodes.push({
id: 161252,
label: 'MEMBER: Arthur Frouin',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/06/research_pasteur-arthur-frouin-win-20210708-09-50-13-pro-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/arthur-frouin/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156161252,
size: 0.5,
source: 159156,
target: 161252 });
// adding node
var x_node = Math.cos(2 * 1252 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1252 * Math.PI / N) * 10;
g.nodes.push({
id: 161202,
label: 'MEMBER: Emilie Boutet',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/06/research_pasteur-emilie-boutet-essai-jpeg-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/emilie-boutet/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156161202,
size: 0.5,
source: 159156,
target: 161202 });
// adding node
var x_node = Math.cos(2 * 1253 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1253 * Math.PI / N) * 10;
g.nodes.push({
id: 161136,
label: 'MEMBER: Jorge Mata Garrido',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/06/research_pasteur-jorge-mata-garrido-jorge-pics-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/jorge-mata-garrido/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156161136,
size: 0.5,
source: 159156,
target: 161136 });
// adding node
var x_node = Math.cos(2 * 1254 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1254 * Math.PI / N) * 10;
g.nodes.push({
id: 161089,
label: 'MEMBER: Florian Dubois',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/06/research_pasteur-florian-dubois-profile-picture-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/florian-dubois/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156161089,
size: 0.5,
source: 159156,
target: 161089 });
// adding node
var x_node = Math.cos(2 * 1255 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1255 * Math.PI / N) * 10;
g.nodes.push({
id: 160823,
label: 'MEMBER: Fanny Sebire',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/fanny-sebire/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156160823,
size: 0.5,
source: 159156,
target: 160823 });
// adding node
var x_node = Math.cos(2 * 1256 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1256 * Math.PI / N) * 10;
g.nodes.push({
id: 160766,
label: 'MEMBER: Fabian Guendel Rojas',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/06/research_pasteur-fabian-guendel-rojas-fabian-090621-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/fabian-guendel-rojas/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156160766,
size: 0.5,
source: 159156,
target: 160766 });
// adding node
var x_node = Math.cos(2 * 1257 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1257 * Math.PI / N) * 10;
g.nodes.push({
id: 160712,
label: 'MEMBER: Tiziano Vignolini',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/06/research_pasteur-tiziano-vignolini-linkedin-pic-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/tiziano-vignolini/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156160712,
size: 0.5,
source: 159156,
target: 160712 });
// adding node
var x_node = Math.cos(2 * 1258 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1258 * Math.PI / N) * 10;
g.nodes.push({
id: 160642,
label: 'MEMBER: Auriane Monestier',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/06/research_pasteur-auriane-monestier-screenshot-20231213-145455-gallery-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/auriane-monestier/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156160642,
size: 0.5,
source: 159156,
target: 160642 });
// adding node
var x_node = Math.cos(2 * 1259 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1259 * Math.PI / N) * 10;
g.nodes.push({
id: 160592,
label: 'MEMBER: Shiho Torii',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/06/research_pasteur-shiho-torii-torii-150x150.png',
page_url: 'https://research.pasteur.fr/en/member/shiho-torii/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156160592,
size: 0.5,
source: 159156,
target: 160592 });
// adding node
var x_node = Math.cos(2 * 1260 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1260 * Math.PI / N) * 10;
g.nodes.push({
id: 160438,
label: 'MEMBER: Milena Reig-Amette',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/milena-reig-amette/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156160438,
size: 0.5,
source: 159156,
target: 160438 });
// adding node
var x_node = Math.cos(2 * 1261 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1261 * Math.PI / N) * 10;
g.nodes.push({
id: 160326,
label: 'MEMBER: Cécile Apert',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/06/research_pasteur-cecile-apert-cecile070621s-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/cecile-apert/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156160326,
size: 0.5,
source: 159156,
target: 160326 });
// adding node
var x_node = Math.cos(2 * 1262 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1262 * Math.PI / N) * 10;
g.nodes.push({
id: 160136,
label: 'MEMBER: Emeline Prandato',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/emeline-prandato/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156160136,
size: 0.5,
source: 159156,
target: 160136 });
// adding node
var x_node = Math.cos(2 * 1263 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1263 * Math.PI / N) * 10;
g.nodes.push({
id: 160132,
label: 'MEMBER: Danuta Oficjalska',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2016/05/research.pasteur.fr_danusia-150x150.png',
page_url: 'https://research.pasteur.fr/en/member/danuta-oficjalska/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156160132,
size: 0.5,
source: 159156,
target: 160132 });
// adding node
var x_node = Math.cos(2 * 1264 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1264 * Math.PI / N) * 10;
g.nodes.push({
id: 160094,
label: 'MEMBER: Chloé Albert',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/06/research_pasteur-chloe-albert-ofzo1920-2-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/chloe-albert/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156160094,
size: 0.5,
source: 159156,
target: 160094 });
// adding node
var x_node = Math.cos(2 * 1265 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1265 * Math.PI / N) * 10;
g.nodes.push({
id: 160037,
label: 'MEMBER: Kathleen Rousseau',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/05/research_pasteur-kathleen-rousseau-img-0204-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/kathleen-rousseau/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156160037,
size: 0.5,
source: 159156,
target: 160037 });
// adding node
var x_node = Math.cos(2 * 1266 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1266 * Math.PI / N) * 10;
g.nodes.push({
id: 159595,
label: 'MEMBER: Souand Mohamed Ali',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/souand-mohamed-ali/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156159595,
size: 0.5,
source: 159156,
target: 159595 });
// adding node
var x_node = Math.cos(2 * 1267 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1267 * Math.PI / N) * 10;
g.nodes.push({
id: 159525,
label: 'MEMBER: Lise Musset',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2015/07/research.pasteur.fr_lise-musset-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/lise-musset/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156159525,
size: 0.5,
source: 159156,
target: 159525 });
// adding node
var x_node = Math.cos(2 * 1268 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1268 * Math.PI / N) * 10;
g.nodes.push({
id: 159257,
label: 'MEMBER: Júlia Torné Cortada',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/05/research_pasteur-julia-torne-cortada-captura-de-pantalla-2021-05-13-a-las-19.13.32-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/julia-torne-cortada-2/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156159257,
size: 0.5,
source: 159156,
target: 159257 });
// adding node
var x_node = Math.cos(2 * 1269 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1269 * Math.PI / N) * 10;
g.nodes.push({
id: 159154,
label: 'MEMBER: Guillaume Malrieu',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/malrieu-guillaume/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156159154,
size: 0.5,
source: 159156,
target: 159154 });
// adding node
var x_node = Math.cos(2 * 1270 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1270 * Math.PI / N) * 10;
g.nodes.push({
id: 158665,
label: 'MEMBER: Amandine Guillemois',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/amandine-guillemois/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156158665,
size: 0.5,
source: 159156,
target: 158665 });
// adding node
var x_node = Math.cos(2 * 1271 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1271 * Math.PI / N) * 10;
g.nodes.push({
id: 158433,
label: 'MEMBER: Elise Paulin',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/elise-paulin/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156158433,
size: 0.5,
source: 159156,
target: 158433 });
// adding node
var x_node = Math.cos(2 * 1272 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1272 * Math.PI / N) * 10;
g.nodes.push({
id: 158373,
label: 'MEMBER: William Alvarez',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/william-alvarez/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156158373,
size: 0.5,
source: 159156,
target: 158373 });
// adding node
var x_node = Math.cos(2 * 1273 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1273 * Math.PI / N) * 10;
g.nodes.push({
id: 158340,
label: 'MEMBER: Amaia Dominguez-Belloso',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/05/research_pasteur-amaia-dominguez-belloso-amaia-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/amaia-dominguez-belloso/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156158340,
size: 0.5,
source: 159156,
target: 158340 });
// adding node
var x_node = Math.cos(2 * 1274 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1274 * Math.PI / N) * 10;
g.nodes.push({
id: 158222,
label: 'MEMBER: Isabelle Louradour',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/04/research_pasteur-isabelle-louradour-photo-pro-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/isabelle-louradour/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156158222,
size: 0.5,
source: 159156,
target: 158222 });
// adding node
var x_node = Math.cos(2 * 1275 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1275 * Math.PI / N) * 10;
g.nodes.push({
id: 158063,
label: 'MEMBER: Johann Dreo',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/04/research_pasteur-johann-dreo-img-7846-profil-640px-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/johann-dreo/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156158063,
size: 0.5,
source: 159156,
target: 158063 });
// adding node
var x_node = Math.cos(2 * 1276 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1276 * Math.PI / N) * 10;
g.nodes.push({
id: 157991,
label: 'MEMBER: Sara Niedbalski',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/04/research_pasteur-sara-niedbalski-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/sara-niedbalski/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156157991,
size: 0.5,
source: 159156,
target: 157991 });
// adding node
var x_node = Math.cos(2 * 1277 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1277 * Math.PI / N) * 10;
g.nodes.push({
id: 157904,
label: 'MEMBER: Lou Mondange',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/04/research_pasteur-lou-mondange-photo-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/lou-mondange/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156157904,
size: 0.5,
source: 159156,
target: 157904 });
// adding node
var x_node = Math.cos(2 * 1278 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1278 * Math.PI / N) * 10;
g.nodes.push({
id: 157885,
label: 'MEMBER: Viacheslav Rusanov',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/04/research_pasteur-viacheslav-rusanov-slava-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/viacheslav-rusanov/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156157885,
size: 0.5,
source: 159156,
target: 157885 });
// adding node
var x_node = Math.cos(2 * 1279 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1279 * Math.PI / N) * 10;
g.nodes.push({
id: 157879,
label: 'MEMBER: Devon Conti',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/04/research_pasteur-devon-conti-screenshot-2022-01-16-at-17.58.20-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/devon-conti/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156157879,
size: 0.5,
source: 159156,
target: 157879 });
// adding node
var x_node = Math.cos(2 * 1280 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1280 * Math.PI / N) * 10;
g.nodes.push({
id: 157840,
label: 'MEMBER: Max Freihammer',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/04/research_pasteur-max-freihammer-max-freihmann-web-150x150.png',
page_url: 'https://research.pasteur.fr/en/member/max-freihammer/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156157840,
size: 0.5,
source: 159156,
target: 157840 });
// adding node
var x_node = Math.cos(2 * 1281 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1281 * Math.PI / N) * 10;
g.nodes.push({
id: 157808,
label: 'MEMBER: Yanyuan Zhang',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/yanyuan-zhang/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156157808,
size: 0.5,
source: 159156,
target: 157808 });
// adding node
var x_node = Math.cos(2 * 1282 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1282 * Math.PI / N) * 10;
g.nodes.push({
id: 157794,
label: 'MEMBER: Manuela Lizarralde Guerrero',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/04/research_pasteur-manuela-lizarralde-guerrero-img-20200824-183321-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/manuela-lizarralde-guerrero/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156157794,
size: 0.5,
source: 159156,
target: 157794 });
// adding node
var x_node = Math.cos(2 * 1283 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1283 * Math.PI / N) * 10;
g.nodes.push({
id: 157792,
label: 'MEMBER: Ali Hassan',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/04/research_pasteur-ali-hassan-alihassan-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/ali-hassan/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156157792,
size: 0.5,
source: 159156,
target: 157792 });
// adding node
var x_node = Math.cos(2 * 1284 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1284 * Math.PI / N) * 10;
g.nodes.push({
id: 157672,
label: 'MEMBER: Olivier Cordin',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/olivier-cordin/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156157672,
size: 0.5,
source: 159156,
target: 157672 });
// adding node
var x_node = Math.cos(2 * 1285 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1285 * Math.PI / N) * 10;
g.nodes.push({
id: 157511,
label: 'MEMBER: Constanze Ciavarella',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/04/research_pasteur-constanze-ciavarella-ohne-titel-150x150.png',
page_url: 'https://research.pasteur.fr/en/member/constanze-ciavarella/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156157511,
size: 0.5,
source: 159156,
target: 157511 });
// adding node
var x_node = Math.cos(2 * 1286 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1286 * Math.PI / N) * 10;
g.nodes.push({
id: 157508,
label: 'MEMBER: Stéphane Pelleau',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/04/research_pasteur-stephane-pelleau-pelleau-stephane-1307-3-1-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/stephane-pelleau/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156157508,
size: 0.5,
source: 159156,
target: 157508 });
// adding node
var x_node = Math.cos(2 * 1287 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1287 * Math.PI / N) * 10;
g.nodes.push({
id: 157481,
label: 'MEMBER: June Verhaak',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/june-verhaak/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156157481,
size: 0.5,
source: 159156,
target: 157481 });
// adding node
var x_node = Math.cos(2 * 1288 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1288 * Math.PI / N) * 10;
g.nodes.push({
id: 157457,
label: 'MEMBER: Maximilian Zinke',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/maximilian-zinke/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156157457,
size: 0.5,
source: 159156,
target: 157457 });
// adding node
var x_node = Math.cos(2 * 1289 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1289 * Math.PI / N) * 10;
g.nodes.push({
id: 157215,
label: 'MEMBER: Paul Monassa',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/04/research_pasteur-paul-monassa-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/paul-monassa/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156157215,
size: 0.5,
source: 159156,
target: 157215 });
// adding node
var x_node = Math.cos(2 * 1290 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1290 * Math.PI / N) * 10;
g.nodes.push({
id: 157138,
label: 'MEMBER: Veronique Fischer',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/04/research_pasteur-photo-veronique-fischer-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/veronique-fischer/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156157138,
size: 0.5,
source: 159156,
target: 157138 });
// adding node
var x_node = Math.cos(2 * 1291 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1291 * Math.PI / N) * 10;
g.nodes.push({
id: 156967,
label: 'MEMBER: Marc Bokobza',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/04/research_pasteur-marc-bokobza-marc-b.-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/marc-bokobza/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156156967,
size: 0.5,
source: 159156,
target: 156967 });
// adding node
var x_node = Math.cos(2 * 1292 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1292 * Math.PI / N) * 10;
g.nodes.push({
id: 156918,
label: 'MEMBER: tristan espie-caullet',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/tristan-espie-caullet/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156156918,
size: 0.5,
source: 159156,
target: 156918 });
// adding node
var x_node = Math.cos(2 * 1293 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1293 * Math.PI / N) * 10;
g.nodes.push({
id: 156871,
label: 'MEMBER: Myriam Rachid',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/myriam-rachid/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156156871,
size: 0.5,
source: 159156,
target: 156871 });
// adding node
var x_node = Math.cos(2 * 1294 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1294 * Math.PI / N) * 10;
g.nodes.push({
id: 156840,
label: 'MEMBER: Anna Maruani',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/anna-maruani/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156156840,
size: 0.5,
source: 159156,
target: 156840 });
// adding node
var x_node = Math.cos(2 * 1295 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1295 * Math.PI / N) * 10;
g.nodes.push({
id: 156820,
label: 'MEMBER: Junhanlu Zhang',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/04/research_pasteur-junhanlu-zhang-image-1-1-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/junhanlu-zhang/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156156820,
size: 0.5,
source: 159156,
target: 156820 });
// adding node
var x_node = Math.cos(2 * 1296 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1296 * Math.PI / N) * 10;
g.nodes.push({
id: 156796,
label: 'MEMBER: Théo Ferreira',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/theo-ferreira/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156156796,
size: 0.5,
source: 159156,
target: 156796 });
// adding node
var x_node = Math.cos(2 * 1297 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1297 * Math.PI / N) * 10;
g.nodes.push({
id: 156792,
label: 'MEMBER: Angeliki-Anna Beka',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/04/research_pasteur-angeliki-anna-beka-research-pasteur-angeliki-anna-beka-angeliki-anna-beka-e1683104514639-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/angeliki-anna-beka/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156156792,
size: 0.5,
source: 159156,
target: 156792 });
// adding node
var x_node = Math.cos(2 * 1298 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1298 * Math.PI / N) * 10;
g.nodes.push({
id: 156790,
label: 'MEMBER: Aurélien Gibaud',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/aurelien-gibaud/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156156790,
size: 0.5,
source: 159156,
target: 156790 });
// adding node
var x_node = Math.cos(2 * 1299 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1299 * Math.PI / N) * 10;
g.nodes.push({
id: 156774,
label: 'MEMBER: Mikaël Attia',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/mikael-attia/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156156774,
size: 0.5,
source: 159156,
target: 156774 });
// adding node
var x_node = Math.cos(2 * 1300 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1300 * Math.PI / N) * 10;
g.nodes.push({
id: 156767,
label: 'MEMBER: Faustine Amara',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/04/research_pasteur-faustine-amara-received-839290707296556nb-e1691400999561-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/faustine-amara/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156156767,
size: 0.5,
source: 159156,
target: 156767 });
// adding node
var x_node = Math.cos(2 * 1301 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1301 * Math.PI / N) * 10;
g.nodes.push({
id: 156728,
label: 'MEMBER: Chloé Lehoucq',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/04/research_pasteur-chloe-lehoucq-photo-cl-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/chloe-lehoucq/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156156728,
size: 0.5,
source: 159156,
target: 156728 });
// adding node
var x_node = Math.cos(2 * 1302 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1302 * Math.PI / N) * 10;
g.nodes.push({
id: 156713,
label: 'MEMBER: Aleksandra Deczkowska',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/04/research_pasteur-aleksandra-deczkowska-mg-4166-edit-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/aleksandra-deczkowska/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156156713,
size: 0.5,
source: 159156,
target: 156713 });
// adding node
var x_node = Math.cos(2 * 1303 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1303 * Math.PI / N) * 10;
g.nodes.push({
id: 156483,
label: 'MEMBER: Nicolas Da Rocha',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/nicolas-da-rocha/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156156483,
size: 0.5,
source: 159156,
target: 156483 });
// adding node
var x_node = Math.cos(2 * 1304 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1304 * Math.PI / N) * 10;
g.nodes.push({
id: 156471,
label: 'MEMBER: Alain Letailleur',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/03/research_pasteur-alain-letailleur-alain-letailleur-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/alain-letailleur/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156156471,
size: 0.5,
source: 159156,
target: 156471 });
// adding node
var x_node = Math.cos(2 * 1305 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1305 * Math.PI / N) * 10;
g.nodes.push({
id: 156468,
label: 'MEMBER: Erwan Poivet',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/erwan-poivet/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156156468,
size: 0.5,
source: 159156,
target: 156468 });
// adding node
var x_node = Math.cos(2 * 1306 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1306 * Math.PI / N) * 10;
g.nodes.push({
id: 156466,
label: 'MEMBER: Mathilde Favrat',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/mathilde-favrat/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156156466,
size: 0.5,
source: 159156,
target: 156466 });
// adding node
var x_node = Math.cos(2 * 1307 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1307 * Math.PI / N) * 10;
g.nodes.push({
id: 156464,
label: 'MEMBER: Alice Dupin',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/03/research_pasteur-alice-dupin-247345641-382313933681837-173136756349216491-n-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/alice-dupin/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156156464,
size: 0.5,
source: 159156,
target: 156464 });
// adding node
var x_node = Math.cos(2 * 1308 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1308 * Math.PI / N) * 10;
g.nodes.push({
id: 156432,
label: 'MEMBER: Antoine Auvergne',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/03/research_pasteur-antoine-auvergne-received-2816266901755927-e1617117885348-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/antoine-auvergne/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156156432,
size: 0.5,
source: 159156,
target: 156432 });
// adding node
var x_node = Math.cos(2 * 1309 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1309 * Math.PI / N) * 10;
g.nodes.push({
id: 156104,
label: 'MEMBER: Sofieya Vijayaratnam',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/03/research_pasteur-sofieya-vijayaratnam-sofieya-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/sofieya-vijayaratnam/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156156104,
size: 0.5,
source: 159156,
target: 156104 });
// adding node
var x_node = Math.cos(2 * 1310 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1310 * Math.PI / N) * 10;
g.nodes.push({
id: 156018,
label: 'MEMBER: Morgane Lavina',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/03/research_pasteur-morgane-lavina-img-20210322-131553-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/morgane-lavina-2/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156156018,
size: 0.5,
source: 159156,
target: 156018 });
// adding node
var x_node = Math.cos(2 * 1311 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1311 * Math.PI / N) * 10;
g.nodes.push({
id: 155945,
label: 'MEMBER: Thomas Serrano',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/03/research_pasteur-thomas-serrano-photo-identite-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/thomas-serrano/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156155945,
size: 0.5,
source: 159156,
target: 155945 });
// adding node
var x_node = Math.cos(2 * 1312 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1312 * Math.PI / N) * 10;
g.nodes.push({
id: 155894,
label: 'MEMBER: Francesca Raimondi',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/03/research_pasteur-francesca-raimondi-img-1371-002-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/francesca-raimundi/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156155894,
size: 0.5,
source: 159156,
target: 155894 });
// adding node
var x_node = Math.cos(2 * 1313 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1313 * Math.PI / N) * 10;
g.nodes.push({
id: 155822,
label: 'MEMBER: Bianca Bratuleanu',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/bianca-bratuleanu/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156155822,
size: 0.5,
source: 159156,
target: 155822 });
// adding node
var x_node = Math.cos(2 * 1314 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1314 * Math.PI / N) * 10;
g.nodes.push({
id: 155816,
label: 'MEMBER: Amandine Goffeney',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/03/research_pasteur-amandine-goffeney-photo-web-amandine-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/amandine-goffeney/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156155816,
size: 0.5,
source: 159156,
target: 155816 });
// adding node
var x_node = Math.cos(2 * 1315 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1315 * Math.PI / N) * 10;
g.nodes.push({
id: 155810,
label: 'MEMBER: Shireen Shajahan',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/03/research_pasteur-shireen-shajahan-photo-shireen-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/shireen-shajahan/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156155810,
size: 0.5,
source: 159156,
target: 155810 });
// adding node
var x_node = Math.cos(2 * 1316 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1316 * Math.PI / N) * 10;
g.nodes.push({
id: 155711,
label: 'MEMBER: Nicolas Carvalho',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/03/research_pasteur-nicolas-carvalho-170412654-294819972275370-4517567528851248666-n-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/nicolas-carvalho/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156155711,
size: 0.5,
source: 159156,
target: 155711 });
// adding node
var x_node = Math.cos(2 * 1317 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1317 * Math.PI / N) * 10;
g.nodes.push({
id: 155550,
label: 'MEMBER: Romain Fevre',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/romain-fevre/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156155550,
size: 0.5,
source: 159156,
target: 155550 });
// adding node
var x_node = Math.cos(2 * 1318 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1318 * Math.PI / N) * 10;
g.nodes.push({
id: 155547,
label: 'MEMBER: Valentin Bonnet',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/03/research_pasteur-valentin-bonnet-20221030-162954-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/valentin-bonnet/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156155547,
size: 0.5,
source: 159156,
target: 155547 });
// adding node
var x_node = Math.cos(2 * 1319 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1319 * Math.PI / N) * 10;
g.nodes.push({
id: 155513,
label: 'MEMBER: Brice Raffestin',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/brice-raffestin/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156155513,
size: 0.5,
source: 159156,
target: 155513 });
// adding node
var x_node = Math.cos(2 * 1320 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1320 * Math.PI / N) * 10;
g.nodes.push({
id: 155472,
label: 'MEMBER: Alix Bouvier-Müller',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/03/research_pasteur-alix-bouvier-muller-alix-bouvier-mueller-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/alix-bouvier-muller/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156155472,
size: 0.5,
source: 159156,
target: 155472 });
// adding node
var x_node = Math.cos(2 * 1321 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1321 * Math.PI / N) * 10;
g.nodes.push({
id: 155442,
label: 'MEMBER: Venkat Ramnarayan',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/03/research_pasteur-venkat-ramnarayan-ramnarayan-pic1-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/venkat-ramnarayan/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156155442,
size: 0.5,
source: 159156,
target: 155442 });
// adding node
var x_node = Math.cos(2 * 1322 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1322 * Math.PI / N) * 10;
g.nodes.push({
id: 155440,
label: 'MEMBER: Emma Lamanna',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/03/research_pasteur-emma-lamanna-emma-lamanna-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/emma-lamanna/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156155440,
size: 0.5,
source: 159156,
target: 155440 });
// adding node
var x_node = Math.cos(2 * 1323 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1323 * Math.PI / N) * 10;
g.nodes.push({
id: 155410,
label: 'MEMBER: Julia Faillace Thiesen',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/03/research_pasteur-julia-faillace-thiesen-img-20210115-151845-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/julia-julia-faillace-thiesen/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156155410,
size: 0.5,
source: 159156,
target: 155410 });
// adding node
var x_node = Math.cos(2 * 1324 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1324 * Math.PI / N) * 10;
g.nodes.push({
id: 155147,
label: 'MEMBER: Valérie Granata',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/valerie-granata/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156155147,
size: 0.5,
source: 159156,
target: 155147 });
// adding node
var x_node = Math.cos(2 * 1325 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1325 * Math.PI / N) * 10;
g.nodes.push({
id: 155052,
label: 'MEMBER: Guillaume Frasca',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/03/research_pasteur-guillaume-frasca-gf-e1614787961122-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/guillaume-frasca/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156155052,
size: 0.5,
source: 159156,
target: 155052 });
// adding node
var x_node = Math.cos(2 * 1326 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1326 * Math.PI / N) * 10;
g.nodes.push({
id: 155040,
label: 'MEMBER: Syed Kaabir Ali',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/03/research_pasteur-syed-kaabir-ali-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/syed-kaabir-ali/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156155040,
size: 0.5,
source: 159156,
target: 155040 });
// adding node
var x_node = Math.cos(2 * 1327 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1327 * Math.PI / N) * 10;
g.nodes.push({
id: 154942,
label: 'MEMBER: Aurélien Villedieu',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/03/research_pasteur-aurelien-villedieu-photo-a.-villedieu-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/aurelien-villedieu/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156154942,
size: 0.5,
source: 159156,
target: 154942 });
// adding node
var x_node = Math.cos(2 * 1328 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1328 * Math.PI / N) * 10;
g.nodes.push({
id: 154937,
label: 'MEMBER: Justine Couble',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/03/research_pasteur-justine-couble-dsc-01762-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/justine-couble/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156154937,
size: 0.5,
source: 159156,
target: 154937 });
// adding node
var x_node = Math.cos(2 * 1329 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1329 * Math.PI / N) * 10;
g.nodes.push({
id: 154912,
label: 'MEMBER: Marina Plays',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/03/research_pasteur-photo-marina-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/marina-plays/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156154912,
size: 0.5,
source: 159156,
target: 154912 });
// adding node
var x_node = Math.cos(2 * 1330 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1330 * Math.PI / N) * 10;
g.nodes.push({
id: 154863,
label: 'MEMBER: Corentin Vannier',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/corentin-vannier/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156154863,
size: 0.5,
source: 159156,
target: 154863 });
// adding node
var x_node = Math.cos(2 * 1331 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1331 * Math.PI / N) * 10;
g.nodes.push({
id: 154741,
label: 'MEMBER: Tanguy Dequidt',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/tanguy-dequidt/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156154741,
size: 0.5,
source: 159156,
target: 154741 });
// adding node
var x_node = Math.cos(2 * 1332 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1332 * Math.PI / N) * 10;
g.nodes.push({
id: 154725,
label: 'MEMBER: Marie Titécat',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/marie-titecat/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156154725,
size: 0.5,
source: 159156,
target: 154725 });
// adding node
var x_node = Math.cos(2 * 1333 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1333 * Math.PI / N) * 10;
g.nodes.push({
id: 154722,
label: 'MEMBER: Baptiste Gaborieau',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/baptiste-gaborieau/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156154722,
size: 0.5,
source: 159156,
target: 154722 });
// adding node
var x_node = Math.cos(2 * 1334 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1334 * Math.PI / N) * 10;
g.nodes.push({
id: 154644,
label: 'MEMBER: Cyril Nerin',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/02/research_pasteur-cyril-nerin-photo-cyril-pour-cv-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/cyril-nerin/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156154644,
size: 0.5,
source: 159156,
target: 154644 });
// adding node
var x_node = Math.cos(2 * 1335 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1335 * Math.PI / N) * 10;
g.nodes.push({
id: 154642,
label: 'MEMBER: Christophe Boetto',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/02/research_pasteur-christophe-boetto-pp-reshaped3-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/christophe-boetto/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156154642,
size: 0.5,
source: 159156,
target: 154642 });
// adding node
var x_node = Math.cos(2 * 1336 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1336 * Math.PI / N) * 10;
g.nodes.push({
id: 154639,
label: 'MEMBER: Léo Henches',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/02/research_pasteur-leo-henches-cropped-snow-climbing-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/leo-henches/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156154639,
size: 0.5,
source: 159156,
target: 154639 });
// adding node
var x_node = Math.cos(2 * 1337 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1337 * Math.PI / N) * 10;
g.nodes.push({
id: 154625,
label: 'MEMBER: Assunta Pelosi',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/02/research_pasteur-assunta-pelosi-img-0066-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/assunta-pelosi/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156154625,
size: 0.5,
source: 159156,
target: 154625 });
// adding node
var x_node = Math.cos(2 * 1338 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1338 * Math.PI / N) * 10;
g.nodes.push({
id: 154612,
label: 'MEMBER: Océane Alouda',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/oceane-alouda/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156154612,
size: 0.5,
source: 159156,
target: 154612 });
// adding node
var x_node = Math.cos(2 * 1339 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1339 * Math.PI / N) * 10;
g.nodes.push({
id: 154496,
label: 'MEMBER: Zeyneb Vildan Cakil',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/02/research_pasteur-zeyneb-vildan-cakil-photo-zeyneb-vildan-cakil-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/zeyneb-vildan-cakil/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156154496,
size: 0.5,
source: 159156,
target: 154496 });
// adding node
var x_node = Math.cos(2 * 1340 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1340 * Math.PI / N) * 10;
g.nodes.push({
id: 154492,
label: 'MEMBER: Hélène Lopez-Maestre',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/06/research_pasteur-microsoftteams-image-e1686231266340-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/helene-lopez-maestre/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156154492,
size: 0.5,
source: 159156,
target: 154492 });
// adding node
var x_node = Math.cos(2 * 1341 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1341 * Math.PI / N) * 10;
g.nodes.push({
id: 154480,
label: 'MEMBER: Jean Contreras',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/jean-contreras/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156154480,
size: 0.5,
source: 159156,
target: 154480 });
// adding node
var x_node = Math.cos(2 * 1342 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1342 * Math.PI / N) * 10;
g.nodes.push({
id: 154423,
label: 'MEMBER: Ayla Zayoud',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/02/research_pasteur-ayla-zayoud-1604574096423-removebg-preview-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/ayla-zayoud/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156154423,
size: 0.5,
source: 159156,
target: 154423 });
// adding node
var x_node = Math.cos(2 * 1343 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1343 * Math.PI / N) * 10;
g.nodes.push({
id: 154420,
label: 'MEMBER: Elsa Liévin',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/02/research_pasteur-elsa-lievin-img-3299-facetune-15-08-2020-18-50-37-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/elsa-lievin/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156154420,
size: 0.5,
source: 159156,
target: 154420 });
// adding node
var x_node = Math.cos(2 * 1344 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1344 * Math.PI / N) * 10;
g.nodes.push({
id: 154414,
label: 'MEMBER: Dorian Cheval',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/dorian-cheval/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156154414,
size: 0.5,
source: 159156,
target: 154414 });
// adding node
var x_node = Math.cos(2 * 1345 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1345 * Math.PI / N) * 10;
g.nodes.push({
id: 154328,
label: 'MEMBER: Lina Franklin',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/02/research_pasteur-lina-franklin-img-8632-square-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/lina-franklin/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156154328,
size: 0.5,
source: 159156,
target: 154328 });
// adding node
var x_node = Math.cos(2 * 1346 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1346 * Math.PI / N) * 10;
g.nodes.push({
id: 154258,
label: 'MEMBER: Marta Miera Maluenda',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/02/research_pasteur-marta-miera-maluenda-foto-marta-carnet-e1614720818115-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/marta-miera-maluenda/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156154258,
size: 0.5,
source: 159156,
target: 154258 });
// adding node
var x_node = Math.cos(2 * 1347 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1347 * Math.PI / N) * 10;
g.nodes.push({
id: 154252,
label: 'MEMBER: Gabriel Amselem',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/gabriel-amselem/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156154252,
size: 0.5,
source: 159156,
target: 154252 });
// adding node
var x_node = Math.cos(2 * 1348 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1348 * Math.PI / N) * 10;
g.nodes.push({
id: 154241,
label: 'MEMBER: Sophia Missoury',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/sophia-missoury/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156154241,
size: 0.5,
source: 159156,
target: 154241 });
// adding node
var x_node = Math.cos(2 * 1349 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1349 * Math.PI / N) * 10;
g.nodes.push({
id: 154194,
label: 'MEMBER: Wilson Mena Orostica',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/02/research_pasteur-wilson-mena-orostica-research-pasteur-wilson-mena-orostica-microsoftteams-image-7-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/wilson-mena-orostica/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156154194,
size: 0.5,
source: 159156,
target: 154194 });
// adding node
var x_node = Math.cos(2 * 1350 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1350 * Math.PI / N) * 10;
g.nodes.push({
id: 154176,
label: 'MEMBER: Flavio Alvarez',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/flavio-alvarez/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156154176,
size: 0.5,
source: 159156,
target: 154176 });
// adding node
var x_node = Math.cos(2 * 1351 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1351 * Math.PI / N) * 10;
g.nodes.push({
id: 154095,
label: 'MEMBER: Hoa Nguyen Thi Thanh',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/02/research_pasteur-hoa-nguyen-thi-thanh-image0-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/hoa-nguyen-thi-thanh/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156154095,
size: 0.5,
source: 159156,
target: 154095 });
// adding node
var x_node = Math.cos(2 * 1352 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1352 * Math.PI / N) * 10;
g.nodes.push({
id: 154009,
label: 'MEMBER: Ikram Mezghiche',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/02/research_pasteur-ikram-mezghiche-img-20210203-162642-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/ikram-mezghiche/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156154009,
size: 0.5,
source: 159156,
target: 154009 });
// adding node
var x_node = Math.cos(2 * 1353 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1353 * Math.PI / N) * 10;
g.nodes.push({
id: 153903,
label: 'MEMBER: Francesco Paolo Panei',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/francesco-paolo-panei/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156153903,
size: 0.5,
source: 159156,
target: 153903 });
// adding node
var x_node = Math.cos(2 * 1354 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1354 * Math.PI / N) * 10;
g.nodes.push({
id: 153888,
label: 'MEMBER: Rémi Sieskind',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/remi-sieskind/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156153888,
size: 0.5,
source: 159156,
target: 153888 });
// adding node
var x_node = Math.cos(2 * 1355 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1355 * Math.PI / N) * 10;
g.nodes.push({
id: 153863,
label: 'MEMBER: Maha David',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/02/research_pasteur-maha-david-david-maha-dsc2887-3-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/maha-david/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156153863,
size: 0.5,
source: 159156,
target: 153863 });
// adding node
var x_node = Math.cos(2 * 1356 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1356 * Math.PI / N) * 10;
g.nodes.push({
id: 153812,
label: 'MEMBER: Antoine Habis',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/02/research_pasteur-antoine-habis-capture-decran-2021-02-05-a-10.21.09-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/antoine-habis/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156153812,
size: 0.5,
source: 159156,
target: 153812 });
// adding node
var x_node = Math.cos(2 * 1357 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1357 * Math.PI / N) * 10;
g.nodes.push({
id: 153806,
label: 'MEMBER: Erwan Dereure',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/02/research_pasteur-erwan-dereure-695024-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/erwan-dereure/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156153806,
size: 0.5,
source: 159156,
target: 153806 });
// adding node
var x_node = Math.cos(2 * 1358 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1358 * Math.PI / N) * 10;
g.nodes.push({
id: 153773,
label: 'MEMBER: Olivier Mirabeau',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/02/research_pasteur-olivier-mirabeau-omirabeau-badge-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/olivier-mirabeau/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156153773,
size: 0.5,
source: 159156,
target: 153773 });
// adding node
var x_node = Math.cos(2 * 1359 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1359 * Math.PI / N) * 10;
g.nodes.push({
id: 153747,
label: 'MEMBER: Jérémie Leporrier',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/jeremie-leporrier/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156153747,
size: 0.5,
source: 159156,
target: 153747 });
// adding node
var x_node = Math.cos(2 * 1360 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1360 * Math.PI / N) * 10;
g.nodes.push({
id: 153666,
label: 'MEMBER: Audrey Peters',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/01/research_pasteur-enaudrey-petersfraudrey-peters-photo-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/audrey-peters/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156153666,
size: 0.5,
source: 159156,
target: 153666 });
// adding node
var x_node = Math.cos(2 * 1361 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1361 * Math.PI / N) * 10;
g.nodes.push({
id: 153534,
label: 'MEMBER: Georg Daniel Förster',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/01/research_pasteur-georg-daniel-forster-photo-forster-small-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/georg-daniel-forster/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156153534,
size: 0.5,
source: 159156,
target: 153534 });
// adding node
var x_node = Math.cos(2 * 1362 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1362 * Math.PI / N) * 10;
g.nodes.push({
id: 153492,
label: 'MEMBER: Charlotte Godard',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/01/research_pasteur-charlotte-godard-photo-charlotte-godard2-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/fr-charlotte-godard/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156153492,
size: 0.5,
source: 159156,
target: 153492 });
// adding node
var x_node = Math.cos(2 * 1363 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1363 * Math.PI / N) * 10;
g.nodes.push({
id: 153475,
label: 'MEMBER: Clement de la Myre Mory',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/01/research_pasteur-enclement-de-la-myre-moryfrclement-de-la-myre-mory-20201019-112154-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/fr-clement-de-la-myre-mory/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156153475,
size: 0.5,
source: 159156,
target: 153475 });
// adding node
var x_node = Math.cos(2 * 1364 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1364 * Math.PI / N) * 10;
g.nodes.push({
id: 153472,
label: 'MEMBER: Selen Ay',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/01/research_pasteur-selen-ay-img-6895-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/fr-selen-ay/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156153472,
size: 0.5,
source: 159156,
target: 153472 });
// adding node
var x_node = Math.cos(2 * 1365 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1365 * Math.PI / N) * 10;
g.nodes.push({
id: 153359,
label: 'MEMBER: Afonso de Sousa Vieira',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/01/research_pasteur-enafonso-de-sousa-vieirafrafonso-de-sousa-vieira-rsz-escolhida-1-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/afonso-de-sousa-vieira/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156153359,
size: 0.5,
source: 159156,
target: 153359 });
// adding node
var x_node = Math.cos(2 * 1366 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1366 * Math.PI / N) * 10;
g.nodes.push({
id: 153352,
label: 'MEMBER: Raphael Charron',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/01/research_pasteur-enraphael-charronfrraphael-charron-img-20210123-wa0004-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/raphael-charron/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156153352,
size: 0.5,
source: 159156,
target: 153352 });
// adding node
var x_node = Math.cos(2 * 1367 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1367 * Math.PI / N) * 10;
g.nodes.push({
id: 153294,
label: 'MEMBER: Vincent Deruelle',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/01/research_pasteur-envincent-deruellefrvincent-deruelle-vincent-deruelle-e1611596631197-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/fr-vincent-deruelle/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156153294,
size: 0.5,
source: 159156,
target: 153294 });
// adding node
var x_node = Math.cos(2 * 1368 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1368 * Math.PI / N) * 10;
g.nodes.push({
id: 153144,
label: 'MEMBER: Anamarija Butković',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/01/research_pasteur-anamarija-butkovic-cv-ab-cropped-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/anamarija-butkovic/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156153144,
size: 0.5,
source: 159156,
target: 153144 });
// adding node
var x_node = Math.cos(2 * 1369 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1369 * Math.PI / N) * 10;
g.nodes.push({
id: 153127,
label: 'MEMBER: Marielle Tamigney-Kenfack',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/marielle-tamigney-kenfack/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156153127,
size: 0.5,
source: 159156,
target: 153127 });
// adding node
var x_node = Math.cos(2 * 1370 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1370 * Math.PI / N) * 10;
g.nodes.push({
id: 153026,
label: 'MEMBER: Fabien Rodrigues',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/fabien-rodrigues/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156153026,
size: 0.5,
source: 159156,
target: 153026 });
// adding node
var x_node = Math.cos(2 * 1371 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1371 * Math.PI / N) * 10;
g.nodes.push({
id: 153005,
label: 'MEMBER: Alicia Lecuyer',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/01/research_pasteur-alicia-lecuyer-photo-al-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/alicia-lecuyer/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156153005,
size: 0.5,
source: 159156,
target: 153005 });
// adding node
var x_node = Math.cos(2 * 1372 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1372 * Math.PI / N) * 10;
g.nodes.push({
id: 152964,
label: 'MEMBER: Sandrine Aros',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/01/research_pasteur-sandrine-aros-photo-sa-4-150x150.png',
page_url: 'https://research.pasteur.fr/en/member/sandrine-aros/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156152964,
size: 0.5,
source: 159156,
target: 152964 });
// adding node
var x_node = Math.cos(2 * 1373 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1373 * Math.PI / N) * 10;
g.nodes.push({
id: 152955,
label: 'MEMBER: Iuliana Ene',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/01/research_pasteur-iuliana-ene-ene-iuliana-1-copy-scaled-e1612802810122-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/iuliana-ene/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156152955,
size: 0.5,
source: 159156,
target: 152955 });
// adding node
var x_node = Math.cos(2 * 1374 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1374 * Math.PI / N) * 10;
g.nodes.push({
id: 152937,
label: 'MEMBER: Elise Jacquemet',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/01/research_pasteur-elise-jacquemet-elisej-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/elise-jacquemet/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156152937,
size: 0.5,
source: 159156,
target: 152937 });
// adding node
var x_node = Math.cos(2 * 1375 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1375 * Math.PI / N) * 10;
g.nodes.push({
id: 152934,
label: 'MEMBER: Audrey Maudoux',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/audrey-maudoux/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156152934,
size: 0.5,
source: 159156,
target: 152934 });
// adding node
var x_node = Math.cos(2 * 1376 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1376 * Math.PI / N) * 10;
g.nodes.push({
id: 152905,
label: 'MEMBER: Nour Ayoub',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/01/research_pasteur-nour-ayoub-capture-decran-2022-06-27-a-11.30.33-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/nour-ayoub/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156152905,
size: 0.5,
source: 159156,
target: 152905 });
// adding node
var x_node = Math.cos(2 * 1377 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1377 * Math.PI / N) * 10;
g.nodes.push({
id: 152903,
label: 'MEMBER: Séverine François',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/severine-francois/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156152903,
size: 0.5,
source: 159156,
target: 152903 });
// adding node
var x_node = Math.cos(2 * 1378 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1378 * Math.PI / N) * 10;
g.nodes.push({
id: 152228,
label: 'MEMBER: Selma Belhimeur',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/01/research_pasteur-enselma-belhimeurfrselma-belhimeur-received-970073670094143-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/selma-belhimeur/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156152228,
size: 0.5,
source: 159156,
target: 152228 });
// adding node
var x_node = Math.cos(2 * 1379 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1379 * Math.PI / N) * 10;
g.nodes.push({
id: 152723,
label: 'MEMBER: Amandine Maire',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/01/research_pasteur-enamandine-maireframandine-photo-amandine-maire-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/amandine-maire/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156152723,
size: 0.5,
source: 159156,
target: 152723 });
// adding node
var x_node = Math.cos(2 * 1380 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1380 * Math.PI / N) * 10;
g.nodes.push({
id: 152572,
label: 'MEMBER: Fares Yanez Cuna',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/fares-osam-yanez-cuna/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156152572,
size: 0.5,
source: 159156,
target: 152572 });
// adding node
var x_node = Math.cos(2 * 1381 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1381 * Math.PI / N) * 10;
g.nodes.push({
id: 152507,
label: 'MEMBER: Victoire Baillet',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/01/research_pasteur-victoire-baillet-foo2-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/victoire-baillet/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156152507,
size: 0.5,
source: 159156,
target: 152507 });
// adding node
var x_node = Math.cos(2 * 1382 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1382 * Math.PI / N) * 10;
g.nodes.push({
id: 152389,
label: 'MEMBER: Robert Smith',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/01/research_pasteur-robert-smith-picture-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/robert-smith/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156152389,
size: 0.5,
source: 159156,
target: 152389 });
// adding node
var x_node = Math.cos(2 * 1383 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1383 * Math.PI / N) * 10;
g.nodes.push({
id: 152199,
label: 'MEMBER: Angélique Dalleau',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/angelique-dalleau/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156152199,
size: 0.5,
source: 159156,
target: 152199 });
// adding node
var x_node = Math.cos(2 * 1384 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1384 * Math.PI / N) * 10;
g.nodes.push({
id: 152123,
label: 'MEMBER: Javier Prado Martinez',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/01/research_pasteur-picture-jpm-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/javier-prado-martinez/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156152123,
size: 0.5,
source: 159156,
target: 152123 });
// adding node
var x_node = Math.cos(2 * 1385 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1385 * Math.PI / N) * 10;
g.nodes.push({
id: 152093,
label: 'MEMBER: Bjorn-Axel Olin',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/01/research_pasteur-headshot-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/bjorn-axel-olin/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156152093,
size: 0.5,
source: 159156,
target: 152093 });
// adding node
var x_node = Math.cos(2 * 1386 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1386 * Math.PI / N) * 10;
g.nodes.push({
id: 152030,
label: 'MEMBER: David Tabb',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/01/research_pasteur-david-tabb-microsoftteams-image-7-150x150.png',
page_url: 'https://research.pasteur.fr/en/member/david-tabb/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156152030,
size: 0.5,
source: 159156,
target: 152030 });
// adding node
var x_node = Math.cos(2 * 1387 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1387 * Math.PI / N) * 10;
g.nodes.push({
id: 152026,
label: 'MEMBER: Megan Gant',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/01/research_pasteur-megan-gant-photo-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/megan-gant/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156152026,
size: 0.5,
source: 159156,
target: 152026 });
// adding node
var x_node = Math.cos(2 * 1388 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1388 * Math.PI / N) * 10;
g.nodes.push({
id: 151976,
label: 'MEMBER: Gustave Fourcaud',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/01/research_pasteur-gustave-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/gustave-fourcaud/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156151976,
size: 0.5,
source: 159156,
target: 151976 });
// adding node
var x_node = Math.cos(2 * 1389 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1389 * Math.PI / N) * 10;
g.nodes.push({
id: 151655,
label: 'MEMBER: Laura Pedro Cos',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/12/research_pasteur-enlaura-pedro-cosfrlaura-pedro-cos-laura-pedro-cos-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/laura-pedro-cos/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156151655,
size: 0.5,
source: 159156,
target: 151655 });
// adding node
var x_node = Math.cos(2 * 1390 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1390 * Math.PI / N) * 10;
g.nodes.push({
id: 151445,
label: 'MEMBER: Minh-Son Phan',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/12/research_pasteur-minh-son-phan-img-9420-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/minh-son-phan/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156151445,
size: 0.5,
source: 159156,
target: 151445 });
// adding node
var x_node = Math.cos(2 * 1391 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1391 * Math.PI / N) * 10;
g.nodes.push({
id: 151435,
label: 'MEMBER: Kodie Noy',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/12/research_pasteur-kodie-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/fr-kodie-noy/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156151435,
size: 0.5,
source: 159156,
target: 151435 });
// adding node
var x_node = Math.cos(2 * 1392 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1392 * Math.PI / N) * 10;
g.nodes.push({
id: 151219,
label: 'MEMBER: Hirumani De Silva',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/hirumani-de-silva/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156151219,
size: 0.5,
source: 159156,
target: 151219 });
// adding node
var x_node = Math.cos(2 * 1393 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1393 * Math.PI / N) * 10;
g.nodes.push({
id: 151199,
label: 'MEMBER: Camille Keck',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/12/research_pasteur-camille-keck-keckcamille20-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/camille-keck/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156151199,
size: 0.5,
source: 159156,
target: 151199 });
// adding node
var x_node = Math.cos(2 * 1394 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1394 * Math.PI / N) * 10;
g.nodes.push({
id: 151182,
label: 'MEMBER: Lorenzo Zolfanelli',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/12/research_pasteur-enlorenzo-zolfanellifrlorenzo-1024-1316-1-e1615302250721-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/lorenzo/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156151182,
size: 0.5,
source: 159156,
target: 151182 });
// adding node
var x_node = Math.cos(2 * 1395 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1395 * Math.PI / N) * 10;
g.nodes.push({
id: 151178,
label: 'MEMBER: Lise Hunault',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/12/research_pasteur-enlise-hunaultfrlise-hunault-lise-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/lise-hunault/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156151178,
size: 0.5,
source: 159156,
target: 151178 });
// adding node
var x_node = Math.cos(2 * 1396 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1396 * Math.PI / N) * 10;
g.nodes.push({
id: 151175,
label: 'MEMBER: Matteo Broketa',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/12/research_pasteur-matteo-broketa-matteo-broketa-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/matteo-broketa/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156151175,
size: 0.5,
source: 159156,
target: 151175 });
// adding node
var x_node = Math.cos(2 * 1397 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1397 * Math.PI / N) * 10;
g.nodes.push({
id: 151172,
label: 'MEMBER: Alice Dejoux',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/12/research_pasteur-enlise-hunaultfrlise-hunault-photo-alice-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/alice-dejoux/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156151172,
size: 0.5,
source: 159156,
target: 151172 });
// adding node
var x_node = Math.cos(2 * 1398 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1398 * Math.PI / N) * 10;
g.nodes.push({
id: 151110,
label: 'MEMBER: Wilhelm Vaysse-Zinkhöfer',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/wilhelm-vaysse-zinkhofer/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156151110,
size: 0.5,
source: 159156,
target: 151110 });
// adding node
var x_node = Math.cos(2 * 1399 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1399 * Math.PI / N) * 10;
g.nodes.push({
id: 150797,
label: 'MEMBER: Pengdbamba Dieudonné Zongo',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/12/research_pasteur-pengdbamba-dieudonne-zongo-dieudonne-1b-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/pengdbamba-dieudonne-zongo/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156150797,
size: 0.5,
source: 159156,
target: 150797 });
// adding node
var x_node = Math.cos(2 * 1400 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1400 * Math.PI / N) * 10;
g.nodes.push({
id: 150760,
label: 'MEMBER: Etienne Villain',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/12/research_pasteur-enetienne-villainfretienne-villain-etienne-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/etienne-villain/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156150760,
size: 0.5,
source: 159156,
target: 150760 });
// adding node
var x_node = Math.cos(2 * 1401 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1401 * Math.PI / N) * 10;
g.nodes.push({
id: 150746,
label: 'MEMBER: Louis Dorison',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/12/research_pasteur-louis-dorison-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/louis-dorison/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156150746,
size: 0.5,
source: 159156,
target: 150746 });
// adding node
var x_node = Math.cos(2 * 1402 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1402 * Math.PI / N) * 10;
g.nodes.push({
id: 150431,
label: 'MEMBER: Mélissa Mairet-Khedim',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/melissa-mairet-khedim/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156150431,
size: 0.5,
source: 159156,
target: 150431 });
// adding node
var x_node = Math.cos(2 * 1403 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1403 * Math.PI / N) * 10;
g.nodes.push({
id: 150333,
label: 'MEMBER: Cyril Anjou',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/11/research_pasteur-cyril-anjou-old2-e1696686754202-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/cyril-anjou/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156150333,
size: 0.5,
source: 159156,
target: 150333 });
// adding node
var x_node = Math.cos(2 * 1404 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1404 * Math.PI / N) * 10;
g.nodes.push({
id: 150299,
label: 'MEMBER: Fanny Pandolfi',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/11/research_pasteur-fanny-pandolfi-photo-fp-nb-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/fanny-pandolfi/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156150299,
size: 0.5,
source: 159156,
target: 150299 });
// adding node
var x_node = Math.cos(2 * 1405 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1405 * Math.PI / N) * 10;
g.nodes.push({
id: 150285,
label: 'MEMBER: George Shirreff',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/11/research_pasteur-george-shirreff-george-photo-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/george-shirreff/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156150285,
size: 0.5,
source: 159156,
target: 150285 });
// adding node
var x_node = Math.cos(2 * 1406 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1406 * Math.PI / N) * 10;
g.nodes.push({
id: 150278,
label: 'MEMBER: Wilfried Bara',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/wilfried-bara/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156150278,
size: 0.5,
source: 159156,
target: 150278 });
// adding node
var x_node = Math.cos(2 * 1407 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1407 * Math.PI / N) * 10;
g.nodes.push({
id: 149920,
label: 'MEMBER: Eric Nicolau',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/eric-nicolau/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156149920,
size: 0.5,
source: 159156,
target: 149920 });
// adding node
var x_node = Math.cos(2 * 1408 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1408 * Math.PI / N) * 10;
g.nodes.push({
id: 149916,
label: 'MEMBER: Eglantine Vignal',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/eglantine-vignal/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156149916,
size: 0.5,
source: 159156,
target: 149916 });
// adding node
var x_node = Math.cos(2 * 1409 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1409 * Math.PI / N) * 10;
g.nodes.push({
id: 149599,
label: 'MEMBER: Tobias Weinberger',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/11/research_pasteur-tobias-weinberger-tobias-weinberger-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/tobias-weinberger/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156149599,
size: 0.5,
source: 159156,
target: 149599 });
// adding node
var x_node = Math.cos(2 * 1410 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1410 * Math.PI / N) * 10;
g.nodes.push({
id: 149582,
label: 'MEMBER: Armin Shoushtarizadeh',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/armin-shoushtarizadeh/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156149582,
size: 0.5,
source: 159156,
target: 149582 });
// adding node
var x_node = Math.cos(2 * 1411 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1411 * Math.PI / N) * 10;
g.nodes.push({
id: 149577,
label: 'MEMBER: Isma Bennabi',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/11/research_pasteur-isma-bennabi-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/isma-bennabi/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156149577,
size: 0.5,
source: 159156,
target: 149577 });
// adding node
var x_node = Math.cos(2 * 1412 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1412 * Math.PI / N) * 10;
g.nodes.push({
id: 149573,
label: 'MEMBER: Melody Merle',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/11/research_pasteur-melody-150x150.png',
page_url: 'https://research.pasteur.fr/en/member/melody-merle/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156149573,
size: 0.5,
source: 159156,
target: 149573 });
// adding node
var x_node = Math.cos(2 * 1413 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1413 * Math.PI / N) * 10;
g.nodes.push({
id: 149498,
label: 'MEMBER: Paul Palmquist-Gomes',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/11/research_pasteur-enpaul-palmquist-gomesfrpaul-palmquist-gomes-palmquist-gomes-paul-2813-red-e1634157278793-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/paul-palmquist-gomes/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156149498,
size: 0.5,
source: 159156,
target: 149498 });
// adding node
var x_node = Math.cos(2 * 1414 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1414 * Math.PI / N) * 10;
g.nodes.push({
id: 149334,
label: 'MEMBER: Federica Palma',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/11/research_pasteur-enfederica-palma-federicapalma-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/federica-palma/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156149334,
size: 0.5,
source: 159156,
target: 149334 });
// adding node
var x_node = Math.cos(2 * 1415 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1415 * Math.PI / N) * 10;
g.nodes.push({
id: 149429,
label: 'MEMBER: Charlotte Romanet',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/charlotte-romanet/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156149429,
size: 0.5,
source: 159156,
target: 149429 });
// adding node
var x_node = Math.cos(2 * 1416 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1416 * Math.PI / N) * 10;
g.nodes.push({
id: 149424,
label: 'MEMBER: Andres Ferrino Iriarte',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/andres-ferrino-iriarte/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156149424,
size: 0.5,
source: 159156,
target: 149424 });
// adding node
var x_node = Math.cos(2 * 1417 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1417 * Math.PI / N) * 10;
g.nodes.push({
id: 149323,
label: 'MEMBER: Anthony Jaquaniello',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/11/research_pasteur-anthony-jaquaniello-photo-anthony-jaquaniello-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/anthony-jaquaniello/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156149323,
size: 0.5,
source: 159156,
target: 149323 });
// adding node
var x_node = Math.cos(2 * 1418 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1418 * Math.PI / N) * 10;
g.nodes.push({
id: 149302,
label: 'MEMBER: Carolina Nodari',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/11/research_pasteur-carolina-nodari-carolina-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/carolina-nodari/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156149302,
size: 0.5,
source: 159156,
target: 149302 });
// adding node
var x_node = Math.cos(2 * 1419 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1419 * Math.PI / N) * 10;
g.nodes.push({
id: 149299,
label: 'MEMBER: Lise Frezal',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/11/research_pasteur-lise-frezal-pict-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/lise-frezal/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156149299,
size: 0.5,
source: 159156,
target: 149299 });
// adding node
var x_node = Math.cos(2 * 1420 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1420 * Math.PI / N) * 10;
g.nodes.push({
id: 149225,
label: 'MEMBER: Anamaria Babosan',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/11/research_pasteur-babosan-anamaria-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/anamaria-babosan/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156149225,
size: 0.5,
source: 159156,
target: 149225 });
// adding node
var x_node = Math.cos(2 * 1421 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1421 * Math.PI / N) * 10;
g.nodes.push({
id: 149222,
label: 'MEMBER: Théophile Niault',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/11/research_pasteur-theophile-niault-niault-theophile-1-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/theophile-niault/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156149222,
size: 0.5,
source: 159156,
target: 149222 });
// adding node
var x_node = Math.cos(2 * 1422 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1422 * Math.PI / N) * 10;
g.nodes.push({
id: 149214,
label: 'MEMBER: Manon Lang',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/11/research_pasteur-manon-lang-g-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/manon-lang/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156149214,
size: 0.5,
source: 159156,
target: 149214 });
// adding node
var x_node = Math.cos(2 * 1423 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1423 * Math.PI / N) * 10;
g.nodes.push({
id: 149200,
label: 'MEMBER: Sebastien Bridel',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/11/research_pasteur-sebastien-bridel-img-cropped-20180404-102556-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/sebastien-bridel/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156149200,
size: 0.5,
source: 159156,
target: 149200 });
// adding node
var x_node = Math.cos(2 * 1424 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1424 * Math.PI / N) * 10;
g.nodes.push({
id: 149165,
label: 'MEMBER: Laurène Schlick',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/10/research_pasteur-enpaula-wildfrpaula-wild-laurene-150x150.png',
page_url: 'https://research.pasteur.fr/en/member/laurene-schlick/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156149165,
size: 0.5,
source: 159156,
target: 149165 });
// adding node
var x_node = Math.cos(2 * 1425 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1425 * Math.PI / N) * 10;
g.nodes.push({
id: 149160,
label: 'MEMBER: Estelle Darrau',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/10/research_pasteur-enpaula-wildfrpaula-wild-estelle-150x150.png',
page_url: 'https://research.pasteur.fr/en/member/estelle-darrau/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156149160,
size: 0.5,
source: 159156,
target: 149160 });
// adding node
var x_node = Math.cos(2 * 1426 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1426 * Math.PI / N) * 10;
g.nodes.push({
id: 149149,
label: 'MEMBER: Paula Wild',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/10/research_pasteur-enpaula-wildfrpaula-wild-paula-150x150.png',
page_url: 'https://research.pasteur.fr/en/member/paula-wild/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156149149,
size: 0.5,
source: 159156,
target: 149149 });
// adding node
var x_node = Math.cos(2 * 1427 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1427 * Math.PI / N) * 10;
g.nodes.push({
id: 149077,
label: 'MEMBER: Lena Le Quellec',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/10/research_pasteur-lena-le-quellec-nh9d4ubq-400x400-1-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/lena-le-quellec/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156149077,
size: 0.5,
source: 159156,
target: 149077 });
// adding node
var x_node = Math.cos(2 * 1428 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1428 * Math.PI / N) * 10;
g.nodes.push({
id: 149068,
label: 'MEMBER: Fernando Batista',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/fernando-batista/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156149068,
size: 0.5,
source: 159156,
target: 149068 });
// adding node
var x_node = Math.cos(2 * 1429 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1429 * Math.PI / N) * 10;
g.nodes.push({
id: 149063,
label: 'MEMBER: Alexandra Boyko',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/alexandra-boyko/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156149063,
size: 0.5,
source: 159156,
target: 149063 });
// adding node
var x_node = Math.cos(2 * 1430 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1430 * Math.PI / N) * 10;
g.nodes.push({
id: 149036,
label: 'MEMBER: Leonardo Betancurt',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/10/research_pasteur-leonardo-betancurt-leo-scaled-e1650635907635-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/leonardo-betancurt-anzola/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156149036,
size: 0.5,
source: 159156,
target: 149036 });
// adding node
var x_node = Math.cos(2 * 1431 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1431 * Math.PI / N) * 10;
g.nodes.push({
id: 148899,
label: 'MEMBER: Aneta Gandalovicova',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/10/research_pasteur-enaneta-gandalovicova-franeta-gandalovicova-img-20190601-114049-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/fr-aneta-gandalovicova/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156148899,
size: 0.5,
source: 159156,
target: 148899 });
// adding node
var x_node = Math.cos(2 * 1432 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1432 * Math.PI / N) * 10;
g.nodes.push({
id: 148896,
label: 'MEMBER: Stéphanie Portet',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/10/research_pasteur-enstephanie-portetfrstephanie-portet-steph-picture-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/fr-stephanie-portet/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156148896,
size: 0.5,
source: 159156,
target: 148896 });
// adding node
var x_node = Math.cos(2 * 1433 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1433 * Math.PI / N) * 10;
g.nodes.push({
id: 148883,
label: 'MEMBER: Pierre Khalfi',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/10/research_pasteur-pierre-khalfi-unknown-150x150.png',
page_url: 'https://research.pasteur.fr/en/member/pierre-khalfi/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156148883,
size: 0.5,
source: 159156,
target: 148883 });
// adding node
var x_node = Math.cos(2 * 1434 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1434 * Math.PI / N) * 10;
g.nodes.push({
id: 148747,
label: 'MEMBER: Maria Lopopolo',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/10/research_pasteur-lopopolo-m-photo-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/maria-lopopolo/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156148747,
size: 0.5,
source: 159156,
target: 148747 });
// adding node
var x_node = Math.cos(2 * 1435 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1435 * Math.PI / N) * 10;
g.nodes.push({
id: 148720,
label: 'MEMBER: Iman Wanis',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/10/research_pasteur-iman-wanis-photo-big-1-e1617484578611-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/fr-iman-wanis/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156148720,
size: 0.5,
source: 159156,
target: 148720 });
// adding node
var x_node = Math.cos(2 * 1436 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1436 * Math.PI / N) * 10;
g.nodes.push({
id: 148715,
label: 'MEMBER: Steven Laplante',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/fr-steven-laplante/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156148715,
size: 0.5,
source: 159156,
target: 148715 });
// adding node
var x_node = Math.cos(2 * 1437 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1437 * Math.PI / N) * 10;
g.nodes.push({
id: 148650,
label: 'MEMBER: Basile Beaud',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/10/research_pasteur-8a951152-5fa0-4920-99f6-30c8a2ec3081-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/fr-basile-beaud/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156148650,
size: 0.5,
source: 159156,
target: 148650 });
// adding node
var x_node = Math.cos(2 * 1438 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1438 * Math.PI / N) * 10;
g.nodes.push({
id: 148641,
label: 'MEMBER: Daniela Gaspar Santos',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/10/research_pasteur-enpaula-wildfrpaula-wild-daniela-150x150.png',
page_url: 'https://research.pasteur.fr/en/member/daniela-gaspar-santos/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156148641,
size: 0.5,
source: 159156,
target: 148641 });
// adding node
var x_node = Math.cos(2 * 1439 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1439 * Math.PI / N) * 10;
g.nodes.push({
id: 148611,
label: 'MEMBER: Viktoriia Gross',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/02/research_pasteur-vgross-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/viktoriia-gross/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156148611,
size: 0.5,
source: 159156,
target: 148611 });
// adding node
var x_node = Math.cos(2 * 1440 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1440 * Math.PI / N) * 10;
g.nodes.push({
id: 148461,
label: 'MEMBER: Luca Denti',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/10/research_pasteur-luca-denti-photo-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/luca-denti/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156148461,
size: 0.5,
source: 159156,
target: 148461 });
// adding node
var x_node = Math.cos(2 * 1441 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1441 * Math.PI / N) * 10;
g.nodes.push({
id: 148457,
label: 'MEMBER: Camila Duitama González',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/08/research_pasteur-fotocamila-e1630400272906-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/camila-duitama-gonzalez/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156148457,
size: 0.5,
source: 159156,
target: 148457 });
// adding node
var x_node = Math.cos(2 * 1442 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1442 * Math.PI / N) * 10;
g.nodes.push({
id: 148408,
label: 'MEMBER: Marcela Fuentes Carias',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/10/research_pasteur-marcela-fuentes-carias-img-0573-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/marcela-fuentes-carias/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156148408,
size: 0.5,
source: 159156,
target: 148408 });
// adding node
var x_node = Math.cos(2 * 1443 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1443 * Math.PI / N) * 10;
g.nodes.push({
id: 148400,
label: 'MEMBER: Sheng Zhang',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/10/research_pasteur-sheng-zhang-photo2-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/sheng-zhang/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156148400,
size: 0.5,
source: 159156,
target: 148400 });
// adding node
var x_node = Math.cos(2 * 1444 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1444 * Math.PI / N) * 10;
g.nodes.push({
id: 148275,
label: 'MEMBER: Daniel Abbühl',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/10/research_pasteur-daniel-abbuhl-img-20201012-141524-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/daniel-abbuhl/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156148275,
size: 0.5,
source: 159156,
target: 148275 });
// adding node
var x_node = Math.cos(2 * 1445 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1445 * Math.PI / N) * 10;
g.nodes.push({
id: 148251,
label: 'MEMBER: Ana Choi',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/10/research_pasteur-choi-small-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/ana-choi/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156148251,
size: 0.5,
source: 159156,
target: 148251 });
// adding node
var x_node = Math.cos(2 * 1446 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1446 * Math.PI / N) * 10;
g.nodes.push({
id: 148177,
label: 'MEMBER: Kelly Prifti',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/10/research_pasteur-kelly-prifti-kellyprifti-e1615568487469-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/kelly-prifti/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156148177,
size: 0.5,
source: 159156,
target: 148177 });
// adding node
var x_node = Math.cos(2 * 1447 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1447 * Math.PI / N) * 10;
g.nodes.push({
id: 148020,
label: 'MEMBER: Gizem Altay',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/10/research_pasteur-engizem-altayfrgizem-altay-altay-gizem-1527-e1672838063801-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/gizem-altay/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156148020,
size: 0.5,
source: 159156,
target: 148020 });
// adding node
var x_node = Math.cos(2 * 1448 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1448 * Math.PI / N) * 10;
g.nodes.push({
id: 147991,
label: 'MEMBER: Dipto Sinha',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/10/research_pasteur-dipto-sinha-20201011-134904-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/dipto-sinha/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156147991,
size: 0.5,
source: 159156,
target: 147991 });
// adding node
var x_node = Math.cos(2 * 1449 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1449 * Math.PI / N) * 10;
g.nodes.push({
id: 147963,
label: 'MEMBER: David Alexandre Mendes da Costa',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/david-alexandre-mendes-da-costa/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156147963,
size: 0.5,
source: 159156,
target: 147963 });
// adding node
var x_node = Math.cos(2 * 1450 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1450 * Math.PI / N) * 10;
g.nodes.push({
id: 147959,
label: 'MEMBER: Manuela Aguirre Botero',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/10/research_pasteur-manuela-aguirre-botero-aguirre-manuela-ppu-2020-1-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/manuela-camille-aguirre-botero/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156147959,
size: 0.5,
source: 159156,
target: 147959 });
// adding node
var x_node = Math.cos(2 * 1451 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1451 * Math.PI / N) * 10;
g.nodes.push({
id: 147956,
label: 'MEMBER: Monica da Silva Sa',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/monica-da-silva-sa/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156147956,
size: 0.5,
source: 159156,
target: 147956 });
// adding node
var x_node = Math.cos(2 * 1452 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1452 * Math.PI / N) * 10;
g.nodes.push({
id: 147948,
label: 'MEMBER: Francisco Jose Martinez Blazquez',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/francisco-jose-martinez-blazquez/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156147948,
size: 0.5,
source: 159156,
target: 147948 });
// adding node
var x_node = Math.cos(2 * 1453 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1453 * Math.PI / N) * 10;
g.nodes.push({
id: 147899,
label: 'MEMBER: Anais Ode',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/10/research_pasteur-enanais-odefranais-ode-anais-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/anais-ode/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156147899,
size: 0.5,
source: 159156,
target: 147899 });
// adding node
var x_node = Math.cos(2 * 1454 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1454 * Math.PI / N) * 10;
g.nodes.push({
id: 147868,
label: 'MEMBER: Louise Perrin de Facci',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/fr-louise-perrin-de-faci/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156147868,
size: 0.5,
source: 159156,
target: 147868 });
// adding node
var x_node = Math.cos(2 * 1455 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1455 * Math.PI / N) * 10;
g.nodes.push({
id: 147805,
label: 'MEMBER: Thomas Belmas',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/10/research_pasteur-thomas-belmas-thomas-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/thomas-belmas/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156147805,
size: 0.5,
source: 159156,
target: 147805 });
// adding node
var x_node = Math.cos(2 * 1456 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1456 * Math.PI / N) * 10;
g.nodes.push({
id: 147797,
label: 'MEMBER: Paloma Hedde',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/10/research_pasteur-paloma-hedde-paloma-1-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/paloma-hedde/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156147797,
size: 0.5,
source: 159156,
target: 147797 });
// adding node
var x_node = Math.cos(2 * 1457 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1457 * Math.PI / N) * 10;
g.nodes.push({
id: 147685,
label: 'MEMBER: Sophia Zborowsky',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/sophia-zborowsky/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156147685,
size: 0.5,
source: 159156,
target: 147685 });
// adding node
var x_node = Math.cos(2 * 1458 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1458 * Math.PI / N) * 10;
g.nodes.push({
id: 147661,
label: 'MEMBER: Germain Niogret',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/germain-niogret/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156147661,
size: 0.5,
source: 159156,
target: 147661 });
// adding node
var x_node = Math.cos(2 * 1459 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1459 * Math.PI / N) * 10;
g.nodes.push({
id: 147632,
label: 'MEMBER: Ayten Tekpinar',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/ayten-tekpinar/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156147632,
size: 0.5,
source: 159156,
target: 147632 });
// adding node
var x_node = Math.cos(2 * 1460 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1460 * Math.PI / N) * 10;
g.nodes.push({
id: 147490,
label: 'MEMBER: Thea Chrysostomou',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/09/research_pasteur-thea-chrysostomou-index-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/thea-chrysostomou/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156147490,
size: 0.5,
source: 159156,
target: 147490 });
// adding node
var x_node = Math.cos(2 * 1461 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1461 * Math.PI / N) * 10;
g.nodes.push({
id: 147394,
label: 'MEMBER: Mao Kuriki',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/09/research_pasteur-enmaofrmao-kuriki-photo-organigramme-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/fr-mao/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156147394,
size: 0.5,
source: 159156,
target: 147394 });
// adding node
var x_node = Math.cos(2 * 1462 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1462 * Math.PI / N) * 10;
g.nodes.push({
id: 147285,
label: 'MEMBER: André Rodriguez Pozo',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/09/research_pasteur-enandre-rodriguez-pozofrandre-rodriguez-pozo-andre-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/andre-rodriguez-pozo/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156147285,
size: 0.5,
source: 159156,
target: 147285 });
// adding node
var x_node = Math.cos(2 * 1463 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1463 * Math.PI / N) * 10;
g.nodes.push({
id: 147177,
label: 'MEMBER: Nastassia Tvardik',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/09/research_pasteur-nastassia-tvardik-research-p-e1607521913384-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/nastassia-tvardik/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156147177,
size: 0.5,
source: 159156,
target: 147177 });
// adding node
var x_node = Math.cos(2 * 1464 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1464 * Math.PI / N) * 10;
g.nodes.push({
id: 147173,
label: 'MEMBER: Léonard Heyerdahl',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/leonard-heyerdahl/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156147173,
size: 0.5,
source: 159156,
target: 147173 });
// adding node
var x_node = Math.cos(2 * 1465 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1465 * Math.PI / N) * 10;
g.nodes.push({
id: 147170,
label: 'MEMBER: Benedetta Lana',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/09/research_pasteur-enbenedetta-lanafrbenedetta-lana-benedetta-pic-for-website-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/benedetta-lana/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156147170,
size: 0.5,
source: 159156,
target: 147170 });
// adding node
var x_node = Math.cos(2 * 1466 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1466 * Math.PI / N) * 10;
g.nodes.push({
id: 147101,
label: 'MEMBER: Camille Chauvin',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/09/research_pasteur-2photo-camille-chauvin-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/camille-chauvin/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156147101,
size: 0.5,
source: 159156,
target: 147101 });
// adding node
var x_node = Math.cos(2 * 1467 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1467 * Math.PI / N) * 10;
g.nodes.push({
id: 147053,
label: 'MEMBER: Diana Trutschel',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/diana-trutschel/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156147053,
size: 0.5,
source: 159156,
target: 147053 });
// adding node
var x_node = Math.cos(2 * 1468 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1468 * Math.PI / N) * 10;
g.nodes.push({
id: 147037,
label: 'MEMBER: Alice Marteil',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/09/research_pasteur-enalice-marteilfralice-marteil-sans-titre-e1667579755939-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/alice-marteil/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156147037,
size: 0.5,
source: 159156,
target: 147037 });
// adding node
var x_node = Math.cos(2 * 1469 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1469 * Math.PI / N) * 10;
g.nodes.push({
id: 146951,
label: 'MEMBER: Gérald Touak',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/fr-gerald-touak/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156146951,
size: 0.5,
source: 159156,
target: 146951 });
// adding node
var x_node = Math.cos(2 * 1470 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1470 * Math.PI / N) * 10;
g.nodes.push({
id: 146735,
label: 'MEMBER: Thomas Bovagnet',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/thomas-bovagnet/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156146735,
size: 0.5,
source: 159156,
target: 146735 });
// adding node
var x_node = Math.cos(2 * 1471 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1471 * Math.PI / N) * 10;
g.nodes.push({
id: 146680,
label: 'MEMBER: Hippolyte Verdier',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/09/research_pasteur-photo-chic-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/hippolyte-verdier/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156146680,
size: 0.5,
source: 159156,
target: 146680 });
// adding node
var x_node = Math.cos(2 * 1472 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1472 * Math.PI / N) * 10;
g.nodes.push({
id: 146657,
label: 'MEMBER: Sacha Maire',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/sacha-maire/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156146657,
size: 0.5,
source: 159156,
target: 146657 });
// adding node
var x_node = Math.cos(2 * 1473 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1473 * Math.PI / N) * 10;
g.nodes.push({
id: 146649,
label: 'MEMBER: Thomas Wahl',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/thomas-wahl/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156146649,
size: 0.5,
source: 159156,
target: 146649 });
// adding node
var x_node = Math.cos(2 * 1474 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1474 * Math.PI / N) * 10;
g.nodes.push({
id: 146490,
label: 'MEMBER: Jacques Serizay',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/jacques-serizay/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156146490,
size: 0.5,
source: 159156,
target: 146490 });
// adding node
var x_node = Math.cos(2 * 1475 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1475 * Math.PI / N) * 10;
g.nodes.push({
id: 146183,
label: 'MEMBER: Paul Jenkins',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/09/research_pasteur-paul-jenkins-photo-paul-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/paul-jenkins/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156146183,
size: 0.5,
source: 159156,
target: 146183 });
// adding node
var x_node = Math.cos(2 * 1476 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1476 * Math.PI / N) * 10;
g.nodes.push({
id: 146175,
label: 'MEMBER: Jessie Colin',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/jessie-colin/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156146175,
size: 0.5,
source: 159156,
target: 146175 });
// adding node
var x_node = Math.cos(2 * 1477 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1477 * Math.PI / N) * 10;
g.nodes.push({
id: 146172,
label: 'MEMBER: Romain Laurian',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/09/research_pasteur-romain-laurian-research-pasteur-romain-laurian-research-pasteur-romain-laurian-img-3011-scaled-e1689073928331-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/romain-laurian/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156146172,
size: 0.5,
source: 159156,
target: 146172 });
// adding node
var x_node = Math.cos(2 * 1478 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1478 * Math.PI / N) * 10;
g.nodes.push({
id: 146160,
label: 'MEMBER: Nicolás Rascovan',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/09/research_pasteur-nicolas-rascovan-carnet-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/nicolas-rascovan/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156146160,
size: 0.5,
source: 159156,
target: 146160 });
// adding node
var x_node = Math.cos(2 * 1479 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1479 * Math.PI / N) * 10;
g.nodes.push({
id: 145964,
label: 'MEMBER: Marie Bourdon',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/08/research_pasteur-marie-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/marie-bourdon/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156145964,
size: 0.5,
source: 159156,
target: 145964 });
// adding node
var x_node = Math.cos(2 * 1480 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1480 * Math.PI / N) * 10;
g.nodes.push({
id: 145959,
label: 'MEMBER: Anaïs Cazals',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/08/research_pasteur-20191216_202741-1-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/anais-cazals/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156145959,
size: 0.5,
source: 159156,
target: 145959 });
// adding node
var x_node = Math.cos(2 * 1481 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1481 * Math.PI / N) * 10;
g.nodes.push({
id: 145954,
label: 'MEMBER: Laurine Conquet',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/08/research_pasteur-laurine-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/laurine-conquet/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156145954,
size: 0.5,
source: 159156,
target: 145954 });
// adding node
var x_node = Math.cos(2 * 1482 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1482 * Math.PI / N) * 10;
g.nodes.push({
id: 145905,
label: 'MEMBER: Marine Bernard',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/fr-marine-bernard/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156145905,
size: 0.5,
source: 159156,
target: 145905 });
// adding node
var x_node = Math.cos(2 * 1483 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1483 * Math.PI / N) * 10;
g.nodes.push({
id: 145369,
label: 'MEMBER: Emmanuel Terriac',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/08/research_pasteur-emmanuel-terriac-emmanuel-terriac-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/emmanuel-terriac/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156145369,
size: 0.5,
source: 159156,
target: 145369 });
// adding node
var x_node = Math.cos(2 * 1484 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1484 * Math.PI / N) * 10;
g.nodes.push({
id: 145320,
label: 'MEMBER: Raphaël Laurenceau',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/08/research_pasteur-raphael-laurenceau-research-pasteur-raphael-laurenceau-capture-decran-2024-04-18-a-15.20.35-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/raphael-laurenceau/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156145320,
size: 0.5,
source: 159156,
target: 145320 });
// adding node
var x_node = Math.cos(2 * 1485 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1485 * Math.PI / N) * 10;
g.nodes.push({
id: 145290,
label: 'MEMBER: Charlotte Guy',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/charlotte-guy/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156145290,
size: 0.5,
source: 159156,
target: 145290 });
// adding node
var x_node = Math.cos(2 * 1486 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1486 * Math.PI / N) * 10;
g.nodes.push({
id: 145189,
label: 'MEMBER: Liliana Avila Ospina',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/08/research_pasteur-photo-liliana-blanco-y-negro-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/liliana-avila-ospina/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156145189,
size: 0.5,
source: 159156,
target: 145189 });
// adding node
var x_node = Math.cos(2 * 1487 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1487 * Math.PI / N) * 10;
g.nodes.push({
id: 145077,
label: 'MEMBER: Rhizlane Laatabi',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/08/research_pasteur-img-5286-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/rhizlane-laatabi/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156145077,
size: 0.5,
source: 159156,
target: 145077 });
// adding node
var x_node = Math.cos(2 * 1488 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1488 * Math.PI / N) * 10;
g.nodes.push({
id: 145050,
label: 'MEMBER: Jeanne Perpétue Vincent',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/08/research_pasteur-enjeanne-perpetue-vincentfrjeanne-perpetue-vincent-vincent-jp-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/jeanne-perpetue-vincent/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 159156145050,
size: 0.5,
source: 159156,
target: 145050 });
// adding node
var x_node = Math.cos(2 * 1489 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1489 * Math.PI / N) * 10;
g.nodes.push({
id: 145046,
label: 'MEMBER: Laurie Pinaud',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/11/research_pasteur-139845