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: 53264,
label: 'Major Federating Program Vaccinology',
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2015/10/research.pasteur.fr_institutpasteur_42982-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=4
//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: 53259,
label: 'Christiane Gerke',
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2017/07/research_pasteur-gerke-3-1-150x150.png',
page_url: 'https://research.pasteur.fr/en/member/christiane-gerke/',
x: x_site,
y: y_site,
size: 10,
color: '#DDDDDD'
});
//link to content
g.edges.push({
id: 5326453259,
size: 0.5,
source: 53264,
target: 53259 });
//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: 4458,
label: 'Claude Leclerc',
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2015/06/research.pasteur.fr_claude_leclerc-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/claude-leclerc/',
x: x_site,
y: y_site,
size: 10,
color: '#DDDDDD'
});
//link to content
g.edges.push({
id: 532644458,
size: 0.5,
source: 53264,
target: 4458 });
//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: 4790,
label: 'Armelle Phalipon',
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2015/07/research.pasteur.fr_phalipon-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/armelle-phalipon/',
x: x_site,
y: y_site,
size: 10,
color: '#DDDDDD'
});
//link to content
g.edges.push({
id: 532644790,
size: 0.5,
source: 53264,
target: 4790 });
//check if content already exist
x_site = Math.cos(2 * 3 * Math.PI / N) * 2;
y_site = Math.sin(2 * 3 * Math.PI / N) * 2;
// adding site
g.nodes.push({
id: 4881,
label: 'Frédéric Tangy',
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2015/07/research.pasteur.fr_fig11-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/frederic-tangy/',
x: x_site,
y: y_site,
size: 10,
color: '#DDDDDD'
});
//link to content
g.edges.push({
id: 532644881,
size: 0.5,
source: 53264,
target: 4881 });
N=3298
// 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: 214790,
label: 'MEMBER: Untitled',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/214790/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264214790,
size: 0.5,
source: 53264,
target: 214790 });
// 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: 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: 53264214714,
size: 0.5,
source: 53264,
target: 214714 });
// 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: 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: 53264214703,
size: 0.5,
source: 53264,
target: 214703 });
// 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: 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: 53264214701,
size: 0.5,
source: 53264,
target: 214701 });
// 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: 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: 53264214697,
size: 0.5,
source: 53264,
target: 214697 });
// 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: 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: 53264214684,
size: 0.5,
source: 53264,
target: 214684 });
// 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: 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: 53264214687,
size: 0.5,
source: 53264,
target: 214687 });
// 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: 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: 53264214574,
size: 0.5,
source: 53264,
target: 214574 });
// 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: 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: 53264214530,
size: 0.5,
source: 53264,
target: 214530 });
// 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: 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: 53264214309,
size: 0.5,
source: 53264,
target: 214309 });
// 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: 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: 53264214168,
size: 0.5,
source: 53264,
target: 214168 });
// 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: 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: 53264214117,
size: 0.5,
source: 53264,
target: 214117 });
// 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: 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: 53264214103,
size: 0.5,
source: 53264,
target: 214103 });
// 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: 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: 53264214061,
size: 0.5,
source: 53264,
target: 214061 });
// 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: 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: 53264214027,
size: 0.5,
source: 53264,
target: 214027 });
// 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: 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: 53264213963,
size: 0.5,
source: 53264,
target: 213963 });
// 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: 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: 53264213820,
size: 0.5,
source: 53264,
target: 213820 });
// 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: 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: 53264213678,
size: 0.5,
source: 53264,
target: 213678 });
// 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: 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: 53264213445,
size: 0.5,
source: 53264,
target: 213445 });
// 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: 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: 53264213390,
size: 0.5,
source: 53264,
target: 213390 });
// 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: 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: 53264213066,
size: 0.5,
source: 53264,
target: 213066 });
// 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: 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: 53264213341,
size: 0.5,
source: 53264,
target: 213341 });
// 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: 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: 53264213296,
size: 0.5,
source: 53264,
target: 213296 });
// 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: 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: 53264212861,
size: 0.5,
source: 53264,
target: 212861 });
// 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: 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: 53264213231,
size: 0.5,
source: 53264,
target: 213231 });
// 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: 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: 53264213207,
size: 0.5,
source: 53264,
target: 213207 });
// 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: 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: 53264212963,
size: 0.5,
source: 53264,
target: 212963 });
// 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: 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: 53264212940,
size: 0.5,
source: 53264,
target: 212940 });
// 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: 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: 53264212934,
size: 0.5,
source: 53264,
target: 212934 });
// 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: 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: 53264212762,
size: 0.5,
source: 53264,
target: 212762 });
// 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: 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: 53264212701,
size: 0.5,
source: 53264,
target: 212701 });
// 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: 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: 53264212696,
size: 0.5,
source: 53264,
target: 212696 });
// 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: 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: 53264212688,
size: 0.5,
source: 53264,
target: 212688 });
// 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: 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: 53264212681,
size: 0.5,
source: 53264,
target: 212681 });
// 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: 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: 53264212504,
size: 0.5,
source: 53264,
target: 212504 });
// 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: 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: 53264212495,
size: 0.5,
source: 53264,
target: 212495 });
// 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: 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: 53264212478,
size: 0.5,
source: 53264,
target: 212478 });
// 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: 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: 53264212408,
size: 0.5,
source: 53264,
target: 212408 });
// 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: 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: 53264212392,
size: 0.5,
source: 53264,
target: 212392 });
// 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: 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: 53264212348,
size: 0.5,
source: 53264,
target: 212348 });
// 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: 212349,
label: 'MEMBER: Loïck Thibonnier',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/loick-thibonnier/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264212349,
size: 0.5,
source: 53264,
target: 212349 });
// 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: 212274,
label: 'MEMBER: Alicia Velazquez de Castro Esteve',
x: x_node,
y: y_node,
type: 'image',
url: '',
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: 53264212274,
size: 0.5,
source: 53264,
target: 212274 });
// 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: 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: 53264212221,
size: 0.5,
source: 53264,
target: 212221 });
// 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: 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: 53264212205,
size: 0.5,
source: 53264,
target: 212205 });
// 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: 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: 53264212199,
size: 0.5,
source: 53264,
target: 212199 });
// 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: 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: 53264211545,
size: 0.5,
source: 53264,
target: 211545 });
// 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: 212095,
label: 'MEMBER: Karim Ourahmoun',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/karim-ourahmoun/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264212095,
size: 0.5,
source: 53264,
target: 212095 });
// 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: 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: 53264211991,
size: 0.5,
source: 53264,
target: 211991 });
// 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: 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: 53264211799,
size: 0.5,
source: 53264,
target: 211799 });
// 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: 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: 53264211765,
size: 0.5,
source: 53264,
target: 211765 });
// 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: 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: 53264211640,
size: 0.5,
source: 53264,
target: 211640 });
// 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: 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: 53264211637,
size: 0.5,
source: 53264,
target: 211637 });
// 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: 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: 53264211584,
size: 0.5,
source: 53264,
target: 211584 });
// 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: 211579,
label: 'MEMBER: Xiaonan Cai',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/xiaonan-cai/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264211579,
size: 0.5,
source: 53264,
target: 211579 });
// 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: 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: 53264211528,
size: 0.5,
source: 53264,
target: 211528 });
// 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: 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: 53264211491,
size: 0.5,
source: 53264,
target: 211491 });
// 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: 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: 53264211486,
size: 0.5,
source: 53264,
target: 211486 });
// 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: 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: 53264211463,
size: 0.5,
source: 53264,
target: 211463 });
// 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: 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: 53264211446,
size: 0.5,
source: 53264,
target: 211446 });
// 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: 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: 53264211336,
size: 0.5,
source: 53264,
target: 211336 });
// 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: 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: 53264211317,
size: 0.5,
source: 53264,
target: 211317 });
// 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: 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: 53264211147,
size: 0.5,
source: 53264,
target: 211147 });
// 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: 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: 53264211100,
size: 0.5,
source: 53264,
target: 211100 });
// 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: 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: 53264211095,
size: 0.5,
source: 53264,
target: 211095 });
// 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: 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: 53264211065,
size: 0.5,
source: 53264,
target: 211065 });
// 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: 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: 53264211058,
size: 0.5,
source: 53264,
target: 211058 });
// 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: 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: 53264211051,
size: 0.5,
source: 53264,
target: 211051 });
// 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: 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: 53264211044,
size: 0.5,
source: 53264,
target: 211044 });
// 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: 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: 53264211025,
size: 0.5,
source: 53264,
target: 211025 });
// 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: 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: 53264210926,
size: 0.5,
source: 53264,
target: 210926 });
// 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: 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: 53264210921,
size: 0.5,
source: 53264,
target: 210921 });
// 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: 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: 53264210866,
size: 0.5,
source: 53264,
target: 210866 });
// 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: 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: 53264210741,
size: 0.5,
source: 53264,
target: 210741 });
// 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: 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: 53264210703,
size: 0.5,
source: 53264,
target: 210703 });
// 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: 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: 53264210660,
size: 0.5,
source: 53264,
target: 210660 });
// 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: 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: 53264210617,
size: 0.5,
source: 53264,
target: 210617 });
// 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: 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: 53264210613,
size: 0.5,
source: 53264,
target: 210613 });
// 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: 210609,
label: 'MEMBER: Leo Zeitler',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/leo-zeitler/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264210609,
size: 0.5,
source: 53264,
target: 210609 });
// 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: 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: 53264210553,
size: 0.5,
source: 53264,
target: 210553 });
// 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: 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: 53264210524,
size: 0.5,
source: 53264,
target: 210524 });
// 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: 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: 53264210428,
size: 0.5,
source: 53264,
target: 210428 });
// 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: 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: 53264210421,
size: 0.5,
source: 53264,
target: 210421 });
// 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: 210417,
label: 'MEMBER: Esteban Lebrun',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/esteban-lebrun/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264210417,
size: 0.5,
source: 53264,
target: 210417 });
// 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: 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: 53264210362,
size: 0.5,
source: 53264,
target: 210362 });
// 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: 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: 53264210357,
size: 0.5,
source: 53264,
target: 210357 });
// 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: 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: 53264210284,
size: 0.5,
source: 53264,
target: 210284 });
// 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: 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: 53264210254,
size: 0.5,
source: 53264,
target: 210254 });
// 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: 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: 53264210213,
size: 0.5,
source: 53264,
target: 210213 });
// 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: 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: 53264210198,
size: 0.5,
source: 53264,
target: 210198 });
// 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: 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: 53264210191,
size: 0.5,
source: 53264,
target: 210191 });
// 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: 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: 53264210187,
size: 0.5,
source: 53264,
target: 210187 });
// 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: 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: 53264210183,
size: 0.5,
source: 53264,
target: 210183 });
// 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: 210127,
label: 'MEMBER: Marouane Libiad',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/marouane-libiad/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264210127,
size: 0.5,
source: 53264,
target: 210127 });
// 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: 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: 53264210118,
size: 0.5,
source: 53264,
target: 210118 });
// 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: 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: 53264210112,
size: 0.5,
source: 53264,
target: 210112 });
// 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: 210106,
label: 'MEMBER: Jasmin Ostermayer',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/10/research_pasteur-enjasmin-ostermayerfrjasmin-ostermayer-jo1-6-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/jasmin-ostermayer/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264210106,
size: 0.5,
source: 53264,
target: 210106 });
// 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: 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: 53264210093,
size: 0.5,
source: 53264,
target: 210093 });
// 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: 210078,
label: 'MEMBER: Sebastian Duchene Garzon',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/sebastian-duchene-garzon/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264210078,
size: 0.5,
source: 53264,
target: 210078 });
// 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: 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: 53264210021,
size: 0.5,
source: 53264,
target: 210021 });
// 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: 210032,
label: 'MEMBER: Lina Boumediene',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/lina-boumediene/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264210032,
size: 0.5,
source: 53264,
target: 210032 });
// 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: 209756,
label: 'MEMBER: Mika Le Corre',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/09/research_pasteur-enmika-le-correfrmika-le-corre-research-pasteur-enmika-le-correfrmika-le-corre-capture-decran-2023-10-26-a-16.22.38-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/mika-le-corre/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264209756,
size: 0.5,
source: 53264,
target: 209756 });
// 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: 209616,
label: 'MEMBER: Alba Herrero del Valle',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/alba/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264209616,
size: 0.5,
source: 53264,
target: 209616 });
// 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: 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: 53264209609,
size: 0.5,
source: 53264,
target: 209609 });
// 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: 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: 53264209570,
size: 0.5,
source: 53264,
target: 209570 });
// 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: 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: 53264209482,
size: 0.5,
source: 53264,
target: 209482 });
// 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: 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: 53264209474,
size: 0.5,
source: 53264,
target: 209474 });
// 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: 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: 53264209349,
size: 0.5,
source: 53264,
target: 209349 });
// 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: 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: 53264209189,
size: 0.5,
source: 53264,
target: 209189 });
// 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: 209100,
label: 'MEMBER: Mercè Guzman Vendrell',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/merce-guzman-vendrell/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264209100,
size: 0.5,
source: 53264,
target: 209100 });
// 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: 209024,
label: 'MEMBER: Untitled',
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/209024/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264209024,
size: 0.5,
source: 53264,
target: 209024 });
// 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: 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: 53264208736,
size: 0.5,
source: 53264,
target: 208736 });
// 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: 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: 53264208166,
size: 0.5,
source: 53264,
target: 208166 });
// 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: 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: 53264208159,
size: 0.5,
source: 53264,
target: 208159 });
// 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: 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: 53264208147,
size: 0.5,
source: 53264,
target: 208147 });
// 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: 208131,
label: 'MEMBER: Eddy Blondet',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/eddy-blondet/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264208131,
size: 0.5,
source: 53264,
target: 208131 });
// 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: 207975,
label: 'MEMBER: Nolwenn Dheilly',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/nolwenn-dheilly/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264207975,
size: 0.5,
source: 53264,
target: 207975 });
// 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: 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: 53264207882,
size: 0.5,
source: 53264,
target: 207882 });
// 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: 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: 53264207836,
size: 0.5,
source: 53264,
target: 207836 });
// 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: 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: 53264207775,
size: 0.5,
source: 53264,
target: 207775 });
// 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: 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: 53264207604,
size: 0.5,
source: 53264,
target: 207604 });
// 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: 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: 53264207583,
size: 0.5,
source: 53264,
target: 207583 });
// 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: 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: 53264207571,
size: 0.5,
source: 53264,
target: 207571 });
// 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: 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: 53264207556,
size: 0.5,
source: 53264,
target: 207556 });
// 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: 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: 53264207281,
size: 0.5,
source: 53264,
target: 207281 });
// 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: 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: 53264207271,
size: 0.5,
source: 53264,
target: 207271 });
// 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: 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: 53264207044,
size: 0.5,
source: 53264,
target: 207044 });
// 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: 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: 53264207006,
size: 0.5,
source: 53264,
target: 207006 });
// 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: 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: 53264206805,
size: 0.5,
source: 53264,
target: 206805 });
// 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: 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: 53264206801,
size: 0.5,
source: 53264,
target: 206801 });
// 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: 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: 53264206797,
size: 0.5,
source: 53264,
target: 206797 });
// 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: 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: 53264206786,
size: 0.5,
source: 53264,
target: 206786 });
// 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: 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: 53264206781,
size: 0.5,
source: 53264,
target: 206781 });
// 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: 206774,
label: 'MEMBER: Grégoire Launay',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/asas/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264206774,
size: 0.5,
source: 53264,
target: 206774 });
// 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: 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: 53264206626,
size: 0.5,
source: 53264,
target: 206626 });
// 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: 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: 53264206462,
size: 0.5,
source: 53264,
target: 206462 });
// 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: 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: 53264206436,
size: 0.5,
source: 53264,
target: 206436 });
// 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: 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: 53264206175,
size: 0.5,
source: 53264,
target: 206175 });
// 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: 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: 53264206148,
size: 0.5,
source: 53264,
target: 206148 });
// 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: 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: 53264205502,
size: 0.5,
source: 53264,
target: 205502 });
// 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: 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: 53264205500,
size: 0.5,
source: 53264,
target: 205500 });
// 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: 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: 53264205200,
size: 0.5,
source: 53264,
target: 205200 });
// 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: 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: 53264205165,
size: 0.5,
source: 53264,
target: 205165 });
// 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: 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: 53264205151,
size: 0.5,
source: 53264,
target: 205151 });
// 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: 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: 53264204971,
size: 0.5,
source: 53264,
target: 204971 });
// 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: 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: 53264204929,
size: 0.5,
source: 53264,
target: 204929 });
// 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: 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: 53264204765,
size: 0.5,
source: 53264,
target: 204765 });
// 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: 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: 53264204741,
size: 0.5,
source: 53264,
target: 204741 });
// 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: 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: 53264204726,
size: 0.5,
source: 53264,
target: 204726 });
// 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: 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: 53264204706,
size: 0.5,
source: 53264,
target: 204706 });
// 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: 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: 53264204702,
size: 0.5,
source: 53264,
target: 204702 });
// 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: 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: 53264204690,
size: 0.5,
source: 53264,
target: 204690 });
// 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: 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: 53264204626,
size: 0.5,
source: 53264,
target: 204626 });
// 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: 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: 53264204620,
size: 0.5,
source: 53264,
target: 204620 });
// 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: 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: 53264204522,
size: 0.5,
source: 53264,
target: 204522 });
// 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: 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: 53264204506,
size: 0.5,
source: 53264,
target: 204506 });
// 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: 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: 53264204504,
size: 0.5,
source: 53264,
target: 204504 });
// 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: 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: 53264204483,
size: 0.5,
source: 53264,
target: 204483 });
// 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: 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: 53264204475,
size: 0.5,
source: 53264,
target: 204475 });
// 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: 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: 53264204048,
size: 0.5,
source: 53264,
target: 204048 });
// 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: 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: 53264203840,
size: 0.5,
source: 53264,
target: 203840 });
// 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: 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: 53264203722,
size: 0.5,
source: 53264,
target: 203722 });
// 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: 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: 53264203719,
size: 0.5,
source: 53264,
target: 203719 });
// 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: 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: 53264203660,
size: 0.5,
source: 53264,
target: 203660 });
// 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: 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: 53264203657,
size: 0.5,
source: 53264,
target: 203657 });
// 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: 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: 53264203641,
size: 0.5,
source: 53264,
target: 203641 });
// 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: 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: 53264203457,
size: 0.5,
source: 53264,
target: 203457 });
// 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: 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: 53264203455,
size: 0.5,
source: 53264,
target: 203455 });
// 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: 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: 53264203418,
size: 0.5,
source: 53264,
target: 203418 });
// 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: 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: 53264203415,
size: 0.5,
source: 53264,
target: 203415 });
// 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: 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: 53264203405,
size: 0.5,
source: 53264,
target: 203405 });
// 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: 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: 53264203338,
size: 0.5,
source: 53264,
target: 203338 });
// 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: 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: 53264203335,
size: 0.5,
source: 53264,
target: 203335 });
// 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: 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: 53264203306,
size: 0.5,
source: 53264,
target: 203306 });
// 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: 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: 53264203179,
size: 0.5,
source: 53264,
target: 203179 });
// 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: 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: 53264203177,
size: 0.5,
source: 53264,
target: 203177 });
// 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: 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: 53264203175,
size: 0.5,
source: 53264,
target: 203175 });
// 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: 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: 53264203125,
size: 0.5,
source: 53264,
target: 203125 });
// 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: 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: 53264203113,
size: 0.5,
source: 53264,
target: 203113 });
// 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: 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: 53264203057,
size: 0.5,
source: 53264,
target: 203057 });
// 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: 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: 53264202892,
size: 0.5,
source: 53264,
target: 202892 });
// 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: 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: 53264202856,
size: 0.5,
source: 53264,
target: 202856 });
// 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: 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: 53264202845,
size: 0.5,
source: 53264,
target: 202845 });
// 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: 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: 53264202836,
size: 0.5,
source: 53264,
target: 202836 });
// 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: 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: 53264202714,
size: 0.5,
source: 53264,
target: 202714 });
// 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: 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: 53264202659,
size: 0.5,
source: 53264,
target: 202659 });
// 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: 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: 53264202213,
size: 0.5,
source: 53264,
target: 202213 });
// 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: 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: 53264202211,
size: 0.5,
source: 53264,
target: 202211 });
// 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: 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: 53264202209,
size: 0.5,
source: 53264,
target: 202209 });
// 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: 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: 53264202174,
size: 0.5,
source: 53264,
target: 202174 });
// 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: 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: 53264202172,
size: 0.5,
source: 53264,
target: 202172 });
// 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: 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: 53264202072,
size: 0.5,
source: 53264,
target: 202072 });
// 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: 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: 53264202052,
size: 0.5,
source: 53264,
target: 202052 });
// 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: 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: 53264201926,
size: 0.5,
source: 53264,
target: 201926 });
// 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: 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: 53264201827,
size: 0.5,
source: 53264,
target: 201827 });
// 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: 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: 53264201829,
size: 0.5,
source: 53264,
target: 201829 });
// 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: 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: 53264201825,
size: 0.5,
source: 53264,
target: 201825 });
// 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: 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: 53264201811,
size: 0.5,
source: 53264,
target: 201811 });
// 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: 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: 53264201664,
size: 0.5,
source: 53264,
target: 201664 });
// 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: 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: 53264201659,
size: 0.5,
source: 53264,
target: 201659 });
// 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: 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: 53264201500,
size: 0.5,
source: 53264,
target: 201500 });
// 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: 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: 53264201492,
size: 0.5,
source: 53264,
target: 201492 });
// 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: 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: 53264201489,
size: 0.5,
source: 53264,
target: 201489 });
// 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: 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: 53264201486,
size: 0.5,
source: 53264,
target: 201486 });
// 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: 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: 53264201412,
size: 0.5,
source: 53264,
target: 201412 });
// 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: 201329,
label: 'MEMBER: Martin Groznicka',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/martin-groznicka/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264201329,
size: 0.5,
source: 53264,
target: 201329 });
// 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: 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: 53264201327,
size: 0.5,
source: 53264,
target: 201327 });
// 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: 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: 53264201199,
size: 0.5,
source: 53264,
target: 201199 });
// 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: 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: 53264201200,
size: 0.5,
source: 53264,
target: 201200 });
// 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: 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: 53264201185,
size: 0.5,
source: 53264,
target: 201185 });
// 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: 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: 53264201163,
size: 0.5,
source: 53264,
target: 201163 });
// 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: 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: 53264200933,
size: 0.5,
source: 53264,
target: 200933 });
// 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: 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: 53264200549,
size: 0.5,
source: 53264,
target: 200549 });
// 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: 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: 53264189234,
size: 0.5,
source: 53264,
target: 189234 });
// 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: 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: 53264200535,
size: 0.5,
source: 53264,
target: 200535 });
// 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: 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: 53264200490,
size: 0.5,
source: 53264,
target: 200490 });
// 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: 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: 53264200377,
size: 0.5,
source: 53264,
target: 200377 });
// 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: 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: 53264200254,
size: 0.5,
source: 53264,
target: 200254 });
// 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: 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: 53264200229,
size: 0.5,
source: 53264,
target: 200229 });
// 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: 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: 53264200126,
size: 0.5,
source: 53264,
target: 200126 });
// 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: 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: 53264200119,
size: 0.5,
source: 53264,
target: 200119 });
// 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: 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: 53264200116,
size: 0.5,
source: 53264,
target: 200116 });
// 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: 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: 53264200113,
size: 0.5,
source: 53264,
target: 200113 });
// 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: 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: 53264200087,
size: 0.5,
source: 53264,
target: 200087 });
// 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: 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: 53264200076,
size: 0.5,
source: 53264,
target: 200076 });
// 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: 200052,
label: 'MEMBER: Maximilian Mannheim',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/maximilian-mannheim-2/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264200052,
size: 0.5,
source: 53264,
target: 200052 });
// 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: 200048,
label: 'MEMBER: Elina Muriel Guzman',
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: 53264200048,
size: 0.5,
source: 53264,
target: 200048 });
// 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: 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: 53264200032,
size: 0.5,
source: 53264,
target: 200032 });
// 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: 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: 53264200029,
size: 0.5,
source: 53264,
target: 200029 });
// 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: 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: 53264200026,
size: 0.5,
source: 53264,
target: 200026 });
// 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: 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: 53264200004,
size: 0.5,
source: 53264,
target: 200004 });
// 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: 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: 53264199902,
size: 0.5,
source: 53264,
target: 199902 });
// 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: 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: 53264199848,
size: 0.5,
source: 53264,
target: 199848 });
// 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: 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: 53264199794,
size: 0.5,
source: 53264,
target: 199794 });
// 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: 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: 53264199763,
size: 0.5,
source: 53264,
target: 199763 });
// 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: 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: 53264199760,
size: 0.5,
source: 53264,
target: 199760 });
// 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: 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: 53264199732,
size: 0.5,
source: 53264,
target: 199732 });
// 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: 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: 53264199729,
size: 0.5,
source: 53264,
target: 199729 });
// 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: 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: 53264199718,
size: 0.5,
source: 53264,
target: 199718 });
// 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: 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: 53264199677,
size: 0.5,
source: 53264,
target: 199677 });
// 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: 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: 53264199669,
size: 0.5,
source: 53264,
target: 199669 });
// 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: 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: 53264199567,
size: 0.5,
source: 53264,
target: 199567 });
// 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: 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: 53264199560,
size: 0.5,
source: 53264,
target: 199560 });
// 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: 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: 53264199540,
size: 0.5,
source: 53264,
target: 199540 });
// 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: 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: 53264199438,
size: 0.5,
source: 53264,
target: 199438 });
// 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: 199393,
label: 'MEMBER: Pierre Guermonprez',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/pierre-guermonprez/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264199393,
size: 0.5,
source: 53264,
target: 199393 });
// 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: 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: 53264199371,
size: 0.5,
source: 53264,
target: 199371 });
// 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: 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: 53264199204,
size: 0.5,
source: 53264,
target: 199204 });
// 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: 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: 53264199123,
size: 0.5,
source: 53264,
target: 199123 });
// 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: 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: 53264199093,
size: 0.5,
source: 53264,
target: 199093 });
// 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: 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: 53264199054,
size: 0.5,
source: 53264,
target: 199054 });
// 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: 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: 53264199022,
size: 0.5,
source: 53264,
target: 199022 });
// 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: 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: 53264198865,
size: 0.5,
source: 53264,
target: 198865 });
// 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: 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: 53264198859,
size: 0.5,
source: 53264,
target: 198859 });
// 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: 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: 53264198678,
size: 0.5,
source: 53264,
target: 198678 });
// 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: 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: 53264198837,
size: 0.5,
source: 53264,
target: 198837 });
// 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: 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: 53264198677,
size: 0.5,
source: 53264,
target: 198677 });
// 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: 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: 53264198631,
size: 0.5,
source: 53264,
target: 198631 });
// 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: 198620,
label: 'MEMBER: Isabella Zafferri',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/isabella-zafferri/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264198620,
size: 0.5,
source: 53264,
target: 198620 });
// 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: 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: 53264198601,
size: 0.5,
source: 53264,
target: 198601 });
// 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: 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: 53264198597,
size: 0.5,
source: 53264,
target: 198597 });
// 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: 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: 53264198558,
size: 0.5,
source: 53264,
target: 198558 });
// 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: 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: 53264198556,
size: 0.5,
source: 53264,
target: 198556 });
// 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: 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: 53264198479,
size: 0.5,
source: 53264,
target: 198479 });
// 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: 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: 53264198473,
size: 0.5,
source: 53264,
target: 198473 });
// 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: 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: 53264198470,
size: 0.5,
source: 53264,
target: 198470 });
// 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: 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: 53264198467,
size: 0.5,
source: 53264,
target: 198467 });
// 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: 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: 53264198441,
size: 0.5,
source: 53264,
target: 198441 });
// 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: 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: 53264198306,
size: 0.5,
source: 53264,
target: 198306 });
// 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: 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: 53264198188,
size: 0.5,
source: 53264,
target: 198188 });
// 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: 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: 53264198182,
size: 0.5,
source: 53264,
target: 198182 });
// 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: 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: 53264198147,
size: 0.5,
source: 53264,
target: 198147 });
// 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: 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: 53264198125,
size: 0.5,
source: 53264,
target: 198125 });
// 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: 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: 53264197994,
size: 0.5,
source: 53264,
target: 197994 });
// 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: 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: 53264197952,
size: 0.5,
source: 53264,
target: 197952 });
// 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: 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: 53264197944,
size: 0.5,
source: 53264,
target: 197944 });
// 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: 197903,
label: 'MEMBER: Vincent Thonier',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/03/research_pasteur-vincent-thonier-img-1323-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/vincent-thonier/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264197903,
size: 0.5,
source: 53264,
target: 197903 });
// 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: 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: 53264197759,
size: 0.5,
source: 53264,
target: 197759 });
// 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: 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: 53264197754,
size: 0.5,
source: 53264,
target: 197754 });
// 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: 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: 53264197750,
size: 0.5,
source: 53264,
target: 197750 });
// 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: 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: 53264197745,
size: 0.5,
source: 53264,
target: 197745 });
// 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: 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: 53264197318,
size: 0.5,
source: 53264,
target: 197318 });
// 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: 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: 53264197302,
size: 0.5,
source: 53264,
target: 197302 });
// 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: 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: 53264197263,
size: 0.5,
source: 53264,
target: 197263 });
// 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: 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: 53264197250,
size: 0.5,
source: 53264,
target: 197250 });
// 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: 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: 53264197246,
size: 0.5,
source: 53264,
target: 197246 });
// 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: 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: 53264197241,
size: 0.5,
source: 53264,
target: 197241 });
// 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: 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: 53264197243,
size: 0.5,
source: 53264,
target: 197243 });
// 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: 197204,
label: 'MEMBER: Tristan Ruffiot',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/tristan-ruffiot/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264197204,
size: 0.5,
source: 53264,
target: 197204 });
// 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: 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: 53264197202,
size: 0.5,
source: 53264,
target: 197202 });
// 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: 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: 53264197189,
size: 0.5,
source: 53264,
target: 197189 });
// 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: 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: 53264197181,
size: 0.5,
source: 53264,
target: 197181 });
// 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: 196957,
label: 'MEMBER: Sonia Goldina',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/sonia-goldina/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264196957,
size: 0.5,
source: 53264,
target: 196957 });
// 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: 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: 53264196903,
size: 0.5,
source: 53264,
target: 196903 });
// 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: 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: 53264196848,
size: 0.5,
source: 53264,
target: 196848 });
// 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: 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: 53264196815,
size: 0.5,
source: 53264,
target: 196815 });
// 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: 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: 53264196793,
size: 0.5,
source: 53264,
target: 196793 });
// 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: 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: 53264196687,
size: 0.5,
source: 53264,
target: 196687 });
// 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: 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: 53264196586,
size: 0.5,
source: 53264,
target: 196586 });
// 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: 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: 53264196584,
size: 0.5,
source: 53264,
target: 196584 });
// 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: 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: 53264196568,
size: 0.5,
source: 53264,
target: 196568 });
// 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: 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: 53264196483,
size: 0.5,
source: 53264,
target: 196483 });
// 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: 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: 53264196414,
size: 0.5,
source: 53264,
target: 196414 });
// 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: 196377,
label: 'MEMBER: Nacef Hmaied-Montforte',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/nacef-hmaied-montforte/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264196377,
size: 0.5,
source: 53264,
target: 196377 });
// 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: 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: 53264196347,
size: 0.5,
source: 53264,
target: 196347 });
// 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: 196337,
label: 'MEMBER: Lucas Facchinetti',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/lucas-facchinetti/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264196337,
size: 0.5,
source: 53264,
target: 196337 });
// 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: 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: 53264196333,
size: 0.5,
source: 53264,
target: 196333 });
// 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: 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: 53264196277,
size: 0.5,
source: 53264,
target: 196277 });
// 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: 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: 53264196275,
size: 0.5,
source: 53264,
target: 196275 });
// 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: 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: 53264196268,
size: 0.5,
source: 53264,
target: 196268 });
// 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: 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: 53264196265,
size: 0.5,
source: 53264,
target: 196265 });
// 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: 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: 53264196215,
size: 0.5,
source: 53264,
target: 196215 });
// 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: 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: 53264196187,
size: 0.5,
source: 53264,
target: 196187 });
// 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: 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: 53264196176,
size: 0.5,
source: 53264,
target: 196176 });
// 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: 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: 53264196173,
size: 0.5,
source: 53264,
target: 196173 });
// 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: 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: 53264196097,
size: 0.5,
source: 53264,
target: 196097 });
// 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: 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: 53264196069,
size: 0.5,
source: 53264,
target: 196069 });
// 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: 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: 53264196063,
size: 0.5,
source: 53264,
target: 196063 });
// 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: 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: 53264196028,
size: 0.5,
source: 53264,
target: 196028 });
// 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: 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: 53264195989,
size: 0.5,
source: 53264,
target: 195989 });
// 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: 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: 53264195987,
size: 0.5,
source: 53264,
target: 195987 });
// 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: 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: 53264195984,
size: 0.5,
source: 53264,
target: 195984 });
// 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: 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: 53264195981,
size: 0.5,
source: 53264,
target: 195981 });
// 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: 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: 53264195909,
size: 0.5,
source: 53264,
target: 195909 });
// 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: 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: 53264195902,
size: 0.5,
source: 53264,
target: 195902 });
// 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: 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: 53264195900,
size: 0.5,
source: 53264,
target: 195900 });
// 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: 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: 53264195773,
size: 0.5,
source: 53264,
target: 195773 });
// 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: 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: 53264195771,
size: 0.5,
source: 53264,
target: 195771 });
// 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: 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: 53264195736,
size: 0.5,
source: 53264,
target: 195736 });
// 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: 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: 53264195636,
size: 0.5,
source: 53264,
target: 195636 });
// 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: 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: 53264195616,
size: 0.5,
source: 53264,
target: 195616 });
// 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: 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: 53264195509,
size: 0.5,
source: 53264,
target: 195509 });
// 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: 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: 53264195396,
size: 0.5,
source: 53264,
target: 195396 });
// 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: 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: 53264195412,
size: 0.5,
source: 53264,
target: 195412 });
// 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: 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: 53264195410,
size: 0.5,
source: 53264,
target: 195410 });
// 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: 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: 53264194626,
size: 0.5,
source: 53264,
target: 194626 });
// 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: 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: 53264195359,
size: 0.5,
source: 53264,
target: 195359 });
// 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: 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: 53264195357,
size: 0.5,
source: 53264,
target: 195357 });
// 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: 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: 53264195290,
size: 0.5,
source: 53264,
target: 195290 });
// 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: 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: 53264195288,
size: 0.5,
source: 53264,
target: 195288 });
// 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: 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: 53264195216,
size: 0.5,
source: 53264,
target: 195216 });
// 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: 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: 53264195208,
size: 0.5,
source: 53264,
target: 195208 });
// 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: 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: 53264195203,
size: 0.5,
source: 53264,
target: 195203 });
// 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: 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: 53264195199,
size: 0.5,
source: 53264,
target: 195199 });
// 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: 195190,
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: 53264195190,
size: 0.5,
source: 53264,
target: 195190 });
// 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: 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: 53264195180,
size: 0.5,
source: 53264,
target: 195180 });
// 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: 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: 53264195178,
size: 0.5,
source: 53264,
target: 195178 });
// 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: 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: 53264195170,
size: 0.5,
source: 53264,
target: 195170 });
// 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: 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: 53264195166,
size: 0.5,
source: 53264,
target: 195166 });
// 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: 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: 53264195140,
size: 0.5,
source: 53264,
target: 195140 });
// 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: 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: 53264195119,
size: 0.5,
source: 53264,
target: 195119 });
// 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: 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: 53264195082,
size: 0.5,
source: 53264,
target: 195082 });
// 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: 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: 53264195064,
size: 0.5,
source: 53264,
target: 195064 });
// 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: 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: 53264195058,
size: 0.5,
source: 53264,
target: 195058 });
// 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: 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: 53264195044,
size: 0.5,
source: 53264,
target: 195044 });
// 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: 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: 53264194968,
size: 0.5,
source: 53264,
target: 194968 });
// 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: 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: 53264194966,
size: 0.5,
source: 53264,
target: 194966 });
// 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: 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: 53264194799,
size: 0.5,
source: 53264,
target: 194799 });
// 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: 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: 53264194657,
size: 0.5,
source: 53264,
target: 194657 });
// 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: 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: 53264194622,
size: 0.5,
source: 53264,
target: 194622 });
// 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: 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: 53264194615,
size: 0.5,
source: 53264,
target: 194615 });
// 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: 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: 53264194607,
size: 0.5,
source: 53264,
target: 194607 });
// 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: 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: 53264194605,
size: 0.5,
source: 53264,
target: 194605 });
// 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: 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: 53264194602,
size: 0.5,
source: 53264,
target: 194602 });
// 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: 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: 53264194600,
size: 0.5,
source: 53264,
target: 194600 });
// 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: 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: 53264194573,
size: 0.5,
source: 53264,
target: 194573 });
// 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: 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: 53264194504,
size: 0.5,
source: 53264,
target: 194504 });
// 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: 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: 53264194492,
size: 0.5,
source: 53264,
target: 194492 });
// 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: 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: 53264194451,
size: 0.5,
source: 53264,
target: 194451 });
// 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: 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: 53264194391,
size: 0.5,
source: 53264,
target: 194391 });
// 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: 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: 53264194290,
size: 0.5,
source: 53264,
target: 194290 });
// 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: 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: 53264194285,
size: 0.5,
source: 53264,
target: 194285 });
// 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: 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: 53264194281,
size: 0.5,
source: 53264,
target: 194281 });
// 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: 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: 53264194263,
size: 0.5,
source: 53264,
target: 194263 });
// 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: 194241,
label: 'MEMBER: Jeanne Brouillet',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/jeanne-brouillet/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264194241,
size: 0.5,
source: 53264,
target: 194241 });
// 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: 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: 53264194214,
size: 0.5,
source: 53264,
target: 194214 });
// 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: 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: 53264194208,
size: 0.5,
source: 53264,
target: 194208 });
// 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: 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: 53264194202,
size: 0.5,
source: 53264,
target: 194202 });
// 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: 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: 53264194195,
size: 0.5,
source: 53264,
target: 194195 });
// 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: 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: 53264194190,
size: 0.5,
source: 53264,
target: 194190 });
// 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: 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: 53264194184,
size: 0.5,
source: 53264,
target: 194184 });
// 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: 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: 53264194141,
size: 0.5,
source: 53264,
target: 194141 });
// 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: 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: 53264194110,
size: 0.5,
source: 53264,
target: 194110 });
// 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: 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: 53264194108,
size: 0.5,
source: 53264,
target: 194108 });
// 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: 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: 53264194077,
size: 0.5,
source: 53264,
target: 194077 });
// 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: 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: 53264194004,
size: 0.5,
source: 53264,
target: 194004 });
// 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: 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: 53264193996,
size: 0.5,
source: 53264,
target: 193996 });
// 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: 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: 53264193991,
size: 0.5,
source: 53264,
target: 193991 });
// 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: 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: 53264193939,
size: 0.5,
source: 53264,
target: 193939 });
// 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: 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: 53264193913,
size: 0.5,
source: 53264,
target: 193913 });
// 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: 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: 53264193908,
size: 0.5,
source: 53264,
target: 193908 });
// 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: 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: 53264193903,
size: 0.5,
source: 53264,
target: 193903 });
// 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: 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: 53264193865,
size: 0.5,
source: 53264,
target: 193865 });
// 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: 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: 53264193812,
size: 0.5,
source: 53264,
target: 193812 });
// 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: 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: 53264193792,
size: 0.5,
source: 53264,
target: 193792 });
// 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: 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: 53264193769,
size: 0.5,
source: 53264,
target: 193769 });
// 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: 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: 53264193543,
size: 0.5,
source: 53264,
target: 193543 });
// 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: 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: 53264193540,
size: 0.5,
source: 53264,
target: 193540 });
// 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: 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: 53264193481,
size: 0.5,
source: 53264,
target: 193481 });
// 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: 193476,
label: 'MEMBER: Gladwys Faucher',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2023/01/research_pasteur-gladwys-faucher-research-pasteur-gladwys-faucher-gf-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/gladwys-faucher/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264193476,
size: 0.5,
source: 53264,
target: 193476 });
// 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: 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: 53264193450,
size: 0.5,
source: 53264,
target: 193450 });
// 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: 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: 53264193445,
size: 0.5,
source: 53264,
target: 193445 });
// 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: 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: 53264193399,
size: 0.5,
source: 53264,
target: 193399 });
// 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: 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: 53264193310,
size: 0.5,
source: 53264,
target: 193310 });
// 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: 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: 53264193301,
size: 0.5,
source: 53264,
target: 193301 });
// 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: 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: 53264193227,
size: 0.5,
source: 53264,
target: 193227 });
// 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: 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: 53264193224,
size: 0.5,
source: 53264,
target: 193224 });
// 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: 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: 53264193087,
size: 0.5,
source: 53264,
target: 193087 });
// 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: 192367,
label: 'MEMBER: Typhaine Filhol',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/typhaine-filhol/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264192367,
size: 0.5,
source: 53264,
target: 192367 });
// 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: 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: 53264192364,
size: 0.5,
source: 53264,
target: 192364 });
// 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: 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: 53264192136,
size: 0.5,
source: 53264,
target: 192136 });
// 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: 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: 53264192134,
size: 0.5,
source: 53264,
target: 192134 });
// 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: 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: 53264192100,
size: 0.5,
source: 53264,
target: 192100 });
// 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: 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: 53264192091,
size: 0.5,
source: 53264,
target: 192091 });
// 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: 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: 53264192085,
size: 0.5,
source: 53264,
target: 192085 });
// 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: 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: 53264191929,
size: 0.5,
source: 53264,
target: 191929 });
// 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: 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: 53264191759,
size: 0.5,
source: 53264,
target: 191759 });
// 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: 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: 53264191696,
size: 0.5,
source: 53264,
target: 191696 });
// 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: 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: 53264191658,
size: 0.5,
source: 53264,
target: 191658 });
// 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: 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: 53264191651,
size: 0.5,
source: 53264,
target: 191651 });
// 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: 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: 53264191575,
size: 0.5,
source: 53264,
target: 191575 });
// 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: 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: 53264191571,
size: 0.5,
source: 53264,
target: 191571 });
// 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: 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: 53264191383,
size: 0.5,
source: 53264,
target: 191383 });
// 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: 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: 53264191380,
size: 0.5,
source: 53264,
target: 191380 });
// 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: 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: 53264191318,
size: 0.5,
source: 53264,
target: 191318 });
// 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: 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: 53264191305,
size: 0.5,
source: 53264,
target: 191305 });
// 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: 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: 53264191298,
size: 0.5,
source: 53264,
target: 191298 });
// 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: 191233,
label: 'MEMBER: Alex Barbier–Chebbah',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/alex-barbier-chebbah/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264191233,
size: 0.5,
source: 53264,
target: 191233 });
// 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: 191231,
label: 'MEMBER: Robin Cremese',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/robin-cremese/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264191231,
size: 0.5,
source: 53264,
target: 191231 });
// 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: 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: 53264191181,
size: 0.5,
source: 53264,
target: 191181 });
// 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: 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: 53264191157,
size: 0.5,
source: 53264,
target: 191157 });
// 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: 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: 53264191060,
size: 0.5,
source: 53264,
target: 191060 });
// 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: 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: 53264191053,
size: 0.5,
source: 53264,
target: 191053 });
// 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: 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: 53264190989,
size: 0.5,
source: 53264,
target: 190989 });
// 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: 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: 53264190981,
size: 0.5,
source: 53264,
target: 190981 });
// 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: 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: 53264190937,
size: 0.5,
source: 53264,
target: 190937 });
// 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: 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: 53264190868,
size: 0.5,
source: 53264,
target: 190868 });
// 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: 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: 53264190866,
size: 0.5,
source: 53264,
target: 190866 });
// 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: 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: 53264190815,
size: 0.5,
source: 53264,
target: 190815 });
// 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: 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: 53264190787,
size: 0.5,
source: 53264,
target: 190787 });
// 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: 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: 53264190680,
size: 0.5,
source: 53264,
target: 190680 });
// 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: 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: 53264190676,
size: 0.5,
source: 53264,
target: 190676 });
// 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: 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: 53264190654,
size: 0.5,
source: 53264,
target: 190654 });
// 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: 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: 53264190624,
size: 0.5,
source: 53264,
target: 190624 });
// 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: 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: 53264190621,
size: 0.5,
source: 53264,
target: 190621 });
// 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: 190523,
label: 'MEMBER: Ludovica Veggiotti',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/ludovica-veggiotti/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264190523,
size: 0.5,
source: 53264,
target: 190523 });
// 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: 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: 53264190514,
size: 0.5,
source: 53264,
target: 190514 });
// 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: 190508,
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: 53264190508,
size: 0.5,
source: 53264,
target: 190508 });
// 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: 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: 53264190403,
size: 0.5,
source: 53264,
target: 190403 });
// 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: 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: 53264190391,
size: 0.5,
source: 53264,
target: 190391 });
// 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: 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: 53264190388,
size: 0.5,
source: 53264,
target: 190388 });
// 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: 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: 53264190319,
size: 0.5,
source: 53264,
target: 190319 });
// 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: 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: 53264190311,
size: 0.5,
source: 53264,
target: 190311 });
// 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: 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: 53264190201,
size: 0.5,
source: 53264,
target: 190201 });
// 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: 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: 53264190156,
size: 0.5,
source: 53264,
target: 190156 });
// 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: 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: 53264190145,
size: 0.5,
source: 53264,
target: 190145 });
// 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: 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: 53264189972,
size: 0.5,
source: 53264,
target: 189972 });
// 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: 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: 53264189865,
size: 0.5,
source: 53264,
target: 189865 });
// 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: 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: 53264189862,
size: 0.5,
source: 53264,
target: 189862 });
// 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: 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: 53264189855,
size: 0.5,
source: 53264,
target: 189855 });
// 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: 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: 53264189844,
size: 0.5,
source: 53264,
target: 189844 });
// 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: 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: 53264189842,
size: 0.5,
source: 53264,
target: 189842 });
// 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: 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: 53264189826,
size: 0.5,
source: 53264,
target: 189826 });
// 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: 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: 53264189689,
size: 0.5,
source: 53264,
target: 189689 });
// 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: 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: 53264189656,
size: 0.5,
source: 53264,
target: 189656 });
// 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: 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: 53264189487,
size: 0.5,
source: 53264,
target: 189487 });
// 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: 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: 53264189442,
size: 0.5,
source: 53264,
target: 189442 });
// 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: 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: 53264189399,
size: 0.5,
source: 53264,
target: 189399 });
// 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: 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: 53264189319,
size: 0.5,
source: 53264,
target: 189319 });
// 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: 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: 53264189286,
size: 0.5,
source: 53264,
target: 189286 });
// 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: 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: 53264189268,
size: 0.5,
source: 53264,
target: 189268 });
// 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: 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: 53264189178,
size: 0.5,
source: 53264,
target: 189178 });
// 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: 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: 53264189170,
size: 0.5,
source: 53264,
target: 189170 });
// 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: 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: 53264189128,
size: 0.5,
source: 53264,
target: 189128 });
// 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: 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: 53264189125,
size: 0.5,
source: 53264,
target: 189125 });
// 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: 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: 53264189118,
size: 0.5,
source: 53264,
target: 189118 });
// 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: 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: 53264189108,
size: 0.5,
source: 53264,
target: 189108 });
// 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: 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: 53264189101,
size: 0.5,
source: 53264,
target: 189101 });
// 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: 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: 53264189062,
size: 0.5,
source: 53264,
target: 189062 });
// 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: 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: 53264189059,
size: 0.5,
source: 53264,
target: 189059 });
// 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: 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: 53264189004,
size: 0.5,
source: 53264,
target: 189004 });
// 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: 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: 53264189000,
size: 0.5,
source: 53264,
target: 189000 });
// 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: 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: 53264188996,
size: 0.5,
source: 53264,
target: 188996 });
// 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: 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: 53264188921,
size: 0.5,
source: 53264,
target: 188921 });
// 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: 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: 53264188915,
size: 0.5,
source: 53264,
target: 188915 });
// 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: 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: 53264188806,
size: 0.5,
source: 53264,
target: 188806 });
// 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: 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: 53264188804,
size: 0.5,
source: 53264,
target: 188804 });
// 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: 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: 53264188798,
size: 0.5,
source: 53264,
target: 188798 });
// 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: 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: 53264188779,
size: 0.5,
source: 53264,
target: 188779 });
// 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: 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: 53264188718,
size: 0.5,
source: 53264,
target: 188718 });
// 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: 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: 53264188703,
size: 0.5,
source: 53264,
target: 188703 });
// 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: 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: 53264188701,
size: 0.5,
source: 53264,
target: 188701 });
// 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: 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: 53264188699,
size: 0.5,
source: 53264,
target: 188699 });
// 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: 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: 53264188697,
size: 0.5,
source: 53264,
target: 188697 });
// 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: 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: 53264188694,
size: 0.5,
source: 53264,
target: 188694 });
// 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: 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: 53264188633,
size: 0.5,
source: 53264,
target: 188633 });
// 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: 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: 53264188536,
size: 0.5,
source: 53264,
target: 188536 });
// 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: 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: 53264188534,
size: 0.5,
source: 53264,
target: 188534 });
// 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: 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: 53264188532,
size: 0.5,
source: 53264,
target: 188532 });
// 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: 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: 53264188530,
size: 0.5,
source: 53264,
target: 188530 });
// 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: 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: 53264188527,
size: 0.5,
source: 53264,
target: 188527 });
// 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: 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: 53264188522,
size: 0.5,
source: 53264,
target: 188522 });
// 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: 188337,
label: 'MEMBER: Laura Meyer',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/10/research_pasteur-laura-meyer-laura-meyerup-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/laura-meyer/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264188337,
size: 0.5,
source: 53264,
target: 188337 });
// 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: 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: 53264188321,
size: 0.5,
source: 53264,
target: 188321 });
// 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: 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: 53264188270,
size: 0.5,
source: 53264,
target: 188270 });
// 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: 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: 53264188261,
size: 0.5,
source: 53264,
target: 188261 });
// 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: 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: 53264188247,
size: 0.5,
source: 53264,
target: 188247 });
// 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: 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: 53264188204,
size: 0.5,
source: 53264,
target: 188204 });
// 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: 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: 53264188128,
size: 0.5,
source: 53264,
target: 188128 });
// 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: 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: 53264188126,
size: 0.5,
source: 53264,
target: 188126 });
// 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: 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: 53264188118,
size: 0.5,
source: 53264,
target: 188118 });
// 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: 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: 53264188113,
size: 0.5,
source: 53264,
target: 188113 });
// 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: 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: 53264188111,
size: 0.5,
source: 53264,
target: 188111 });
// 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: 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: 53264188088,
size: 0.5,
source: 53264,
target: 188088 });
// 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: 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: 53264188083,
size: 0.5,
source: 53264,
target: 188083 });
// 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: 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: 53264188079,
size: 0.5,
source: 53264,
target: 188079 });
// 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: 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: 53264188060,
size: 0.5,
source: 53264,
target: 188060 });
// 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: 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: 53264188008,
size: 0.5,
source: 53264,
target: 188008 });
// 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: 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: 53264188006,
size: 0.5,
source: 53264,
target: 188006 });
// 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: 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: 53264188001,
size: 0.5,
source: 53264,
target: 188001 });
// 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: 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: 53264187990,
size: 0.5,
source: 53264,
target: 187990 });
// 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: 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: 53264187985,
size: 0.5,
source: 53264,
target: 187985 });
// 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: 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: 53264187931,
size: 0.5,
source: 53264,
target: 187931 });
// 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: 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: 53264187846,
size: 0.5,
source: 53264,
target: 187846 });
// 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: 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: 53264187839,
size: 0.5,
source: 53264,
target: 187839 });
// 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: 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: 53264187766,
size: 0.5,
source: 53264,
target: 187766 });
// 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: 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: 53264187666,
size: 0.5,
source: 53264,
target: 187666 });
// 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: 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: 53264187664,
size: 0.5,
source: 53264,
target: 187664 });
// 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: 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: 53264187643,
size: 0.5,
source: 53264,
target: 187643 });
// 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: 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-1611336633703-e1666190472344-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: 53264187636,
size: 0.5,
source: 53264,
target: 187636 });
// 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: 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: 53264187565,
size: 0.5,
source: 53264,
target: 187565 });
// 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: 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: 53264187502,
size: 0.5,
source: 53264,
target: 187502 });
// 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: 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: 53264187500,
size: 0.5,
source: 53264,
target: 187500 });
// 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: 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: 53264187296,
size: 0.5,
source: 53264,
target: 187296 });
// 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: 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: 53264187162,
size: 0.5,
source: 53264,
target: 187162 });
// 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: 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: 53264187160,
size: 0.5,
source: 53264,
target: 187160 });
// 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: 187122,
label: 'MEMBER: Mohamed Saco',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/mohamed-saco/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264187122,
size: 0.5,
source: 53264,
target: 187122 });
// 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: 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: 53264187008,
size: 0.5,
source: 53264,
target: 187008 });
// 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: 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: 53264186965,
size: 0.5,
source: 53264,
target: 186965 });
// 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: 186961,
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: 53264186961,
size: 0.5,
source: 53264,
target: 186961 });
// 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: 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: 53264186944,
size: 0.5,
source: 53264,
target: 186944 });
// 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: 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: 53264186561,
size: 0.5,
source: 53264,
target: 186561 });
// 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: 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: 53264186478,
size: 0.5,
source: 53264,
target: 186478 });
// 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: 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: 53264186471,
size: 0.5,
source: 53264,
target: 186471 });
// 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: 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: 53264186367,
size: 0.5,
source: 53264,
target: 186367 });
// 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: 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: 53264186364,
size: 0.5,
source: 53264,
target: 186364 });
// 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: 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: 53264186361,
size: 0.5,
source: 53264,
target: 186361 });
// 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: 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: 53264186346,
size: 0.5,
source: 53264,
target: 186346 });
// 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: 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: 53264186344,
size: 0.5,
source: 53264,
target: 186344 });
// 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: 186314,
label: 'MEMBER: Charlotte Perlant',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/charlotte-perlant/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264186314,
size: 0.5,
source: 53264,
target: 186314 });
// 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: 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: 53264186177,
size: 0.5,
source: 53264,
target: 186177 });
// 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: 186173,
label: 'MEMBER: Lina Cristancho Fajardo',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/lina-cristancho-fajardo/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264186173,
size: 0.5,
source: 53264,
target: 186173 });
// 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: 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: 53264186135,
size: 0.5,
source: 53264,
target: 186135 });
// 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: 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: 53264185792,
size: 0.5,
source: 53264,
target: 185792 });
// 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: 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: 53264185772,
size: 0.5,
source: 53264,
target: 185772 });
// 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: 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: 53264185770,
size: 0.5,
source: 53264,
target: 185770 });
// 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: 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: 53264185768,
size: 0.5,
source: 53264,
target: 185768 });
// 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: 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: 53264185324,
size: 0.5,
source: 53264,
target: 185324 });
// 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: 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: 53264185174,
size: 0.5,
source: 53264,
target: 185174 });
// 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: 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: 53264185144,
size: 0.5,
source: 53264,
target: 185144 });
// 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: 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: 53264184781,
size: 0.5,
source: 53264,
target: 184781 });
// 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: 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: 53264183961,
size: 0.5,
source: 53264,
target: 183961 });
// 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: 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: 53264183926,
size: 0.5,
source: 53264,
target: 183926 });
// 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: 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: 53264183925,
size: 0.5,
source: 53264,
target: 183925 });
// 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: 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: 53264183886,
size: 0.5,
source: 53264,
target: 183886 });
// 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: 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: 53264183755,
size: 0.5,
source: 53264,
target: 183755 });
// 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: 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: 53264183423,
size: 0.5,
source: 53264,
target: 183423 });
// 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: 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: 53264183396,
size: 0.5,
source: 53264,
target: 183396 });
// 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: 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: 53264183391,
size: 0.5,
source: 53264,
target: 183391 });
// 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: 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: 53264183349,
size: 0.5,
source: 53264,
target: 183349 });
// 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: 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: 53264183339,
size: 0.5,
source: 53264,
target: 183339 });
// 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: 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: 53264183300,
size: 0.5,
source: 53264,
target: 183300 });
// 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: 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: 53264183247,
size: 0.5,
source: 53264,
target: 183247 });
// 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: 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: 53264183216,
size: 0.5,
source: 53264,
target: 183216 });
// 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: 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: 53264183204,
size: 0.5,
source: 53264,
target: 183204 });
// 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: 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: 53264183185,
size: 0.5,
source: 53264,
target: 183185 });
// 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: 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: 53264183172,
size: 0.5,
source: 53264,
target: 183172 });
// 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: 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: 53264183075,
size: 0.5,
source: 53264,
target: 183075 });
// 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: 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: 53264183060,
size: 0.5,
source: 53264,
target: 183060 });
// 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: 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: 53264183036,
size: 0.5,
source: 53264,
target: 183036 });
// 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: 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: 53264183032,
size: 0.5,
source: 53264,
target: 183032 });
// 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: 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: 53264183019,
size: 0.5,
source: 53264,
target: 183019 });
// 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: 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: 53264182933,
size: 0.5,
source: 53264,
target: 182933 });
// 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: 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: 53264182796,
size: 0.5,
source: 53264,
target: 182796 });
// 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: 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: 53264182783,
size: 0.5,
source: 53264,
target: 182783 });
// 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: 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: 53264182499,
size: 0.5,
source: 53264,
target: 182499 });
// 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: 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: 53264182494,
size: 0.5,
source: 53264,
target: 182494 });
// 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: 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: 53264182404,
size: 0.5,
source: 53264,
target: 182404 });
// 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: 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: 53264182349,
size: 0.5,
source: 53264,
target: 182349 });
// 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: 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: 53264182330,
size: 0.5,
source: 53264,
target: 182330 });
// 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: 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: 53264182244,
size: 0.5,
source: 53264,
target: 182244 });
// 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: 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: 53264182069,
size: 0.5,
source: 53264,
target: 182069 });
// 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: 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: 53264182061,
size: 0.5,
source: 53264,
target: 182061 });
// 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: 182053,
label: 'MEMBER: Said Mougari',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/said-mougari/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264182053,
size: 0.5,
source: 53264,
target: 182053 });
// 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: 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: 53264182030,
size: 0.5,
source: 53264,
target: 182030 });
// 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: 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: 53264181977,
size: 0.5,
source: 53264,
target: 181977 });
// 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: 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: 53264181838,
size: 0.5,
source: 53264,
target: 181838 });
// 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: 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: 53264181829,
size: 0.5,
source: 53264,
target: 181829 });
// 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: 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: 53264181816,
size: 0.5,
source: 53264,
target: 181816 });
// 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: 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: 53264181804,
size: 0.5,
source: 53264,
target: 181804 });
// 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: 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: 53264181802,
size: 0.5,
source: 53264,
target: 181802 });
// 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: 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: 53264181759,
size: 0.5,
source: 53264,
target: 181759 });
// 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: 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: 53264181725,
size: 0.5,
source: 53264,
target: 181725 });
// 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: 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: 53264181630,
size: 0.5,
source: 53264,
target: 181630 });
// 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: 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: 53264181626,
size: 0.5,
source: 53264,
target: 181626 });
// 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: 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: 53264181615,
size: 0.5,
source: 53264,
target: 181615 });
// 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: 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: 53264181610,
size: 0.5,
source: 53264,
target: 181610 });
// 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: 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: 53264181605,
size: 0.5,
source: 53264,
target: 181605 });
// 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: 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: 53264181603,
size: 0.5,
source: 53264,
target: 181603 });
// 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: 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: 53264181590,
size: 0.5,
source: 53264,
target: 181590 });
// 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: 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: 53264181564,
size: 0.5,
source: 53264,
target: 181564 });
// 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: 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: 53264181530,
size: 0.5,
source: 53264,
target: 181530 });
// 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: 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: 53264181510,
size: 0.5,
source: 53264,
target: 181510 });
// 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: 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: 53264181500,
size: 0.5,
source: 53264,
target: 181500 });
// 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: 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: 53264181330,
size: 0.5,
source: 53264,
target: 181330 });
// 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: 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: 53264181288,
size: 0.5,
source: 53264,
target: 181288 });
// 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: 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: 53264181227,
size: 0.5,
source: 53264,
target: 181227 });
// 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: 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: 53264181064,
size: 0.5,
source: 53264,
target: 181064 });
// 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: 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: 53264181030,
size: 0.5,
source: 53264,
target: 181030 });
// 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: 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: 53264181015,
size: 0.5,
source: 53264,
target: 181015 });
// 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: 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: 53264181009,
size: 0.5,
source: 53264,
target: 181009 });
// 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: 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: 53264180861,
size: 0.5,
source: 53264,
target: 180861 });
// 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: 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: 53264180778,
size: 0.5,
source: 53264,
target: 180778 });
// 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: 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: 53264180552,
size: 0.5,
source: 53264,
target: 180552 });
// 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: 180548,
label: 'MEMBER: Giacomo Carloni',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/giacomo-carloni/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264180548,
size: 0.5,
source: 53264,
target: 180548 });
// 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: 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: 53264180544,
size: 0.5,
source: 53264,
target: 180544 });
// 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: 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: 53264180540,
size: 0.5,
source: 53264,
target: 180540 });
// 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: 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: 53264180527,
size: 0.5,
source: 53264,
target: 180527 });
// 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: 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: 53264180381,
size: 0.5,
source: 53264,
target: 180381 });
// 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: 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: 53264180377,
size: 0.5,
source: 53264,
target: 180377 });
// 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: 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: 53264180372,
size: 0.5,
source: 53264,
target: 180372 });
// 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: 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: 53264180363,
size: 0.5,
source: 53264,
target: 180363 });
// 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: 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: 53264180302,
size: 0.5,
source: 53264,
target: 180302 });
// 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: 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: 53264180288,
size: 0.5,
source: 53264,
target: 180288 });
// 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: 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/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264180186,
size: 0.5,
source: 53264,
target: 180186 });
// 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: 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: 53264180057,
size: 0.5,
source: 53264,
target: 180057 });
// 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: 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: 53264180051,
size: 0.5,
source: 53264,
target: 180051 });
// 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: 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: 53264180038,
size: 0.5,
source: 53264,
target: 180038 });
// 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: 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: 53264179673,
size: 0.5,
source: 53264,
target: 179673 });
// 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: 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: 53264179640,
size: 0.5,
source: 53264,
target: 179640 });
// 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: 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: 53264179630,
size: 0.5,
source: 53264,
target: 179630 });
// 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: 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: 53264179597,
size: 0.5,
source: 53264,
target: 179597 });
// 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: 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: 53264179571,
size: 0.5,
source: 53264,
target: 179571 });
// 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: 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: 53264179550,
size: 0.5,
source: 53264,
target: 179550 });
// 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: 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: 53264179542,
size: 0.5,
source: 53264,
target: 179542 });
// 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: 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: 53264179500,
size: 0.5,
source: 53264,
target: 179500 });
// 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: 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: 53264179429,
size: 0.5,
source: 53264,
target: 179429 });
// 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: 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: 53264179424,
size: 0.5,
source: 53264,
target: 179424 });
// 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: 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: 53264179335,
size: 0.5,
source: 53264,
target: 179335 });
// 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: 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: 53264179330,
size: 0.5,
source: 53264,
target: 179330 });
// 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: 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: 53264179328,
size: 0.5,
source: 53264,
target: 179328 });
// 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: 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: 53264179326,
size: 0.5,
source: 53264,
target: 179326 });
// 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: 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: 53264179157,
size: 0.5,
source: 53264,
target: 179157 });
// 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: 179089,
label: 'MEMBER: Gautham Sankara Narayana',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/gautham-sankara-narayana/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264179089,
size: 0.5,
source: 53264,
target: 179089 });
// 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: 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: 53264179080,
size: 0.5,
source: 53264,
target: 179080 });
// 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: 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: 53264178933,
size: 0.5,
source: 53264,
target: 178933 });
// 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: 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: 53264178743,
size: 0.5,
source: 53264,
target: 178743 });
// 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: 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: 53264178717,
size: 0.5,
source: 53264,
target: 178717 });
// 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: 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: 53264178703,
size: 0.5,
source: 53264,
target: 178703 });
// 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: 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: 53264178435,
size: 0.5,
source: 53264,
target: 178435 });
// 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: 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: 53264178217,
size: 0.5,
source: 53264,
target: 178217 });
// 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: 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: 53264178135,
size: 0.5,
source: 53264,
target: 178135 });
// 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: 177953,
label: 'MEMBER: Tolgahan Suat Sezen',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/03/research_pasteur-tolgahan-suat-sezen-img-9693-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/tolgahan-suat-sezen/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264177953,
size: 0.5,
source: 53264,
target: 177953 });
// 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: 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: 53264177905,
size: 0.5,
source: 53264,
target: 177905 });
// 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: 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: 53264177817,
size: 0.5,
source: 53264,
target: 177817 });
// 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: 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: 53264177766,
size: 0.5,
source: 53264,
target: 177766 });
// 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: 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: 53264177763,
size: 0.5,
source: 53264,
target: 177763 });
// 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: 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: 53264177760,
size: 0.5,
source: 53264,
target: 177760 });
// 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: 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: 53264177754,
size: 0.5,
source: 53264,
target: 177754 });
// 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: 177555,
label: 'MEMBER: Anqi Zhou',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/anqi-zhou/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264177555,
size: 0.5,
source: 53264,
target: 177555 });
// 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: 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: 53264177454,
size: 0.5,
source: 53264,
target: 177454 });
// 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: 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: 53264177442,
size: 0.5,
source: 53264,
target: 177442 });
// 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: 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: 53264177438,
size: 0.5,
source: 53264,
target: 177438 });
// 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: 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: 53264177376,
size: 0.5,
source: 53264,
target: 177376 });
// 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: 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: 53264177306,
size: 0.5,
source: 53264,
target: 177306 });
// 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: 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: 53264177300,
size: 0.5,
source: 53264,
target: 177300 });
// 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: 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: 53264177287,
size: 0.5,
source: 53264,
target: 177287 });
// 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: 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: 53264177169,
size: 0.5,
source: 53264,
target: 177169 });
// 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: 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: 53264177092,
size: 0.5,
source: 53264,
target: 177092 });
// 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: 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: 53264177062,
size: 0.5,
source: 53264,
target: 177062 });
// 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: 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: 53264177052,
size: 0.5,
source: 53264,
target: 177052 });
// 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: 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: 53264177009,
size: 0.5,
source: 53264,
target: 177009 });
// 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: 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: 53264176914,
size: 0.5,
source: 53264,
target: 176914 });
// 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: 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: 53264176907,
size: 0.5,
source: 53264,
target: 176907 });
// 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: 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: 53264176675,
size: 0.5,
source: 53264,
target: 176675 });
// 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: 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: 53264176668,
size: 0.5,
source: 53264,
target: 176668 });
// 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: 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/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264176617,
size: 0.5,
source: 53264,
target: 176617 });
// 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: 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: 53264176594,
size: 0.5,
source: 53264,
target: 176594 });
// 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: 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: 53264176578,
size: 0.5,
source: 53264,
target: 176578 });
// 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: 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: 53264176494,
size: 0.5,
source: 53264,
target: 176494 });
// 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: 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: 53264176461,
size: 0.5,
source: 53264,
target: 176461 });
// 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: 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: 53264176455,
size: 0.5,
source: 53264,
target: 176455 });
// 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: 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: 53264176374,
size: 0.5,
source: 53264,
target: 176374 });
// 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: 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: 53264176170,
size: 0.5,
source: 53264,
target: 176170 });
// 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: 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: 53264176108,
size: 0.5,
source: 53264,
target: 176108 });
// 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: 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: 53264176028,
size: 0.5,
source: 53264,
target: 176028 });
// 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: 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: 53264175996,
size: 0.5,
source: 53264,
target: 175996 });
// 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: 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: 53264175988,
size: 0.5,
source: 53264,
target: 175988 });
// 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: 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: 53264175973,
size: 0.5,
source: 53264,
target: 175973 });
// 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: 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: 53264175967,
size: 0.5,
source: 53264,
target: 175967 });
// 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: 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: 53264175948,
size: 0.5,
source: 53264,
target: 175948 });
// 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: 175838,
label: 'MEMBER: Maria Vangelatou',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/maria-vangelatou/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264175838,
size: 0.5,
source: 53264,
target: 175838 });
// 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: 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: 53264175836,
size: 0.5,
source: 53264,
target: 175836 });
// 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: 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: 53264175824,
size: 0.5,
source: 53264,
target: 175824 });
// 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: 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: 53264175733,
size: 0.5,
source: 53264,
target: 175733 });
// 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: 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: 53264175714,
size: 0.5,
source: 53264,
target: 175714 });
// 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: 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: 53264175649,
size: 0.5,
source: 53264,
target: 175649 });
// 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: 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: 53264175637,
size: 0.5,
source: 53264,
target: 175637 });
// 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: 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: 53264175634,
size: 0.5,
source: 53264,
target: 175634 });
// 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: 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: 53264175588,
size: 0.5,
source: 53264,
target: 175588 });
// 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: 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: 53264175566,
size: 0.5,
source: 53264,
target: 175566 });
// 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: 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: 53264175518,
size: 0.5,
source: 53264,
target: 175518 });
// 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: 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: 53264175516,
size: 0.5,
source: 53264,
target: 175516 });
// 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: 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: 53264175505,
size: 0.5,
source: 53264,
target: 175505 });
// 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: 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: 53264175486,
size: 0.5,
source: 53264,
target: 175486 });
// 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: 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: 53264175222,
size: 0.5,
source: 53264,
target: 175222 });
// 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: 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: 53264175186,
size: 0.5,
source: 53264,
target: 175186 });
// 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: 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: 53264175178,
size: 0.5,
source: 53264,
target: 175178 });
// 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: 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: 53264175157,
size: 0.5,
source: 53264,
target: 175157 });
// 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: 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: 53264175155,
size: 0.5,
source: 53264,
target: 175155 });
// 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: 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: 53264175153,
size: 0.5,
source: 53264,
target: 175153 });
// 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: 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: 53264175141,
size: 0.5,
source: 53264,
target: 175141 });
// 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: 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: 53264175061,
size: 0.5,
source: 53264,
target: 175061 });
// 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: 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: 53264175036,
size: 0.5,
source: 53264,
target: 175036 });
// 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: 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: 53264175033,
size: 0.5,
source: 53264,
target: 175033 });
// 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: 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: 53264175019,
size: 0.5,
source: 53264,
target: 175019 });
// 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: 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: 53264174861,
size: 0.5,
source: 53264,
target: 174861 });
// 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: 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: 53264174813,
size: 0.5,
source: 53264,
target: 174813 });
// 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: 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: 53264174799,
size: 0.5,
source: 53264,
target: 174799 });
// 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: 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: 53264174797,
size: 0.5,
source: 53264,
target: 174797 });
// 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: 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: 53264174794,
size: 0.5,
source: 53264,
target: 174794 });
// 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: 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: 53264174791,
size: 0.5,
source: 53264,
target: 174791 });
// 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: 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: 53264174783,
size: 0.5,
source: 53264,
target: 174783 });
// 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: 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: 53264174776,
size: 0.5,
source: 53264,
target: 174776 });
// 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: 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: 53264174774,
size: 0.5,
source: 53264,
target: 174774 });
// 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: 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: 53264174771,
size: 0.5,
source: 53264,
target: 174771 });
// 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: 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: 53264174768,
size: 0.5,
source: 53264,
target: 174768 });
// 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: 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: 53264174765,
size: 0.5,
source: 53264,
target: 174765 });
// 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: 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: 53264174732,
size: 0.5,
source: 53264,
target: 174732 });
// 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: 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: 53264174719,
size: 0.5,
source: 53264,
target: 174719 });
// 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: 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: 53264174686,
size: 0.5,
source: 53264,
target: 174686 });
// 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: 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: 53264174637,
size: 0.5,
source: 53264,
target: 174637 });
// 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: 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: 53264174635,
size: 0.5,
source: 53264,
target: 174635 });
// 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: 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: 53264174489,
size: 0.5,
source: 53264,
target: 174489 });
// 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: 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: 53264174333,
size: 0.5,
source: 53264,
target: 174333 });
// 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: 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: 53264174319,
size: 0.5,
source: 53264,
target: 174319 });
// 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: 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: 53264174288,
size: 0.5,
source: 53264,
target: 174288 });
// 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: 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: 53264174098,
size: 0.5,
source: 53264,
target: 174098 });
// 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: 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: 53264174074,
size: 0.5,
source: 53264,
target: 174074 });
// 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: 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: 53264174044,
size: 0.5,
source: 53264,
target: 174044 });
// 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: 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: 53264174012,
size: 0.5,
source: 53264,
target: 174012 });
// 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: 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: 53264173939,
size: 0.5,
source: 53264,
target: 173939 });
// 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: 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: 53264173908,
size: 0.5,
source: 53264,
target: 173908 });
// 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: 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: 53264173902,
size: 0.5,
source: 53264,
target: 173902 });
// 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: 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: 53264173898,
size: 0.5,
source: 53264,
target: 173898 });
// 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: 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: 53264173896,
size: 0.5,
source: 53264,
target: 173896 });
// 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: 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: 53264173892,
size: 0.5,
source: 53264,
target: 173892 });
// 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: 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: 53264173890,
size: 0.5,
source: 53264,
target: 173890 });
// 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: 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: 53264173888,
size: 0.5,
source: 53264,
target: 173888 });
// 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: 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: 53264173886,
size: 0.5,
source: 53264,
target: 173886 });
// 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: 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: 53264173856,
size: 0.5,
source: 53264,
target: 173856 });
// 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: 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: 53264173846,
size: 0.5,
source: 53264,
target: 173846 });
// 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: 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: 53264173823,
size: 0.5,
source: 53264,
target: 173823 });
// 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: 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: 53264173805,
size: 0.5,
source: 53264,
target: 173805 });
// 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: 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: 53264173645,
size: 0.5,
source: 53264,
target: 173645 });
// 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: 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: 53264173607,
size: 0.5,
source: 53264,
target: 173607 });
// 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: 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: 53264173598,
size: 0.5,
source: 53264,
target: 173598 });
// 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: 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: 53264173443,
size: 0.5,
source: 53264,
target: 173443 });
// 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: 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: 53264173431,
size: 0.5,
source: 53264,
target: 173431 });
// 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: 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: 53264173426,
size: 0.5,
source: 53264,
target: 173426 });
// 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: 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-20191226-141634-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: 53264173373,
size: 0.5,
source: 53264,
target: 173373 });
// 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: 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: 53264173366,
size: 0.5,
source: 53264,
target: 173366 });
// 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: 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: 53264173358,
size: 0.5,
source: 53264,
target: 173358 });
// 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: 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: 53264173355,
size: 0.5,
source: 53264,
target: 173355 });
// 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: 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: 53264173181,
size: 0.5,
source: 53264,
target: 173181 });
// 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: 173178,
label: 'MEMBER: Yidan Wang',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2022/01/research_pasteur-cv-yidan-wang-1-e1641303031282-150x150.png',
page_url: 'https://research.pasteur.fr/en/member/yidan-wang/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264173178,
size: 0.5,
source: 53264,
target: 173178 });
// 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: 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: 53264173142,
size: 0.5,
source: 53264,
target: 173142 });
// 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: 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: 53264172924,
size: 0.5,
source: 53264,
target: 172924 });
// 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: 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: 53264172520,
size: 0.5,
source: 53264,
target: 172520 });
// 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: 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: 53264172503,
size: 0.5,
source: 53264,
target: 172503 });
// 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: 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: 53264172360,
size: 0.5,
source: 53264,
target: 172360 });
// 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: 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: 53264171817,
size: 0.5,
source: 53264,
target: 171817 });
// 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: 171674,
label: 'MEMBER: Claire Lagu',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/12/research_pasteur-claire-lagu-dsc-7137-id-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/claire-lagu/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264171674,
size: 0.5,
source: 53264,
target: 171674 });
// 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: 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: 53264171577,
size: 0.5,
source: 53264,
target: 171577 });
// 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: 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: 53264171436,
size: 0.5,
source: 53264,
target: 171436 });
// 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: 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: 53264171311,
size: 0.5,
source: 53264,
target: 171311 });
// 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: 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: 53264171243,
size: 0.5,
source: 53264,
target: 171243 });
// 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: 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: 53264171008,
size: 0.5,
source: 53264,
target: 171008 });
// 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: 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: 53264170909,
size: 0.5,
source: 53264,
target: 170909 });
// 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: 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: 53264170519,
size: 0.5,
source: 53264,
target: 170519 });
// 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: 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: 53264170355,
size: 0.5,
source: 53264,
target: 170355 });
// 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: 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: 53264170295,
size: 0.5,
source: 53264,
target: 170295 });
// 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: 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: 53264170262,
size: 0.5,
source: 53264,
target: 170262 });
// 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: 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: 53264170256,
size: 0.5,
source: 53264,
target: 170256 });
// 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: 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: 53264170251,
size: 0.5,
source: 53264,
target: 170251 });
// 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: 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: 53264170226,
size: 0.5,
source: 53264,
target: 170226 });
// 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: 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: 53264170221,
size: 0.5,
source: 53264,
target: 170221 });
// 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: 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: 53264170205,
size: 0.5,
source: 53264,
target: 170205 });
// 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: 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: 53264170130,
size: 0.5,
source: 53264,
target: 170130 });
// 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: 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: 53264170085,
size: 0.5,
source: 53264,
target: 170085 });
// 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: 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: 53264170041,
size: 0.5,
source: 53264,
target: 170041 });
// 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: 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: 53264169942,
size: 0.5,
source: 53264,
target: 169942 });
// 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: 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: 53264169931,
size: 0.5,
source: 53264,
target: 169931 });
// 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: 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: 53264169927,
size: 0.5,
source: 53264,
target: 169927 });
// 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: 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: 53264169702,
size: 0.5,
source: 53264,
target: 169702 });
// 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: 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: 53264169452,
size: 0.5,
source: 53264,
target: 169452 });
// 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: 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: 53264169447,
size: 0.5,
source: 53264,
target: 169447 });
// 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: 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: 53264169385,
size: 0.5,
source: 53264,
target: 169385 });
// 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: 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: 53264169378,
size: 0.5,
source: 53264,
target: 169378 });
// 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: 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: 53264169367,
size: 0.5,
source: 53264,
target: 169367 });
// 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: 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: 53264169153,
size: 0.5,
source: 53264,
target: 169153 });
// 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: 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: 53264169070,
size: 0.5,
source: 53264,
target: 169070 });
// 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: 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: 53264169053,
size: 0.5,
source: 53264,
target: 169053 });
// 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: 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: 53264168974,
size: 0.5,
source: 53264,
target: 168974 });
// 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: 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: 53264168913,
size: 0.5,
source: 53264,
target: 168913 });
// 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: 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: 53264168834,
size: 0.5,
source: 53264,
target: 168834 });
// 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: 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: 53264168825,
size: 0.5,
source: 53264,
target: 168825 });
// 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: 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: 53264168744,
size: 0.5,
source: 53264,
target: 168744 });
// 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: 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: 53264168665,
size: 0.5,
source: 53264,
target: 168665 });
// 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: 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: 53264168653,
size: 0.5,
source: 53264,
target: 168653 });
// 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: 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: 53264168648,
size: 0.5,
source: 53264,
target: 168648 });
// 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: 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: 53264168596,
size: 0.5,
source: 53264,
target: 168596 });
// 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: 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: 53264168566,
size: 0.5,
source: 53264,
target: 168566 });
// 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: 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: 53264168557,
size: 0.5,
source: 53264,
target: 168557 });
// 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: 168547,
label: 'MEMBER: Léa Avon',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/lea-avon/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264168547,
size: 0.5,
source: 53264,
target: 168547 });
// 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: 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: 53264168540,
size: 0.5,
source: 53264,
target: 168540 });
// 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: 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: 53264168444,
size: 0.5,
source: 53264,
target: 168444 });
// 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: 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: 53264168431,
size: 0.5,
source: 53264,
target: 168431 });
// 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: 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: 53264168418,
size: 0.5,
source: 53264,
target: 168418 });
// 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: 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: 53264168405,
size: 0.5,
source: 53264,
target: 168405 });
// 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: 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: 53264168402,
size: 0.5,
source: 53264,
target: 168402 });
// 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: 168383,
label: 'MEMBER: Sophie Lavalette-Levy',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/sophie-lavalette-levy/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264168383,
size: 0.5,
source: 53264,
target: 168383 });
// 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: 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: 53264168380,
size: 0.5,
source: 53264,
target: 168380 });
// 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: 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: 53264168376,
size: 0.5,
source: 53264,
target: 168376 });
// 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: 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: 53264168361,
size: 0.5,
source: 53264,
target: 168361 });
// 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: 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: 53264168320,
size: 0.5,
source: 53264,
target: 168320 });
// 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: 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: 53264168308,
size: 0.5,
source: 53264,
target: 168308 });
// 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: 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: 53264168241,
size: 0.5,
source: 53264,
target: 168241 });
// 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: 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: 53264168180,
size: 0.5,
source: 53264,
target: 168180 });
// 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: 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: 53264168177,
size: 0.5,
source: 53264,
target: 168177 });
// 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: 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: 53264168120,
size: 0.5,
source: 53264,
target: 168120 });
// 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: 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: 53264168051,
size: 0.5,
source: 53264,
target: 168051 });
// 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: 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: 53264167895,
size: 0.5,
source: 53264,
target: 167895 });
// 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: 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: 53264167764,
size: 0.5,
source: 53264,
target: 167764 });
// 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: 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: 53264167756,
size: 0.5,
source: 53264,
target: 167756 });
// 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: 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: 53264167546,
size: 0.5,
source: 53264,
target: 167546 });
// 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: 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: 53264167431,
size: 0.5,
source: 53264,
target: 167431 });
// 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: 167322,
label: 'MEMBER: Sowmya Rama',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2021/09/research_pasteur-sowmya-rama-sowmya-pic-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/sowmya-rama/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264167322,
size: 0.5,
source: 53264,
target: 167322 });
// 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: 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: 53264167275,
size: 0.5,
source: 53264,
target: 167275 });
// 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: 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: 53264167165,
size: 0.5,
source: 53264,
target: 167165 });
// 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: 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: 53264167106,
size: 0.5,
source: 53264,
target: 167106 });
// 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: 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: 53264167086,
size: 0.5,
source: 53264,
target: 167086 });
// 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: 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: 53264167056,
size: 0.5,
source: 53264,
target: 167056 });
// 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: 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: 53264166881,
size: 0.5,
source: 53264,
target: 166881 });
// 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: 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: 53264166839,
size: 0.5,
source: 53264,
target: 166839 });
// 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: 166832,
label: 'MEMBER: Romain Thebeaud',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/romain-thebeaud/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264166832,
size: 0.5,
source: 53264,
target: 166832 });
// 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: 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: 53264166786,
size: 0.5,
source: 53264,
target: 166786 });
// 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: 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: 53264166541,
size: 0.5,
source: 53264,
target: 166541 });
// 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: 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-dossantos-camille-06-mdweb-e1669144934642-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: 53264166537,
size: 0.5,
source: 53264,
target: 166537 });
// 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: 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: 53264166535,
size: 0.5,
source: 53264,
target: 166535 });
// 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: 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: 53264166309,
size: 0.5,
source: 53264,
target: 166309 });
// 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: 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: 53264166170,
size: 0.5,
source: 53264,
target: 166170 });
// 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: 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: 53264166168,
size: 0.5,
source: 53264,
target: 166168 });
// 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: 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: 53264166101,
size: 0.5,
source: 53264,
target: 166101 });
// 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: 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: 53264166097,
size: 0.5,
source: 53264,
target: 166097 });
// 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: 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: 53264166075,
size: 0.5,
source: 53264,
target: 166075 });
// 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: 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: 53264165989,
size: 0.5,
source: 53264,
target: 165989 });
// 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: 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: 53264165941,
size: 0.5,
source: 53264,
target: 165941 });
// 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: 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: 53264165873,
size: 0.5,
source: 53264,
target: 165873 });
// 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: 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: 53264165850,
size: 0.5,
source: 53264,
target: 165850 });
// 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: 165816,
label: 'MEMBER: Séverine André',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/severine-andre/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264165816,
size: 0.5,
source: 53264,
target: 165816 });
// 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: 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: 53264165707,
size: 0.5,
source: 53264,
target: 165707 });
// 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: 165612,
label: 'MEMBER: Anthony Deust',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/anthony-deust/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264165612,
size: 0.5,
source: 53264,
target: 165612 });
// 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: 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: 53264165508,
size: 0.5,
source: 53264,
target: 165508 });
// 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: 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: 53264165469,
size: 0.5,
source: 53264,
target: 165469 });
// 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: 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: 53264165455,
size: 0.5,
source: 53264,
target: 165455 });
// 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: 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: 53264165399,
size: 0.5,
source: 53264,
target: 165399 });
// 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: 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: 53264165385,
size: 0.5,
source: 53264,
target: 165385 });
// 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: 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: 53264165290,
size: 0.5,
source: 53264,
target: 165290 });
// 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: 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: 53264165229,
size: 0.5,
source: 53264,
target: 165229 });
// 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: 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: 53264165146,
size: 0.5,
source: 53264,
target: 165146 });
// 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: 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: 53264165143,
size: 0.5,
source: 53264,
target: 165143 });
// 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: 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: 53264165141,
size: 0.5,
source: 53264,
target: 165141 });
// 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: 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: 53264165133,
size: 0.5,
source: 53264,
target: 165133 });
// 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: 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: 53264165008,
size: 0.5,
source: 53264,
target: 165008 });
// 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: 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: 53264164893,
size: 0.5,
source: 53264,
target: 164893 });
// 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: 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: 53264164891,
size: 0.5,
source: 53264,
target: 164891 });
// 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: 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: 53264164883,
size: 0.5,
source: 53264,
target: 164883 });
// 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: 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: 53264164880,
size: 0.5,
source: 53264,
target: 164880 });
// 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: 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: 53264164878,
size: 0.5,
source: 53264,
target: 164878 });
// 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: 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: 53264164875,
size: 0.5,
source: 53264,
target: 164875 });
// 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: 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: 53264164869,
size: 0.5,
source: 53264,
target: 164869 });
// 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: 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: 53264164867,
size: 0.5,
source: 53264,
target: 164867 });
// 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: 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: 53264164865,
size: 0.5,
source: 53264,
target: 164865 });
// 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: 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: 53264164847,
size: 0.5,
source: 53264,
target: 164847 });
// 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: 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: 53264164842,
size: 0.5,
source: 53264,
target: 164842 });
// 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: 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: 53264164837,
size: 0.5,
source: 53264,
target: 164837 });
// 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: 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: 53264164797,
size: 0.5,
source: 53264,
target: 164797 });
// 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: 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: 53264164792,
size: 0.5,
source: 53264,
target: 164792 });
// 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: 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: 53264164788,
size: 0.5,
source: 53264,
target: 164788 });
// 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: 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: 53264164786,
size: 0.5,
source: 53264,
target: 164786 });
// 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: 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: 53264164784,
size: 0.5,
source: 53264,
target: 164784 });
// 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: 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: 53264164782,
size: 0.5,
source: 53264,
target: 164782 });
// 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: 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: 53264164779,
size: 0.5,
source: 53264,
target: 164779 });
// 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: 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: 53264164770,
size: 0.5,
source: 53264,
target: 164770 });
// 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: 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: 53264164767,
size: 0.5,
source: 53264,
target: 164767 });
// 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: 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: 53264164765,
size: 0.5,
source: 53264,
target: 164765 });
// 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: 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: 53264164763,
size: 0.5,
source: 53264,
target: 164763 });
// 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: 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: 53264164759,
size: 0.5,
source: 53264,
target: 164759 });
// 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: 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: 53264164747,
size: 0.5,
source: 53264,
target: 164747 });
// 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: 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: 53264164742,
size: 0.5,
source: 53264,
target: 164742 });
// 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: 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: 53264164738,
size: 0.5,
source: 53264,
target: 164738 });
// 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: 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: 53264164736,
size: 0.5,
source: 53264,
target: 164736 });
// 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: 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: 53264164732,
size: 0.5,
source: 53264,
target: 164732 });
// 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: 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: 53264164730,
size: 0.5,
source: 53264,
target: 164730 });
// 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: 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: 53264164684,
size: 0.5,
source: 53264,
target: 164684 });
// 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: 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: 53264164705,
size: 0.5,
source: 53264,
target: 164705 });
// 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: 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: 53264164680,
size: 0.5,
source: 53264,
target: 164680 });
// 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: 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: 53264164604,
size: 0.5,
source: 53264,
target: 164604 });
// 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: 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: 53264164602,
size: 0.5,
source: 53264,
target: 164602 });
// 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: 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: 53264164600,
size: 0.5,
source: 53264,
target: 164600 });
// 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: 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: 53264164587,
size: 0.5,
source: 53264,
target: 164587 });
// 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: 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: 53264164458,
size: 0.5,
source: 53264,
target: 164458 });
// 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: 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: 53264164411,
size: 0.5,
source: 53264,
target: 164411 });
// 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: 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: 53264164409,
size: 0.5,
source: 53264,
target: 164409 });
// 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: 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: 53264164390,
size: 0.5,
source: 53264,
target: 164390 });
// 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: 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: 53264164388,
size: 0.5,
source: 53264,
target: 164388 });
// 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: 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: 53264164220,
size: 0.5,
source: 53264,
target: 164220 });
// 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: 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: 53264163451,
size: 0.5,
source: 53264,
target: 163451 });
// 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: 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: 53264163287,
size: 0.5,
source: 53264,
target: 163287 });
// 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: 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: 53264162993,
size: 0.5,
source: 53264,
target: 162993 });
// 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: 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: 53264162938,
size: 0.5,
source: 53264,
target: 162938 });
// 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: 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: 53264162798,
size: 0.5,
source: 53264,
target: 162798 });
// 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: 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: 53264162795,
size: 0.5,
source: 53264,
target: 162795 });
// 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: 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: 53264162792,
size: 0.5,
source: 53264,
target: 162792 });
// 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: 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: 53264162683,
size: 0.5,
source: 53264,
target: 162683 });
// 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: 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: 53264162672,
size: 0.5,
source: 53264,
target: 162672 });
// 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: 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: 53264162241,
size: 0.5,
source: 53264,
target: 162241 });
// 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: 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: 53264162154,
size: 0.5,
source: 53264,
target: 162154 });
// 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: 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: 53264162147,
size: 0.5,
source: 53264,
target: 162147 });
// 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: 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: 53264162125,
size: 0.5,
source: 53264,
target: 162125 });
// 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: 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: 53264161963,
size: 0.5,
source: 53264,
target: 161963 });
// 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: 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: 53264161739,
size: 0.5,
source: 53264,
target: 161739 });
// 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: 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: 53264161624,
size: 0.5,
source: 53264,
target: 161624 });
// 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: 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: 53264161614,
size: 0.5,
source: 53264,
target: 161614 });
// 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: 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: 53264161611,
size: 0.5,
source: 53264,
target: 161611 });
// 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: 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: 53264161585,
size: 0.5,
source: 53264,
target: 161585 });
// 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: 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: 53264161527,
size: 0.5,
source: 53264,
target: 161527 });
// 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: 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: 53264161417,
size: 0.5,
source: 53264,
target: 161417 });
// 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: 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: 53264161295,
size: 0.5,
source: 53264,
target: 161295 });
// 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: 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: 53264161252,
size: 0.5,
source: 53264,
target: 161252 });
// 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: 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: 53264161202,
size: 0.5,
source: 53264,
target: 161202 });
// 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: 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: 53264161136,
size: 0.5,
source: 53264,
target: 161136 });
// 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: 161089,
label: 'MEMBER: Florian Dubois',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/florian-dubois/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264161089,
size: 0.5,
source: 53264,
target: 161089 });
// 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: 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: 53264160823,
size: 0.5,
source: 53264,
target: 160823 });
// 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: 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: 53264160766,
size: 0.5,
source: 53264,
target: 160766 });
// 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: 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: 53264160712,
size: 0.5,
source: 53264,
target: 160712 });
// 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: 160642,
label: 'MEMBER: Auriane Monestier',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/auriane-monestier/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264160642,
size: 0.5,
source: 53264,
target: 160642 });
// 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: 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: 53264160592,
size: 0.5,
source: 53264,
target: 160592 });
// 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: 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: 53264160438,
size: 0.5,
source: 53264,
target: 160438 });
// 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: 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: 53264160326,
size: 0.5,
source: 53264,
target: 160326 });
// 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: 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: 53264160136,
size: 0.5,
source: 53264,
target: 160136 });
// 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: 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: 53264160132,
size: 0.5,
source: 53264,
target: 160132 });
// 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: 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: 53264160094,
size: 0.5,
source: 53264,
target: 160094 });
// 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: 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: 53264160037,
size: 0.5,
source: 53264,
target: 160037 });
// 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: 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: 53264159595,
size: 0.5,
source: 53264,
target: 159595 });
// 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: 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: 53264159525,
size: 0.5,
source: 53264,
target: 159525 });
// 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: 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: 53264159257,
size: 0.5,
source: 53264,
target: 159257 });
// 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: 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: 53264159154,
size: 0.5,
source: 53264,
target: 159154 });
// 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: 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: 53264158665,
size: 0.5,
source: 53264,
target: 158665 });
// 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: 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: 53264158433,
size: 0.5,
source: 53264,
target: 158433 });
// 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: 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: 53264158373,
size: 0.5,
source: 53264,
target: 158373 });
// 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: 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: 53264158340,
size: 0.5,
source: 53264,
target: 158340 });
// 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: 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: 53264158222,
size: 0.5,
source: 53264,
target: 158222 });
// 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: 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: 53264158063,
size: 0.5,
source: 53264,
target: 158063 });
// 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: 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: 53264157991,
size: 0.5,
source: 53264,
target: 157991 });
// 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: 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: 53264157904,
size: 0.5,
source: 53264,
target: 157904 });
// 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: 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: 53264157885,
size: 0.5,
source: 53264,
target: 157885 });
// 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: 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: 53264157879,
size: 0.5,
source: 53264,
target: 157879 });
// 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: 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: 53264157840,
size: 0.5,
source: 53264,
target: 157840 });
// 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: 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: 53264157808,
size: 0.5,
source: 53264,
target: 157808 });
// 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: 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: 53264157794,
size: 0.5,
source: 53264,
target: 157794 });
// 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: 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: 53264157792,
size: 0.5,
source: 53264,
target: 157792 });
// 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: 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: 53264157672,
size: 0.5,
source: 53264,
target: 157672 });
// 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: 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: 53264157511,
size: 0.5,
source: 53264,
target: 157511 });
// 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: 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: 53264157508,
size: 0.5,
source: 53264,
target: 157508 });
// 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: 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: 53264157481,
size: 0.5,
source: 53264,
target: 157481 });
// 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: 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: 53264157457,
size: 0.5,
source: 53264,
target: 157457 });
// 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: 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: 53264157215,
size: 0.5,
source: 53264,
target: 157215 });
// 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: 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: 53264157138,
size: 0.5,
source: 53264,
target: 157138 });
// 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: 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: 53264156967,
size: 0.5,
source: 53264,
target: 156967 });
// 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: 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: 53264156918,
size: 0.5,
source: 53264,
target: 156918 });
// 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: 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: 53264156871,
size: 0.5,
source: 53264,
target: 156871 });
// 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: 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: 53264156840,
size: 0.5,
source: 53264,
target: 156840 });
// 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: 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: 53264156820,
size: 0.5,
source: 53264,
target: 156820 });
// 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: 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: 53264156796,
size: 0.5,
source: 53264,
target: 156796 });
// 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: 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: 53264156792,
size: 0.5,
source: 53264,
target: 156792 });
// 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: 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: 53264156790,
size: 0.5,
source: 53264,
target: 156790 });
// 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: 156779,
label: 'MEMBER: Guillaume Dugied',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/guillaume-dugied/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264156779,
size: 0.5,
source: 53264,
target: 156779 });
// 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: 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: 53264156774,
size: 0.5,
source: 53264,
target: 156774 });
// 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: 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: 53264156767,
size: 0.5,
source: 53264,
target: 156767 });
// 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: 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: 53264156728,
size: 0.5,
source: 53264,
target: 156728 });
// 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: 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: 53264156713,
size: 0.5,
source: 53264,
target: 156713 });
// 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: 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: 53264156483,
size: 0.5,
source: 53264,
target: 156483 });
// 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: 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: 53264156471,
size: 0.5,
source: 53264,
target: 156471 });
// 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: 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: 53264156468,
size: 0.5,
source: 53264,
target: 156468 });
// 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: 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: 53264156466,
size: 0.5,
source: 53264,
target: 156466 });
// 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: 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: 53264156464,
size: 0.5,
source: 53264,
target: 156464 });
// 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: 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: 53264156432,
size: 0.5,
source: 53264,
target: 156432 });
// 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: 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: 53264156104,
size: 0.5,
source: 53264,
target: 156104 });
// 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: 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: 53264156018,
size: 0.5,
source: 53264,
target: 156018 });
// 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: 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: 53264155945,
size: 0.5,
source: 53264,
target: 155945 });
// 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: 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: 53264155894,
size: 0.5,
source: 53264,
target: 155894 });
// 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: 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: 53264155822,
size: 0.5,
source: 53264,
target: 155822 });
// 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: 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: 53264155816,
size: 0.5,
source: 53264,
target: 155816 });
// 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: 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: 53264155810,
size: 0.5,
source: 53264,
target: 155810 });
// 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: 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: 53264155711,
size: 0.5,
source: 53264,
target: 155711 });
// 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: 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: 53264155550,
size: 0.5,
source: 53264,
target: 155550 });
// 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: 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: 53264155547,
size: 0.5,
source: 53264,
target: 155547 });
// 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: 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: 53264155513,
size: 0.5,
source: 53264,
target: 155513 });
// 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: 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: 53264155472,
size: 0.5,
source: 53264,
target: 155472 });
// 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: 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: 53264155442,
size: 0.5,
source: 53264,
target: 155442 });
// 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: 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: 53264155440,
size: 0.5,
source: 53264,
target: 155440 });
// 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: 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: 53264155410,
size: 0.5,
source: 53264,
target: 155410 });
// 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: 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: 53264155147,
size: 0.5,
source: 53264,
target: 155147 });
// 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: 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: 53264155052,
size: 0.5,
source: 53264,
target: 155052 });
// 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: 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: 53264155040,
size: 0.5,
source: 53264,
target: 155040 });
// 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: 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: 53264154942,
size: 0.5,
source: 53264,
target: 154942 });
// 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: 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: 53264154937,
size: 0.5,
source: 53264,
target: 154937 });
// 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: 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: 53264154912,
size: 0.5,
source: 53264,
target: 154912 });
// 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: 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: 53264154863,
size: 0.5,
source: 53264,
target: 154863 });
// 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: 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: 53264154741,
size: 0.5,
source: 53264,
target: 154741 });
// 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: 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: 53264154725,
size: 0.5,
source: 53264,
target: 154725 });
// 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: 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: 53264154722,
size: 0.5,
source: 53264,
target: 154722 });
// 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: 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: 53264154644,
size: 0.5,
source: 53264,
target: 154644 });
// 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: 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: 53264154642,
size: 0.5,
source: 53264,
target: 154642 });
// 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: 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: 53264154639,
size: 0.5,
source: 53264,
target: 154639 });
// 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: 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: 53264154625,
size: 0.5,
source: 53264,
target: 154625 });
// 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: 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: 53264154612,
size: 0.5,
source: 53264,
target: 154612 });
// 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: 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: 53264154496,
size: 0.5,
source: 53264,
target: 154496 });
// 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: 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: 53264154492,
size: 0.5,
source: 53264,
target: 154492 });
// 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: 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: 53264154480,
size: 0.5,
source: 53264,
target: 154480 });
// 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: 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: 53264154423,
size: 0.5,
source: 53264,
target: 154423 });
// 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: 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: 53264154420,
size: 0.5,
source: 53264,
target: 154420 });
// 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: 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: 53264154414,
size: 0.5,
source: 53264,
target: 154414 });
// 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: 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: 53264154328,
size: 0.5,
source: 53264,
target: 154328 });
// 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: 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: 53264154258,
size: 0.5,
source: 53264,
target: 154258 });
// 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: 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: 53264154252,
size: 0.5,
source: 53264,
target: 154252 });
// 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: 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: 53264154241,
size: 0.5,
source: 53264,
target: 154241 });
// 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: 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: 53264154194,
size: 0.5,
source: 53264,
target: 154194 });
// 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: 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: 53264154176,
size: 0.5,
source: 53264,
target: 154176 });
// 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: 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: 53264154095,
size: 0.5,
source: 53264,
target: 154095 });
// 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: 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: 53264154009,
size: 0.5,
source: 53264,
target: 154009 });
// 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: 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: 53264153903,
size: 0.5,
source: 53264,
target: 153903 });
// 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: 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: 53264153888,
size: 0.5,
source: 53264,
target: 153888 });
// 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: 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: 53264153863,
size: 0.5,
source: 53264,
target: 153863 });
// 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: 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: 53264153812,
size: 0.5,
source: 53264,
target: 153812 });
// 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: 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: 53264153806,
size: 0.5,
source: 53264,
target: 153806 });
// 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: 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: 53264153773,
size: 0.5,
source: 53264,
target: 153773 });
// 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: 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: 53264153747,
size: 0.5,
source: 53264,
target: 153747 });
// 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: 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: 53264153666,
size: 0.5,
source: 53264,
target: 153666 });
// 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: 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: 53264153534,
size: 0.5,
source: 53264,
target: 153534 });
// 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: 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: 53264153492,
size: 0.5,
source: 53264,
target: 153492 });
// 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: 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: 53264153475,
size: 0.5,
source: 53264,
target: 153475 });
// 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: 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: 53264153472,
size: 0.5,
source: 53264,
target: 153472 });
// 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: 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: 53264153359,
size: 0.5,
source: 53264,
target: 153359 });
// 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: 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: 53264153352,
size: 0.5,
source: 53264,
target: 153352 });
// 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: 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: 53264153294,
size: 0.5,
source: 53264,
target: 153294 });
// 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: 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: 53264153144,
size: 0.5,
source: 53264,
target: 153144 });
// 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: 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: 53264153127,
size: 0.5,
source: 53264,
target: 153127 });
// 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: 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: 53264153026,
size: 0.5,
source: 53264,
target: 153026 });
// 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: 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: 53264153005,
size: 0.5,
source: 53264,
target: 153005 });
// 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: 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: 53264152964,
size: 0.5,
source: 53264,
target: 152964 });
// 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: 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: 53264152955,
size: 0.5,
source: 53264,
target: 152955 });
// 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: 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: 53264152937,
size: 0.5,
source: 53264,
target: 152937 });
// 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: 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: 53264152934,
size: 0.5,
source: 53264,
target: 152934 });
// 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: 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: 53264152905,
size: 0.5,
source: 53264,
target: 152905 });
// 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: 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: 53264152903,
size: 0.5,
source: 53264,
target: 152903 });
// 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: 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: 53264152228,
size: 0.5,
source: 53264,
target: 152228 });
// 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: 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: 53264152723,
size: 0.5,
source: 53264,
target: 152723 });
// 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: 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: 53264152572,
size: 0.5,
source: 53264,
target: 152572 });
// 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: 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: 53264152507,
size: 0.5,
source: 53264,
target: 152507 });
// 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: 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: 53264152389,
size: 0.5,
source: 53264,
target: 152389 });
// 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: 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: 53264152199,
size: 0.5,
source: 53264,
target: 152199 });
// 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: 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: 53264152123,
size: 0.5,
source: 53264,
target: 152123 });
// 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: 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: 53264152093,
size: 0.5,
source: 53264,
target: 152093 });
// 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: 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: 53264152030,
size: 0.5,
source: 53264,
target: 152030 });
// 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: 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: 53264152026,
size: 0.5,
source: 53264,
target: 152026 });
// 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: 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: 53264151976,
size: 0.5,
source: 53264,
target: 151976 });
// 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: 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: 53264151655,
size: 0.5,
source: 53264,
target: 151655 });
// 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: 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-profile-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: 53264151445,
size: 0.5,
source: 53264,
target: 151445 });
// 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: 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: 53264151435,
size: 0.5,
source: 53264,
target: 151435 });
// 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: 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: 53264151219,
size: 0.5,
source: 53264,
target: 151219 });
// 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: 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: 53264151199,
size: 0.5,
source: 53264,
target: 151199 });
// 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: 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: 53264151182,
size: 0.5,
source: 53264,
target: 151182 });
// 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: 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: 53264151178,
size: 0.5,
source: 53264,
target: 151178 });
// 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: 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: 53264151175,
size: 0.5,
source: 53264,
target: 151175 });
// 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: 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: 53264151172,
size: 0.5,
source: 53264,
target: 151172 });
// 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: 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: 53264151110,
size: 0.5,
source: 53264,
target: 151110 });
// 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: 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: 53264150797,
size: 0.5,
source: 53264,
target: 150797 });
// 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: 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: 53264150760,
size: 0.5,
source: 53264,
target: 150760 });
// 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: 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: 53264150746,
size: 0.5,
source: 53264,
target: 150746 });
// 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: 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: 53264150431,
size: 0.5,
source: 53264,
target: 150431 });
// 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: 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: 53264150333,
size: 0.5,
source: 53264,
target: 150333 });
// 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: 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: 53264150299,
size: 0.5,
source: 53264,
target: 150299 });
// 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: 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: 53264150285,
size: 0.5,
source: 53264,
target: 150285 });
// 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: 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: 53264150278,
size: 0.5,
source: 53264,
target: 150278 });
// 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: 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: 53264149920,
size: 0.5,
source: 53264,
target: 149920 });
// 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: 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: 53264149916,
size: 0.5,
source: 53264,
target: 149916 });
// 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: 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: 53264149599,
size: 0.5,
source: 53264,
target: 149599 });
// 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: 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: 53264149582,
size: 0.5,
source: 53264,
target: 149582 });
// 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: 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: 53264149577,
size: 0.5,
source: 53264,
target: 149577 });
// 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: 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: 53264149573,
size: 0.5,
source: 53264,
target: 149573 });
// 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: 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: 53264149498,
size: 0.5,
source: 53264,
target: 149498 });
// 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: 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: 53264149334,
size: 0.5,
source: 53264,
target: 149334 });
// 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: 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: 53264149429,
size: 0.5,
source: 53264,
target: 149429 });
// 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: 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: 53264149424,
size: 0.5,
source: 53264,
target: 149424 });
// 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: 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: 53264149323,
size: 0.5,
source: 53264,
target: 149323 });
// 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: 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: 53264149302,
size: 0.5,
source: 53264,
target: 149302 });
// 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: 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: 53264149299,
size: 0.5,
source: 53264,
target: 149299 });
// 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: 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: 53264149225,
size: 0.5,
source: 53264,
target: 149225 });
// 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: 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: 53264149222,
size: 0.5,
source: 53264,
target: 149222 });
// 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: 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: 53264149214,
size: 0.5,
source: 53264,
target: 149214 });
// 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: 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: 53264149200,
size: 0.5,
source: 53264,
target: 149200 });
// 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: 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: 53264149165,
size: 0.5,
source: 53264,
target: 149165 });
// 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: 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: 53264149160,
size: 0.5,
source: 53264,
target: 149160 });
// 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: 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: 53264149149,
size: 0.5,
source: 53264,
target: 149149 });
// 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: 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: 53264149077,
size: 0.5,
source: 53264,
target: 149077 });
// 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: 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: 53264149068,
size: 0.5,
source: 53264,
target: 149068 });
// 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: 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: 53264149063,
size: 0.5,
source: 53264,
target: 149063 });
// 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: 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: 53264149036,
size: 0.5,
source: 53264,
target: 149036 });
// 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: 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: 53264148899,
size: 0.5,
source: 53264,
target: 148899 });
// 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: 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: 53264148896,
size: 0.5,
source: 53264,
target: 148896 });
// 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: 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: 53264148883,
size: 0.5,
source: 53264,
target: 148883 });
// 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: 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: 53264148747,
size: 0.5,
source: 53264,
target: 148747 });
// 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: 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: 53264148720,
size: 0.5,
source: 53264,
target: 148720 });
// 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: 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: 53264148715,
size: 0.5,
source: 53264,
target: 148715 });
// 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: 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: 53264148650,
size: 0.5,
source: 53264,
target: 148650 });
// 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: 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: 53264148641,
size: 0.5,
source: 53264,
target: 148641 });
// 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: 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: 53264148611,
size: 0.5,
source: 53264,
target: 148611 });
// 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: 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: 53264148461,
size: 0.5,
source: 53264,
target: 148461 });
// 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: 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: 53264148457,
size: 0.5,
source: 53264,
target: 148457 });
// 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: 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: 53264148408,
size: 0.5,
source: 53264,
target: 148408 });
// 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: 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: 53264148400,
size: 0.5,
source: 53264,
target: 148400 });
// 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: 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: 53264148275,
size: 0.5,
source: 53264,
target: 148275 });
// 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: 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: 53264148251,
size: 0.5,
source: 53264,
target: 148251 });
// 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: 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: 53264148177,
size: 0.5,
source: 53264,
target: 148177 });
// 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: 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: 53264148020,
size: 0.5,
source: 53264,
target: 148020 });
// 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: 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: 53264147991,
size: 0.5,
source: 53264,
target: 147991 });
// 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: 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: 53264147963,
size: 0.5,
source: 53264,
target: 147963 });
// 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: 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: 53264147959,
size: 0.5,
source: 53264,
target: 147959 });
// 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: 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: 53264147956,
size: 0.5,
source: 53264,
target: 147956 });
// 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: 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: 53264147948,
size: 0.5,
source: 53264,
target: 147948 });
// 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: 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: 53264147899,
size: 0.5,
source: 53264,
target: 147899 });
// 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: 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: 53264147868,
size: 0.5,
source: 53264,
target: 147868 });
// 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: 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: 53264147805,
size: 0.5,
source: 53264,
target: 147805 });
// 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: 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: 53264147797,
size: 0.5,
source: 53264,
target: 147797 });
// 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: 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: 53264147685,
size: 0.5,
source: 53264,
target: 147685 });
// 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: 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: 53264147661,
size: 0.5,
source: 53264,
target: 147661 });
// 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: 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: 53264147632,
size: 0.5,
source: 53264,
target: 147632 });
// 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: 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: 53264147490,
size: 0.5,
source: 53264,
target: 147490 });
// 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: 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: 53264147394,
size: 0.5,
source: 53264,
target: 147394 });
// 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: 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: 53264147285,
size: 0.5,
source: 53264,
target: 147285 });
// 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: 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: 53264147177,
size: 0.5,
source: 53264,
target: 147177 });
// 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: 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: 53264147173,
size: 0.5,
source: 53264,
target: 147173 });
// 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: 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: 53264147170,
size: 0.5,
source: 53264,
target: 147170 });
// 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: 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: 53264147101,
size: 0.5,
source: 53264,
target: 147101 });
// 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: 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: 53264147053,
size: 0.5,
source: 53264,
target: 147053 });
// 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: 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: 53264147037,
size: 0.5,
source: 53264,
target: 147037 });
// 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: 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: 53264146951,
size: 0.5,
source: 53264,
target: 146951 });
// 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: 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: 53264146735,
size: 0.5,
source: 53264,
target: 146735 });
// 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: 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: 53264146680,
size: 0.5,
source: 53264,
target: 146680 });
// 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: 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: 53264146657,
size: 0.5,
source: 53264,
target: 146657 });
// 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: 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: 53264146649,
size: 0.5,
source: 53264,
target: 146649 });
// 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: 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: 53264146490,
size: 0.5,
source: 53264,
target: 146490 });
// 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: 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: 53264146183,
size: 0.5,
source: 53264,
target: 146183 });
// 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: 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: 53264146175,
size: 0.5,
source: 53264,
target: 146175 });
// 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: 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: 53264146172,
size: 0.5,
source: 53264,
target: 146172 });
// 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: 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: 53264146160,
size: 0.5,
source: 53264,
target: 146160 });
// 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: 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: 53264145964,
size: 0.5,
source: 53264,
target: 145964 });
// 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: 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: 53264145959,
size: 0.5,
source: 53264,
target: 145959 });
// 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: 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: 53264145954,
size: 0.5,
source: 53264,
target: 145954 });
// 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: 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: 53264145905,
size: 0.5,
source: 53264,
target: 145905 });
// 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: 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: 53264145369,
size: 0.5,
source: 53264,
target: 145369 });
// 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: 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-image0-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: 53264145320,
size: 0.5,
source: 53264,
target: 145320 });
// 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: 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: 53264145290,
size: 0.5,
source: 53264,
target: 145290 });
// 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: 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: 53264145189,
size: 0.5,
source: 53264,
target: 145189 });
// 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: 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: 53264145077,
size: 0.5,
source: 53264,
target: 145077 });
// 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: 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: 53264145050,
size: 0.5,
source: 53264,
target: 145050 });
// 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: 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-1398451-10151989867577520-1823773709-o-e1604852006341-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/laurie-pinaud-2/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264145046,
size: 0.5,
source: 53264,
target: 145046 });
// 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: 145032,
label: 'MEMBER: Armel Bezault',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/08/research_pasteur-armel-bezault-img-9987-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/armel-bezault/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264145032,
size: 0.5,
source: 53264,
target: 145032 });
// 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: 144855,
label: 'MEMBER: Aleksandra Kovacevic',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/07/research_pasteur-aleksandra-kovacevic-picture1-copy-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/aleksandra-kovacevic/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264144855,
size: 0.5,
source: 53264,
target: 144855 });
// 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: 144721,
label: 'MEMBER: Kshanti Africano-Gomez',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/07/research_pasteur-cvafricanogomez-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/fr-kshanti-africano-gomez/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264144721,
size: 0.5,
source: 53264,
target: 144721 });
// 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: 144602,
label: 'MEMBER: Céline Dormoy',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/07/research_pasteur-enceline-dormoyfrceline-dormoy-img-20210727-110618-1-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/fr-celine-dormoy/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264144602,
size: 0.5,
source: 53264,
target: 144602 });
// 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: 4255,
label: 'MEMBER: Anna-Bella Failloux',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2015/12/research.pasteur.fr_ab-failloux3-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/anna-bella-failloux/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 532644255,
size: 0.5,
source: 53264,
target: 4255 });
// 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: 144547,
label: 'MEMBER: Tom Dott',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/tom-dott/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264144547,
size: 0.5,
source: 53264,
target: 144547 });
// 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: 144391,
label: 'MEMBER: Sarah Dellière',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/07/research_pasteur-id-eccmid-2019-copie-2-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/sarah-delliere/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264144391,
size: 0.5,
source: 53264,
target: 144391 });
// 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: 144350,
label: 'MEMBER: Estelle Boulanger',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/08/research_pasteur-eb-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/estelle-boulanger/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264144350,
size: 0.5,
source: 53264,
target: 144350 });
// 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: 144247,
label: 'MEMBER: Charles Coluzzi',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/07/research_pasteur-charles_coluzzi-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/charles-coluzzi/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264144247,
size: 0.5,
source: 53264,
target: 144247 });
// 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: 144154,
label: 'MEMBER: Christèle Auguste',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/07/research_pasteur-christele-auguste-photo-1-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/christele-auguste/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264144154,
size: 0.5,
source: 53264,
target: 144154 });
// 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: 144112,
label: 'MEMBER: Giovanni Diana',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/07/research_pasteur-giovanni-diana-giovanni-kcl-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/giovanni-diana/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264144112,
size: 0.5,
source: 53264,
target: 144112 });
// 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: 144106,
label: 'MEMBER: Berat Semihcan Sermet',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/07/research_pasteur-cv-2-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/berat-semihcan-sermet/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264144106,
size: 0.5,
source: 53264,
target: 144106 });
// 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: 143947,
label: 'MEMBER: Yekta Kesenci',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/07/research_pasteur-yekta-kesenci-capture-decran-2021-01-22-a-10.52.33-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/kesenci-yekta/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264143947,
size: 0.5,
source: 53264,
target: 143947 });
// 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: 143449,
label: 'MEMBER: Emeline Lawarée',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/06/research_pasteur-emelawaree-150x150.png',
page_url: 'https://research.pasteur.fr/en/member/emeline-lawaree/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264143449,
size: 0.5,
source: 53264,
target: 143449 });
// 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: 143437,
label: 'MEMBER: Karinna Rubio',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/06/research_pasteur-karinna-rubio-img-1415-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/karinna-rubio/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264143437,
size: 0.5,
source: 53264,
target: 143437 });
// 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: 143338,
label: 'MEMBER: Caroline Rouard',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/06/research_pasteur-caroline-rouard-c.r.-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/caroline-rouard/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264143338,
size: 0.5,
source: 53264,
target: 143338 });
// 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: 143271,
label: 'MEMBER: Eve Rahbé',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/06/research_pasteur-eve-rahbe-photo-2019-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/eve-rahbe/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264143271,
size: 0.5,
source: 53264,
target: 143271 });
// 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: 143206,
label: 'MEMBER: Souhir Neffati',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/06/research_pasteur-souhir-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/souhir-neffati/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264143206,
size: 0.5,
source: 53264,
target: 143206 });
// 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: 143177,
label: 'MEMBER: Tara Fournier',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/06/research_pasteur-tara-fournier-photo-pasteur-e1630573578576-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/tara-fournier/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264143177,
size: 0.5,
source: 53264,
target: 143177 });
// 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: 143151,
label: 'MEMBER: Agustin Zavala',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/agustin-zavala/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264143151,
size: 0.5,
source: 53264,
target: 143151 });
// 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: 142960,
label: 'MEMBER: Sylvie Gratepanche',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/fr-sylvie-gratepanche/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264142960,
size: 0.5,
source: 53264,
target: 142960 });
// 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: 142906,
label: 'MEMBER: Angela Brisebarre',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/angela-brisebarre/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264142906,
size: 0.5,
source: 53264,
target: 142906 });
// 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: 142331,
label: 'MEMBER: Roberto Notario',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/05/research_pasteur-enroberto-notariofrroberto-notario-roberto-picture-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/roberto-notario/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264142331,
size: 0.5,
source: 53264,
target: 142331 });
// 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: 142326,
label: 'MEMBER: Olga Korenkova',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/05/research_pasteur-93abe053-1576-413a-8b91-b961468ccaec-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/olga-korenkova/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264142326,
size: 0.5,
source: 53264,
target: 142326 });
// 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: 142322,
label: 'MEMBER: Ines Saenz de Santa Maria',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/05/research_pasteur-ines-picture-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/ines-saenz-de-santa-maria/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264142322,
size: 0.5,
source: 53264,
target: 142322 });
// 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: 142283,
label: 'MEMBER: Jean-Sebastien Diana',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/jean-sebastien-diana/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264142283,
size: 0.5,
source: 53264,
target: 142283 });
// 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: 141835,
label: 'MEMBER: Samantha Papal',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/04/research_pasteur-samantha-papal-20220218-105105-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/samantha-papal/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264141835,
size: 0.5,
source: 53264,
target: 141835 });
// 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: 141797,
label: 'MEMBER: Julienne Petit',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/julienne-petit/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264141797,
size: 0.5,
source: 53264,
target: 141797 });
// 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: 137664,
label: 'MEMBER: Arnaud Tarantola',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/01/research_pasteur-atarantola-photo-502-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/arnaud-tarantola/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264137664,
size: 0.5,
source: 53264,
target: 137664 });
// 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: 141587,
label: 'MEMBER: Evelyne Castanié',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/evelyne-castanie/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264141587,
size: 0.5,
source: 53264,
target: 141587 });
// 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: 141566,
label: 'MEMBER: Maura Samarani',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/04/research_pasteur-maura-samarani-mauraphoto-cut-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/maura-samarani/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264141566,
size: 0.5,
source: 53264,
target: 141566 });
// 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: 141224,
label: 'MEMBER: Aurelio Orta-Resendiz',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/04/research_pasteur-aurelio-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/aurelio-orta-resendiz/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264141224,
size: 0.5,
source: 53264,
target: 141224 });
// 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: 141177,
label: 'MEMBER: Marie Sanchez',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/fr-marie-sanchez/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264141177,
size: 0.5,
source: 53264,
target: 141177 });
// 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: 141087,
label: 'MEMBER: Maryam Khosravi',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/03/research_pasteur-screen-shot-2020-03-20-at-11.52.44-copy-150x150.png',
page_url: 'https://research.pasteur.fr/en/member/maryam-khosravi/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264141087,
size: 0.5,
source: 53264,
target: 141087 });
// 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: 140916,
label: 'MEMBER: Divya Unni',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/03/research_pasteur-divya-unni-20201007-pasteur-divya-unni-002-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/divya-unni/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264140916,
size: 0.5,
source: 53264,
target: 140916 });
// 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: 140742,
label: 'MEMBER: Olena Mayboroda',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/olena-mayboroda/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264140742,
size: 0.5,
source: 53264,
target: 140742 });
// 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: 140527,
label: 'MEMBER: Jean Marc Tsagmo Ngoune',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/03/research_pasteur-pofil-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/jean-marc-tsagmo-ngoune/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264140527,
size: 0.5,
source: 53264,
target: 140527 });
// 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: 140402,
label: 'MEMBER: Régine Dazzoni',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/03/research_pasteur-enregine-dazzonifrregine-dazzoni-fotbb28-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/regine-dazzoni-2/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264140402,
size: 0.5,
source: 53264,
target: 140402 });
// 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: 140312,
label: 'MEMBER: Marcia Peixoto',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/02/research_pasteur-marcia-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/marcia-peixoto/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264140312,
size: 0.5,
source: 53264,
target: 140312 });
// 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: 140305,
label: 'MEMBER: Esma Karkeni',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/fr-esma-karkeni/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264140305,
size: 0.5,
source: 53264,
target: 140305 });
// 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: 140165,
label: 'MEMBER: Thaleia Papadopoulou',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/02/research_pasteur-photo-thaleia-150x150.png',
page_url: 'https://research.pasteur.fr/en/member/thaleia-papadopoulou/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264140165,
size: 0.5,
source: 53264,
target: 140165 });
// 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: 140141,
label: 'MEMBER: Jholy De La Cruz',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/02/research_pasteur-capture-decran-2020-02-25-a-15.49.09-150x150.png',
page_url: 'https://research.pasteur.fr/en/member/jholy-de-la-cruz/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264140141,
size: 0.5,
source: 53264,
target: 140141 });
// 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: 140138,
label: 'MEMBER: Khanh My Pham',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/02/research_pasteur-capture-decran-2020-02-25-a-15.44.04-150x150.png',
page_url: 'https://research.pasteur.fr/en/member/khanh-my-pham/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264140138,
size: 0.5,
source: 53264,
target: 140138 });
// 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: 140135,
label: 'MEMBER: Noah Dahan',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/02/research_pasteur-capture-decran-2020-02-25-a-15.38.26-150x150.png',
page_url: 'https://research.pasteur.fr/en/member/noah-dahan/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264140135,
size: 0.5,
source: 53264,
target: 140135 });
// 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: 140131,
label: 'MEMBER: Seynabou Diop',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/02/research_pasteur-capture-decran-2020-02-25-a-15.36.44-150x150.png',
page_url: 'https://research.pasteur.fr/en/member/seynabou-diop/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264140131,
size: 0.5,
source: 53264,
target: 140131 });
// 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: 140128,
label: 'MEMBER: Rana Salam',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/02/research_pasteur-capture-decran-2020-02-25-a-15.24.00-150x150.png',
page_url: 'https://research.pasteur.fr/en/member/rana-salam/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264140128,
size: 0.5,
source: 53264,
target: 140128 });
// 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: 140125,
label: 'MEMBER: Elodie Da Costa',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/02/research_pasteur-capture-decran-2020-02-25-a-15.18.16-150x150.png',
page_url: 'https://research.pasteur.fr/en/member/elodie-da-costa/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264140125,
size: 0.5,
source: 53264,
target: 140125 });
// 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: 140122,
label: 'MEMBER: Aya El Hallak',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/02/research_pasteur-capture-decran-2020-02-25-a-15.07.47-150x150.png',
page_url: 'https://research.pasteur.fr/en/member/aya-el-hallak/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264140122,
size: 0.5,
source: 53264,
target: 140122 });
// 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: 140116,
label: 'MEMBER: Olga Estévez',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/02/research_pasteur-capture-decran-2020-02-25-a-15.01.16-150x150.png',
page_url: 'https://research.pasteur.fr/en/member/olga-estevez/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264140116,
size: 0.5,
source: 53264,
target: 140116 });
// 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: 140109,
label: 'MEMBER: Cezarela Hoxha',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/02/research_pasteur-capture-decran-2020-02-25-a-14.58.30-150x150.png',
page_url: 'https://research.pasteur.fr/en/member/cezarela-hoxha/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264140109,
size: 0.5,
source: 53264,
target: 140109 });
// 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: 140105,
label: 'MEMBER: Mariana Ponce de Leon Rodriguez',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/02/research_pasteur-capture-decran-2020-02-25-a-14.52.30-150x150.png',
page_url: 'https://research.pasteur.fr/en/member/mariana-ponce-de-leon-rodriguez/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264140105,
size: 0.5,
source: 53264,
target: 140105 });
// 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: 139942,
label: 'MEMBER: Monika Zahorszka',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/monika-zahorszka/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264139942,
size: 0.5,
source: 53264,
target: 139942 });
// 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: 139939,
label: 'MEMBER: Emilie Yab',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/03/research_pasteur-photo-pasteur-e1584390691108-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/emilie-yab/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264139939,
size: 0.5,
source: 53264,
target: 139939 });
// 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: 139912,
label: 'MEMBER: Anne-Caroline Delétoille',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/03/research_pasteur-anne-caroline-deletoille-2-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/anne-caroline-deletoille/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264139912,
size: 0.5,
source: 53264,
target: 139912 });
// 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: 139911,
label: 'MEMBER: Antonin Nourisson',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/03/research_pasteur-img20200229_14461044-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/antonin-nourrisson/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264139911,
size: 0.5,
source: 53264,
target: 139911 });
// 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: 139744,
label: 'MEMBER: Alexandra Fillion',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/alexandra-fillion/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264139744,
size: 0.5,
source: 53264,
target: 139744 });
// 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: 139712,
label: 'MEMBER: Almira Chervova',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/02/research_pasteur-capture-decran-2020-02-21-a-16.49.52-150x150.png',
page_url: 'https://research.pasteur.fr/en/member/fr-almira-chervova/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264139712,
size: 0.5,
source: 53264,
target: 139712 });
// 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: 139706,
label: 'MEMBER: Riccardo Vicedomini',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/02/research_pasteur-untitled-150x150.png',
page_url: 'https://research.pasteur.fr/en/member/riccardo-vicedomini/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264139706,
size: 0.5,
source: 53264,
target: 139706 });
// 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: 139594,
label: 'MEMBER: Jeanne Chiaravalli',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/02/research_pasteur-mdizoduw-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/jeanne-chiaravalli/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264139594,
size: 0.5,
source: 53264,
target: 139594 });
// 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: 139528,
label: 'MEMBER: Mathilde Chouly',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/02/research_pasteur-img_0486-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/mathilde-chouly/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264139528,
size: 0.5,
source: 53264,
target: 139528 });
// 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: 139491,
label: 'MEMBER: Emilia Wysocka',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/02/research_pasteur-emilia-wysocka-emilia-wyzocka02-scaled-square-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/emilia-wysocka/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264139491,
size: 0.5,
source: 53264,
target: 139491 });
// 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: 139489,
label: 'MEMBER: Maureen Wentling',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/04/research_pasteur-maureen-ida-photo-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/maureen-wentling/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264139489,
size: 0.5,
source: 53264,
target: 139489 });
// 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: 139380,
label: 'MEMBER: Tara Delpech',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/fr-tara-delpech/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264139380,
size: 0.5,
source: 53264,
target: 139380 });
// 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: 139232,
label: 'MEMBER: Camille Sous',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/02/research_pasteur-photo-sous-camille-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/camille-sous/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264139232,
size: 0.5,
source: 53264,
target: 139232 });
// 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: 139140,
label: 'MEMBER: Jessica El Khoury',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/04/research_pasteur-jessica-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/jessica-el-khoury/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264139140,
size: 0.5,
source: 53264,
target: 139140 });
// 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: 139068,
label: 'MEMBER: Mariangela Malerba',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/mariangela-malerba/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264139068,
size: 0.5,
source: 53264,
target: 139068 });
// 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: 139052,
label: 'MEMBER: Loic Charpenay',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/02/research_pasteur-loic3-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/loic-charpenay/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264139052,
size: 0.5,
source: 53264,
target: 139052 });
// 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: 138951,
label: 'MEMBER: Aline Araujo Alves',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/02/research_pasteur-img-20180711-wa0018-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/fr-aline-araujo-alves/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264138951,
size: 0.5,
source: 53264,
target: 138951 });
// 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: 138911,
label: 'MEMBER: Samuel Kubler',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/01/research_pasteur-rituparna-sarkar-image-profil-scaled-e1611308324849-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/fr-samuel-kubler/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264138911,
size: 0.5,
source: 53264,
target: 138911 });
// 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: 138851,
label: 'MEMBER: Elodie Turc',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/06/research_pasteur-avatar-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/elodie-turc/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264138851,
size: 0.5,
source: 53264,
target: 138851 });
// 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: 138677,
label: 'MEMBER: Laure Blanchet',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/03/research_pasteur-laureblanchet-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/laure-blanchet/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264138677,
size: 0.5,
source: 53264,
target: 138677 });
// 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: 138592,
label: 'MEMBER: Sophie Shi',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/sophie-shi/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264138592,
size: 0.5,
source: 53264,
target: 138592 });
// 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: 138588,
label: 'MEMBER: Laurie Peverini',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/laurie-peverini/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264138588,
size: 0.5,
source: 53264,
target: 138588 });
// 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: 138461,
label: 'MEMBER: Mélanie Juchet-Martin',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/01/research_pasteur-enmelanie-juchet-martin-frmelanie-juchet-martin-melanie-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/fr-melanie-juchet-martin/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264138461,
size: 0.5,
source: 53264,
target: 138461 });
// 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: 138451,
label: 'MEMBER: Léa Meneu',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/01/research_pasteur-lea-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/lea-meneu/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264138451,
size: 0.5,
source: 53264,
target: 138451 });
// 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: 138400,
label: 'MEMBER: Maguelonne Roux',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/01/research_pasteur-maguelonne_roux-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/fr-maguelonne-roux/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264138400,
size: 0.5,
source: 53264,
target: 138400 });
// 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: 138392,
label: 'MEMBER: Gaspard Kerner',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/01/research_pasteur-picture_gk_cv-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/fr-gaspard-kerner/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264138392,
size: 0.5,
source: 53264,
target: 138392 });
// 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: 138388,
label: 'MEMBER: Yann Aquino',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/01/research_pasteur-unknown-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/fr-yann-aquino/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264138388,
size: 0.5,
source: 53264,
target: 138388 });
// 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: 138313,
label: 'MEMBER: Fernando Raio Vilela',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/01/research_pasteur-fernandovilela-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/fernando-raio-vilela/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264138313,
size: 0.5,
source: 53264,
target: 138313 });
// 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: 138305,
label: 'MEMBER: Tom Szwagier',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/tom-szwagier/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264138305,
size: 0.5,
source: 53264,
target: 138305 });
// 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: 138302,
label: 'MEMBER: Rituparna Sarkar',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/01/research_pasteur-rituparna-sarkar-profile-pic3-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/rituparna-sarkar/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264138302,
size: 0.5,
source: 53264,
target: 138302 });
// 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: 138299,
label: 'MEMBER: Suvadip Mukherjee',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/02/research_pasteur-portrait-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/suvadip-mukherjee/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264138299,
size: 0.5,
source: 53264,
target: 138299 });
// 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: 138296,
label: 'MEMBER: Diana Mandache',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/07/research_pasteur-img_5637_square-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/diana-mandache/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264138296,
size: 0.5,
source: 53264,
target: 138296 });
// 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: 138287,
label: 'MEMBER: Marion Louveaux',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/01/research_pasteur-rituparna-sarkar-capture-decran-2021-01-14-a-12.04.11-150x150.png',
page_url: 'https://research.pasteur.fr/en/member/marion-louveaux/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264138287,
size: 0.5,
source: 53264,
target: 138287 });
// 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: 138250,
label: 'MEMBER: Luis Checa Ruano',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/01/research_pasteur-cupfg7mx-udifpkhke7evsdzfrg-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/luis-checa-ruano/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264138250,
size: 0.5,
source: 53264,
target: 138250 });
// 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: 138144,
label: 'MEMBER: Kohilavathani Chivaloganadan',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/05/research_pasteur-97075256_168334364597407_7789967512594022400_n-1-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/fr-kohilavathani-chivaloganadan/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264138144,
size: 0.5,
source: 53264,
target: 138144 });
// 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: 138135,
label: 'MEMBER: Enzo Peroni',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/04/research_pasteur-photo-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/fr-enzo-peroni/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264138135,
size: 0.5,
source: 53264,
target: 138135 });
// 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: 137984,
label: 'MEMBER: Hélène Bordelet',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/01/research_pasteur-helenebordelet-150x150.png',
page_url: 'https://research.pasteur.fr/en/member/helene-bordelet/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264137984,
size: 0.5,
source: 53264,
target: 137984 });
// 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: 137962,
label: 'MEMBER: Lorenzo Pasotti',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/01/research_pasteur-enlorenzo-pasottifrlorenzo-pasotti-lp-photo-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/lorenzo-pasotti/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264137962,
size: 0.5,
source: 53264,
target: 137962 });
// 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: 137591,
label: 'MEMBER: Cécile Sauvanet',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/01/research_pasteur-image001-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/cecile-sauvanet/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264137591,
size: 0.5,
source: 53264,
target: 137591 });
// 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: 137529,
label: 'MEMBER: Zoé Tracq',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/zoe-tracq/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264137529,
size: 0.5,
source: 53264,
target: 137529 });
// 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: 137403,
label: 'MEMBER: Eric Troadec',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/02/research_pasteur-troadec-eric-2360_b-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/eric-troadec/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264137403,
size: 0.5,
source: 53264,
target: 137403 });
// 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: 137400,
label: 'MEMBER: Delphine Chretien',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/delphine-chretien/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264137400,
size: 0.5,
source: 53264,
target: 137400 });
// 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: 137394,
label: 'MEMBER: Sarah Temmam',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/01/research_pasteur-photo_identite_sarah-temmam-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/sarah-temmam/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264137394,
size: 0.5,
source: 53264,
target: 137394 });
// 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: 137287,
label: 'MEMBER: Corentin Leger',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/01/research_pasteur-photo-id-corentin-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/corentin-leger/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264137287,
size: 0.5,
source: 53264,
target: 137287 });
// 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: 137237,
label: 'MEMBER: Emmanuelle Permal',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/02/research_pasteur-pasteur2-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/emmanuelle-permal/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264137237,
size: 0.5,
source: 53264,
target: 137237 });
// 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: 137201,
label: 'MEMBER: Marine Viglietta',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/01/research_pasteur-marine-photo-2-1-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/viglietta/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264137201,
size: 0.5,
source: 53264,
target: 137201 });
// 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: 137186,
label: 'MEMBER: Mélanie Chabaud',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/01/research_pasteur-photo-melanie-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/melanie-chabaud/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264137186,
size: 0.5,
source: 53264,
target: 137186 });
// 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: 137130,
label: 'MEMBER: Ying Liu',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/01/research_pasteur-ying-liu-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/ying-liu/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264137130,
size: 0.5,
source: 53264,
target: 137130 });
// 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: 137110,
label: 'MEMBER: Sébastian Castro Ramirez',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/01/research_pasteur-dsc-1435-e1578325527118-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/sebastian-castro-ramirez/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264137110,
size: 0.5,
source: 53264,
target: 137110 });
// 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: 137084,
label: 'MEMBER: Niels Volkmann',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/01/research_pasteur-niels-volkmann-niels-9-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/niels-volkmann/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264137084,
size: 0.5,
source: 53264,
target: 137084 });
// 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: 137071,
label: 'MEMBER: Adam Taheraly',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/01/research_pasteur-photo_adam-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/adam-taheraly/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264137071,
size: 0.5,
source: 53264,
target: 137071 });
// 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: 136886,
label: 'MEMBER: Hudson Bezerra',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/12/research_pasteur-bezerra-150x150.png',
page_url: 'https://research.pasteur.fr/en/member/hudson-bezerra/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264136886,
size: 0.5,
source: 53264,
target: 136886 });
// 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: 136860,
label: 'MEMBER: Thibaud Goupil',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/12/research_pasteur-capture-decran-2019-12-24-a-12.31.08-150x150.png',
page_url: 'https://research.pasteur.fr/en/member/thibaud-goupil/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264136860,
size: 0.5,
source: 53264,
target: 136860 });
// 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: 136228,
label: 'MEMBER: Catarina Maria Da Silva Rosa',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/12/research_pasteur-rosa-catarina-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/fr-catarina-maria-da-silva-rosa/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264136228,
size: 0.5,
source: 53264,
target: 136228 });
// 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: 136170,
label: 'MEMBER: Mariatou Dramé',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/12/research_pasteur-mariatou-drame-unnamed-1-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/mariatou-drame/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264136170,
size: 0.5,
source: 53264,
target: 136170 });
// 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: 136134,
label: 'MEMBER: Arthur Michaut',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/12/research_pasteur-photo-arthur-150x150.png',
page_url: 'https://research.pasteur.fr/en/member/arthur-michaut/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264136134,
size: 0.5,
source: 53264,
target: 136134 });
// 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: 136130,
label: 'MEMBER: Yu Ieda',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/12/research_pasteur-yu-ieda-yu-ieda-2021-2-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/yu-ieda/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264136130,
size: 0.5,
source: 53264,
target: 136130 });
// 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: 136112,
label: 'MEMBER: Maria Guierrez-Sanchez',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/12/research_pasteur-maria-gutierrez-sanchez-fotomaria-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/maria-gutierrez-sanchez/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264136112,
size: 0.5,
source: 53264,
target: 136112 });
// 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: 136004,
label: 'MEMBER: Nadira Frescaline',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/12/research_pasteur-nadira-frescaline-nadira-frescaline-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/nadira-frescaline/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264136004,
size: 0.5,
source: 53264,
target: 136004 });
// 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: 135996,
label: 'MEMBER: Marion Lemarignier',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/12/research_pasteur-photo-marion-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/marion-lemarignier/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264135996,
size: 0.5,
source: 53264,
target: 135996 });
// 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: 135968,
label: 'MEMBER: Cosme Claverie',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/12/research_pasteur-cosme-claverie-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/cosme-claverie/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264135968,
size: 0.5,
source: 53264,
target: 135968 });
// 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: 135762,
label: 'MEMBER: Jiachuan Bai',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/11/research_pasteur-unnamed-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/jiachuan-bai/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264135762,
size: 0.5,
source: 53264,
target: 135762 });
// 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: 135616,
label: 'MEMBER: Priyanka Fernandes',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/priyanka-fernandes/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264135616,
size: 0.5,
source: 53264,
target: 135616 });
// 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: 135613,
label: 'MEMBER: Giulia Girelli-Zubani',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/giulia-girelli-zubani/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264135613,
size: 0.5,
source: 53264,
target: 135613 });
// 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: 135610,
label: 'MEMBER: Anna Thaller',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/03/research_pasteur-bildschirmfoto-2020-03-25-um-14.33.46-150x150.png',
page_url: 'https://research.pasteur.fr/en/member/anna-thaller/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264135610,
size: 0.5,
source: 53264,
target: 135610 });
// 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: 135607,
label: 'MEMBER: Toshiki Eri',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/toshiki-eri/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264135607,
size: 0.5,
source: 53264,
target: 135607 });
// 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: 135539,
label: 'MEMBER: Isabelle Bouyssou',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/12/research_pasteur-isabelle-bouyssou-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/isabelle-bouyssou/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264135539,
size: 0.5,
source: 53264,
target: 135539 });
// 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: 135482,
label: 'MEMBER: Alina Sommer',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/11/research_pasteur-alina-sommer_pasteur-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/alina-sommer/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264135482,
size: 0.5,
source: 53264,
target: 135482 });
// 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: 135114,
label: 'MEMBER: Elsa Bourayou',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/11/research_pasteur-elsa-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/elsa-bourayou/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264135114,
size: 0.5,
source: 53264,
target: 135114 });
// 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: 135069,
label: 'MEMBER: Davin Lunz',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/davin-lunz/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264135069,
size: 0.5,
source: 53264,
target: 135069 });
// 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: 135032,
label: 'MEMBER: Cécile Tran Kiem',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/11/research_pasteur-encecile-tran-kiemfrcecile-tran-kiem-20210720-fwis-c-tran-kiem-0076-crop-1-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/cecile-tran-kiem/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264135032,
size: 0.5,
source: 53264,
target: 135032 });
// 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: 134482,
label: 'MEMBER: Yuting Guo',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/11/research_pasteur-enyuting-guofryuting-guo-photo-yuting-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/fr-yuting-guo/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264134482,
size: 0.5,
source: 53264,
target: 134482 });
// 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: 134279,
label: 'MEMBER: Mariana Gonzalez Medina',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/mariana-gonzalez-medina/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264134279,
size: 0.5,
source: 53264,
target: 134279 });
// 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: 134269,
label: 'MEMBER: Rebecca Pavillard',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/10/research_pasteur-pavillard-150x150.png',
page_url: 'https://research.pasteur.fr/en/member/rebecca-pavillard/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264134269,
size: 0.5,
source: 53264,
target: 134269 });
// 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: 134259,
label: 'MEMBER: Maria Llach i Pou',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/10/research_pasteur-llach-1-150x150.png',
page_url: 'https://research.pasteur.fr/en/member/maria-llach-i-pou/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264134259,
size: 0.5,
source: 53264,
target: 134259 });
// 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: 134243,
label: 'MEMBER: Jun Hemmi',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/10/research_pasteur-jun-25109-3-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/jun-hemmi/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264134243,
size: 0.5,
source: 53264,
target: 134243 });
// 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: 134185,
label: 'MEMBER: Huda Abuhussein',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/huda-abuhussein/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264134185,
size: 0.5,
source: 53264,
target: 134185 });
// 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: 134179,
label: 'MEMBER: Helena Sefiane-Djemaoune',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/helena-sefiane-djemaoune/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264134179,
size: 0.5,
source: 53264,
target: 134179 });
// 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: 134107,
label: 'MEMBER: Magdalena Barbachowska',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/magdalena-barbachowska/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264134107,
size: 0.5,
source: 53264,
target: 134107 });
// 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: 134096,
label: 'MEMBER: Elise Brisebard',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/elise-brisebard/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264134096,
size: 0.5,
source: 53264,
target: 134096 });
// 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: 134091,
label: 'MEMBER: Marie Nguelé',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/marie-nguele/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264134091,
size: 0.5,
source: 53264,
target: 134091 });
// 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: 134005,
label: 'MEMBER: Delphine Planas',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/10/research_pasteur-delphine_planas-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/delphine-planas/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264134005,
size: 0.5,
source: 53264,
target: 134005 });
// 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: 133893,
label: 'MEMBER: Ingrid Fert',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/ingrid-fert/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264133893,
size: 0.5,
source: 53264,
target: 133893 });
// 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: 133884,
label: 'MEMBER: Jim Zoladek',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/10/research_pasteur-jim-zoladek-img-20210301-194644-04-e1614777484884-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/jim-zoladek/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264133884,
size: 0.5,
source: 53264,
target: 133884 });
// 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: 133714,
label: 'MEMBER: Charles Paul Moore',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/charles-paul-moore/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264133714,
size: 0.5,
source: 53264,
target: 133714 });
// 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: 133712,
label: 'MEMBER: Nadia Vertti-Quintero',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/10/research_pasteur-img_0512-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/nadia-vertti-quintero/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264133712,
size: 0.5,
source: 53264,
target: 133712 });
// 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: 133692,
label: 'MEMBER: Shreyansh Jain',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/08/research_pasteur-shreyansh-jain-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/shreyansh-jain/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264133692,
size: 0.5,
source: 53264,
target: 133692 });
// 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: 133663,
label: 'MEMBER: Isabelle Sou',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/10/research_pasteur-photo-le-15-10-2019-a-15.55-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/isabelle-sou/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264133663,
size: 0.5,
source: 53264,
target: 133663 });
// 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: 133636,
label: 'MEMBER: Sophie Aicher',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/10/research_pasteur-sophie-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/sophie-aicher/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264133636,
size: 0.5,
source: 53264,
target: 133636 });
// 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: 133593,
label: 'MEMBER: Dominique Michel',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/dominique-michel/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264133593,
size: 0.5,
source: 53264,
target: 133593 });
// 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: 133588,
label: 'MEMBER: Gregory Inizan',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/gregory-inizan/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264133588,
size: 0.5,
source: 53264,
target: 133588 });
// 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: 133189,
label: 'MEMBER: Thierry Mourer',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/thierry-mourer/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264133189,
size: 0.5,
source: 53264,
target: 133189 });
// 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: 133177,
label: 'MEMBER: Jessica Martyn',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/10/research_pasteur-d2b5998d-e982-4f17-981e-f88320f9893c-4-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/jessica-martyn/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264133177,
size: 0.5,
source: 53264,
target: 133177 });
// 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: 133056,
label: 'MEMBER: Maureen Mc Fadden',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/10/research_pasteur-maureen-mc-fadden-maureen-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/maureen-mc-fadden/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264133056,
size: 0.5,
source: 53264,
target: 133056 });
// 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: 132999,
label: 'MEMBER: Florian Privé',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/10/research_pasteur-fprive-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/florian-prive/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264132999,
size: 0.5,
source: 53264,
target: 132999 });
// 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: 132995,
label: 'MEMBER: Miruna Costreie',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/10/research_pasteur-miruna-costreie-photo-me-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/miruna-costreie/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264132995,
size: 0.5,
source: 53264,
target: 132995 });
// 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: 132951,
label: 'MEMBER: Margot Delavy',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/10/research_pasteur-img_20191004_150903-4-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/margot-delavy/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264132951,
size: 0.5,
source: 53264,
target: 132951 });
// 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: 132949,
label: 'MEMBER: Daria Kosmala',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/10/research_pasteur-photo2-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/daria-kosmala/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264132949,
size: 0.5,
source: 53264,
target: 132949 });
// 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: 132909,
label: 'MEMBER: Loan Bourdon',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/10/research_pasteur-loan-150x150.png',
page_url: 'https://research.pasteur.fr/en/member/loan-bourdon/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264132909,
size: 0.5,
source: 53264,
target: 132909 });
// 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: 132855,
label: 'MEMBER: Vincent Mallet',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/11/research_pasteur-photo-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/vincent-mallet/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264132855,
size: 0.5,
source: 53264,
target: 132855 });
// 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: 132831,
label: 'MEMBER: Melina Thetiot',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/10/research_pasteur-melina_photo6recad-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/melina-thetiot/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264132831,
size: 0.5,
source: 53264,
target: 132831 });
// 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: 132818,
label: 'MEMBER: Noël Aimar',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/noel-aimar/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264132818,
size: 0.5,
source: 53264,
target: 132818 });
// 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: 132772,
label: 'MEMBER: Florian Carlier',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/10/research_pasteur-florian-2-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/florian-carlier/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264132772,
size: 0.5,
source: 53264,
target: 132772 });
// 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: 132763,
label: 'MEMBER: Juliana Rizzo',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/10/research_pasteur-ju2-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/juliana-rizzo-balancin/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264132763,
size: 0.5,
source: 53264,
target: 132763 });
// 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: 132730,
label: 'MEMBER: Julien Gaillard',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/12/research_pasteur-sans-titre-3-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/julien-gaillard/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264132730,
size: 0.5,
source: 53264,
target: 132730 });
// 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: 132723,
label: 'MEMBER: Sylvain Levallois',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/10/research_pasteur-sylvain-levallois-photo-150x150.png',
page_url: 'https://research.pasteur.fr/en/member/sylvain-levallois/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264132723,
size: 0.5,
source: 53264,
target: 132723 });
// 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: 132712,
label: 'MEMBER: Fabien Girard',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/10/research_pasteur-photo-fabien-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/fabien-girard/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264132712,
size: 0.5,
source: 53264,
target: 132712 });
// 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: 132504,
label: 'MEMBER: Olivier Borkowski',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/10/research_pasteur-vsklsqez-400x400-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/olivier-borkowski/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264132504,
size: 0.5,
source: 53264,
target: 132504 });
// 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: 132500,
label: 'MEMBER: Achille Fraisse',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/09/research_pasteur-pas-conforme-1-2-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/achille-fraisse/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264132500,
size: 0.5,
source: 53264,
target: 132500 });
// 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: 132494,
label: 'MEMBER: Zach Fox',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/10/research_pasteur-picture-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/zach-fox/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264132494,
size: 0.5,
source: 53264,
target: 132494 });
// 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: 132366,
label: 'MEMBER: Tom Cumming',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/09/research_pasteur-tomcumming-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/tom-cumming/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264132366,
size: 0.5,
source: 53264,
target: 132366 });
// 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: 132361,
label: 'MEMBER: Ralitza Staneva',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/09/research_pasteur-photo_rali-150x150.png',
page_url: 'https://research.pasteur.fr/en/member/ralitza-staneva/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264132361,
size: 0.5,
source: 53264,
target: 132361 });
// 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: 132316,
label: 'MEMBER: Stéphane Tachon',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/09/research_pasteur-stephane_20190923-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/stephane-tachon/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264132316,
size: 0.5,
source: 53264,
target: 132316 });
// 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: 131957,
label: 'MEMBER: David Fournier',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/09/research_pasteur-fournier_id_nov2018-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/david-fournier/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264131957,
size: 0.5,
source: 53264,
target: 131957 });
// 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: 131762,
label: 'MEMBER: Konstantin Petrov',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/konstantin-petrov/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264131762,
size: 0.5,
source: 53264,
target: 131762 });
// 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: 131385,
label: 'MEMBER: Myriem Chikhaoui',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/09/research_pasteur-myriem-chikhaoui-njkzoti4-copier-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/myriem-chikhaoui/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264131385,
size: 0.5,
source: 53264,
target: 131385 });
// 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: 131343,
label: 'MEMBER: Paulina Cruz de Casas',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/fr-paulina-cruz-de-casas/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264131343,
size: 0.5,
source: 53264,
target: 131343 });
// 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: 131298,
label: 'MEMBER: Maud Marechal',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/maud-marechal/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264131298,
size: 0.5,
source: 53264,
target: 131298 });
// 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: 131247,
label: 'MEMBER: Nadia Fernandes',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/09/research_pasteur-nnadiafernandesphotoofficielle-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/nadia-fernandes/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264131247,
size: 0.5,
source: 53264,
target: 131247 });
// 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: 130620,
label: 'MEMBER: Christophe Chapard',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/08/research_pasteur-photo-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/christophe-chapard/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264130620,
size: 0.5,
source: 53264,
target: 130620 });
// 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: 130396,
label: 'MEMBER: Isabelle Dusfour',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/08/research_pasteur-20171121_180714-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/isabelle-dusfour/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264130396,
size: 0.5,
source: 53264,
target: 130396 });
// 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: 130120,
label: 'MEMBER: Laure Bernard',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/08/research_pasteur-photo-laure-150x150.png',
page_url: 'https://research.pasteur.fr/en/member/laure-bernard/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264130120,
size: 0.5,
source: 53264,
target: 130120 });
// 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: 130111,
label: 'MEMBER: Amandine Molliex-Palud',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/07/research_pasteur-capture-decran-2019-07-31-a-17.51.38-150x150.png',
page_url: 'https://research.pasteur.fr/en/member/amandine-molliex-palud/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264130111,
size: 0.5,
source: 53264,
target: 130111 });
// 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: 130107,
label: 'MEMBER: Nick Owens',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/07/research_pasteur-unknown-150x150.png',
page_url: 'https://research.pasteur.fr/en/member/nick-owens/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264130107,
size: 0.5,
source: 53264,
target: 130107 });
// 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: 130102,
label: 'MEMBER: Inmaculada Gonzalez Garcia',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/07/research_pasteur-photo-inma-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/inmaculada-gonzalez-garcia/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264130102,
size: 0.5,
source: 53264,
target: 130102 });
// 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: 129906,
label: 'MEMBER: Katia Barrett',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/07/research_pasteur-katia-1-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/katia-barrett/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264129906,
size: 0.5,
source: 53264,
target: 129906 });
// 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: 129806,
label: 'MEMBER: Eléa Paillares',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/10/research_pasteur-20180711_150350-stand-copie-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/elea-paillares/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264129806,
size: 0.5,
source: 53264,
target: 129806 });
// 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: 129585,
label: 'MEMBER: Thibaut Hubert',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/thibaut-hubert/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264129585,
size: 0.5,
source: 53264,
target: 129585 });
// 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: 129465,
label: 'MEMBER: Angga Perima',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/11/research_pasteur-photo-angga-150x150.png',
page_url: 'https://research.pasteur.fr/en/member/angga-perima/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264129465,
size: 0.5,
source: 53264,
target: 129465 });
// 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: 129378,
label: 'MEMBER: Ilayda Soztekin',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/07/research_pasteur-capture-decran-2019-07-13-a-16.44.33-150x150.png',
page_url: 'https://research.pasteur.fr/en/member/ilayda-soztekin/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264129378,
size: 0.5,
source: 53264,
target: 129378 });
// 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: 129373,
label: 'MEMBER: Celine Le Cocq',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/07/research_pasteur-capture-decran-2019-07-13-a-16.36.38-150x150.png',
page_url: 'https://research.pasteur.fr/en/member/celine-le-cocq/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264129373,
size: 0.5,
source: 53264,
target: 129373 });
// 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: 129272,
label: 'MEMBER: David Courtney',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/david-courtney/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264129272,
size: 0.5,
source: 53264,
target: 129272 });
// 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: 129093,
label: 'MEMBER: Lucienne Nouchikian',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/10/research_pasteur-img-20190822-wa0011-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/lucienne-nouchikian/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264129093,
size: 0.5,
source: 53264,
target: 129093 });
// 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: 129024,
label: 'MEMBER: Murielle Serres',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/07/research_pasteur-murielle-serres-murielle-essai-3-1-150x150.png',
page_url: 'https://research.pasteur.fr/en/member/murielle-serres/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264129024,
size: 0.5,
source: 53264,
target: 129024 });
// 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: 120614,
label: 'MEMBER: Lena Feige',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/01/research_pasteur-lena-img_20190106_1013061-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/lena-feige/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264120614,
size: 0.5,
source: 53264,
target: 120614 });
// 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: 128716,
label: 'MEMBER: Andrea Lavarello',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/andrea-lavarello/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264128716,
size: 0.5,
source: 53264,
target: 128716 });
// 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: 128683,
label: 'MEMBER: Lorenzo Posani',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/07/research_pasteur-foto-150x150.png',
page_url: 'https://research.pasteur.fr/en/member/lorenzo-posani/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264128683,
size: 0.5,
source: 53264,
target: 128683 });
// 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: 127913,
label: 'MEMBER: Clément Madru',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/06/research_pasteur-clement-madru-img-0913-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/clement-madru/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264127913,
size: 0.5,
source: 53264,
target: 127913 });
// 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: 127904,
label: 'MEMBER: Mustafa Tekpinar',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/mustafa-tekpinar/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264127904,
size: 0.5,
source: 53264,
target: 127904 });
// 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: 127806,
label: 'MEMBER: Nikaïa Smith',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/06/research_pasteur-nikaia-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/nikaia-smith/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264127806,
size: 0.5,
source: 53264,
target: 127806 });
// 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: 127529,
label: 'MEMBER: Sara Khalilian',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/06/research_pasteur-sara-khalilian-sara-khalilian-1-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/sara-khalilian/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264127529,
size: 0.5,
source: 53264,
target: 127529 });
// 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: 127352,
label: 'MEMBER: Virginie Borges Cardoso',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/06/research_pasteur-virginie-1-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/fr-virginie-borges-cardoso/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264127352,
size: 0.5,
source: 53264,
target: 127352 });
// 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: 127345,
label: 'MEMBER: Jimmy Hortion',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/06/research_pasteur-40-jimmy-hortion-equipe-baize-300x200-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/fr-jimmy-hortion/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264127345,
size: 0.5,
source: 53264,
target: 127345 });
// 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: 127340,
label: 'MEMBER: Clara Germain',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/06/research_pasteur-cg-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/fr-clara-germain/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264127340,
size: 0.5,
source: 53264,
target: 127340 });
// 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: 127310,
label: 'MEMBER: Lydie Texier',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/06/research_pasteur-capture-decran-2019-06-04-a-15.46.30-150x150.png',
page_url: 'https://research.pasteur.fr/en/member/lydie-texier/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264127310,
size: 0.5,
source: 53264,
target: 127310 });
// 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: 127154,
label: 'MEMBER: Albin Salazar',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/albin-salazar/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264127154,
size: 0.5,
source: 53264,
target: 127154 });
// 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: 127036,
label: 'MEMBER: Revathi Govind',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/05/research_pasteur-govind-150x150.png',
page_url: 'https://research.pasteur.fr/en/member/revathi-govind/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264127036,
size: 0.5,
source: 53264,
target: 127036 });
// 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: 126940,
label: 'MEMBER: Stéphane Rigaud',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/05/research_pasteur-811146-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/stephane-rigaud/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264126940,
size: 0.5,
source: 53264,
target: 126940 });
// 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: 126882,
label: 'MEMBER: Gabrielle Dejean de la Batie',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/05/research_pasteur-capture-decran-2019-05-22-a-16.27.46-150x150.png',
page_url: 'https://research.pasteur.fr/en/member/fr-gabrielle-dejean-de-la-batie/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264126882,
size: 0.5,
source: 53264,
target: 126882 });
// 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: 126795,
label: 'MEMBER: Claire Morvan',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/06/research_pasteur-cm-photo-150x150.png',
page_url: 'https://research.pasteur.fr/en/member/claire-morvan/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264126795,
size: 0.5,
source: 53264,
target: 126795 });
// 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: 126596,
label: 'MEMBER: Erminia Donnarumma',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/06/research_pasteur-e-donnarumma-picture-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/erminia-donnarumma/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264126596,
size: 0.5,
source: 53264,
target: 126596 });
// 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: 126591,
label: 'MEMBER: Claire Pujol',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/claire-pujol/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264126591,
size: 0.5,
source: 53264,
target: 126591 });
// 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: 126536,
label: 'MEMBER: Elsa Charifou',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/02/research_pasteur-capture-decran-2020-02-25-a-14.42.51-150x150.png',
page_url: 'https://research.pasteur.fr/en/member/elsa-charifou/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264126536,
size: 0.5,
source: 53264,
target: 126536 });
// 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: 126516,
label: 'MEMBER: Emile Zakiev',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/05/research_pasteur-cwcrhvqaqbmlbeylignvig_thumb_2a7e1-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/emil-zakiev/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264126516,
size: 0.5,
source: 53264,
target: 126516 });
// 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: 126491,
label: 'MEMBER: Sophie Mutricy',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/05/research_pasteur-sophie-mutricy-s.-mutricy-photo-badge-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/mutricy-sophie/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264126491,
size: 0.5,
source: 53264,
target: 126491 });
// 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: 126366,
label: 'MEMBER: Jean-Marie Winter',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/05/research_pasteur-img_7221-modifiee-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/jean-marie-winter/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264126366,
size: 0.5,
source: 53264,
target: 126366 });
// 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: 126347,
label: 'MEMBER: Flora Donati',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/flora-donati/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264126347,
size: 0.5,
source: 53264,
target: 126347 });
// 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: 126345,
label: 'MEMBER: Tim Krischuns',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/tim-krischuns/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264126345,
size: 0.5,
source: 53264,
target: 126345 });
// 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: 126125,
label: 'MEMBER: Diana Paola Baquero Uriza',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/01/research_pasteur-untitled-2-150x150.png',
page_url: 'https://research.pasteur.fr/en/member/diana-paola-baquero-uriza/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264126125,
size: 0.5,
source: 53264,
target: 126125 });
// 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: 126121,
label: 'MEMBER: Junfeng Liu',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/01/research_pasteur-untitled-5-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/junfeng-liu/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264126121,
size: 0.5,
source: 53264,
target: 126121 });
// 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: 126114,
label: 'MEMBER: Sofia Medvedeva',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/05/research_pasteur-sofia-medvedeva-photo-e1631627744382-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/sofia-medvedeva/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264126114,
size: 0.5,
source: 53264,
target: 126114 });
// 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: 126065,
label: 'MEMBER: Estelle Vincendeau',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/05/research_pasteur-enestelle-vincendeaufrestelle-vincendeau-estelle-vincendeau-e1638375849848-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/estelle-vincendeau/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264126065,
size: 0.5,
source: 53264,
target: 126065 });
// 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: 125992,
label: 'MEMBER: Françoise Collonnier',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/05/research_pasteur-18698116_10155411571747390_270840718011858085_n-copie-1-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/francoise-collonnier/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264125992,
size: 0.5,
source: 53264,
target: 125992 });
// 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: 125865,
label: 'MEMBER: Ruby Alonso Ramirez',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/ruby-alonso/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264125865,
size: 0.5,
source: 53264,
target: 125865 });
// 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: 125811,
label: 'MEMBER: Maylis Layan',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/07/research_pasteur-24093890_10155987713694679_1386461201_o-2-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/maylis-layan/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264125811,
size: 0.5,
source: 53264,
target: 125811 });
// 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: 125721,
label: 'MEMBER: Jean-Pierre Sauzet',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/jean-pierre-sauzet/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264125721,
size: 0.5,
source: 53264,
target: 125721 });
// 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: 125599,
label: 'MEMBER: Carole Phan',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/07/research_pasteur-carole-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/carole-phan/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264125599,
size: 0.5,
source: 53264,
target: 125599 });
// 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: 125596,
label: 'MEMBER: Paolo Caldarelli',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/07/research_pasteur-paolo-150x150.png',
page_url: 'https://research.pasteur.fr/en/member/paolo-caldarelli/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264125596,
size: 0.5,
source: 53264,
target: 125596 });
// 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: 125592,
label: 'MEMBER: Carolina Parada Borja',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/07/research_pasteur-carolina-150x150.png',
page_url: 'https://research.pasteur.fr/en/member/carolina-parada-borja/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264125592,
size: 0.5,
source: 53264,
target: 125592 });
// 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: 125589,
label: 'MEMBER: Aline Bonnet',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/07/research_pasteur-capture-decran-2019-07-26-a-11.46.36-150x150.png',
page_url: 'https://research.pasteur.fr/en/member/aline-bonnet/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264125589,
size: 0.5,
source: 53264,
target: 125589 });
// 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: 125161,
label: 'MEMBER: Amal Elfidha',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/04/research_pasteur-img-3222-2-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/amal-elfidha/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264125161,
size: 0.5,
source: 53264,
target: 125161 });
// 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: 125133,
label: 'MEMBER: Zeinabou Kissongon Traore',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/zeinabou-kissongon-traore/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264125133,
size: 0.5,
source: 53264,
target: 125133 });
// 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: 125034,
label: 'MEMBER: Camille Garcia',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/04/research_pasteur-img_0007-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/camille-garcia/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264125034,
size: 0.5,
source: 53264,
target: 125034 });
// 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: 124950,
label: 'MEMBER: Liliana Mancio Silva',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/09/research_pasteur-photo-1-5-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/liliana-mancio-silva/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264124950,
size: 0.5,
source: 53264,
target: 124950 });
// 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: 124945,
label: 'MEMBER: Gretchen Diffendall',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/04/research_pasteur-24862473_10215215984174996_8181622776401523978_n-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/gretchen-diffendall/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264124945,
size: 0.5,
source: 53264,
target: 124945 });
// 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: 124884,
label: 'MEMBER: Andrea Avila Avila',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/04/research_pasteur-capture-decran-2019-04-04-a-12.26.00-150x150.png',
page_url: 'https://research.pasteur.fr/en/member/andrea-avila-avila/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264124884,
size: 0.5,
source: 53264,
target: 124884 });
// 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: 124512,
label: 'MEMBER: Marco Gualtieri',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/03/research_pasteur-marco-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/marco-gualtieri/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264124512,
size: 0.5,
source: 53264,
target: 124512 });
// 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: 124452,
label: 'MEMBER: Laure Le Blanc',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/laure-le-blanc/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264124452,
size: 0.5,
source: 53264,
target: 124452 });
// 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: 124366,
label: 'MEMBER: Carolina Moraes',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/03/research_pasteur-carolina-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/carolina-moraes/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264124366,
size: 0.5,
source: 53264,
target: 124366 });
// 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: 124355,
label: 'MEMBER: Vanessa Kremer',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/03/research_pasteur-capture-decran-2019-03-25-a-12.21.04-150x150.png',
page_url: 'https://research.pasteur.fr/en/member/vanessa-kremer/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264124355,
size: 0.5,
source: 53264,
target: 124355 });
// 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: 123967,
label: 'MEMBER: Karen Druart',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/03/research_pasteur-karen-druart-img-20210902-124522-1-scaled-e1669379413893-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/karen-druart/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264123967,
size: 0.5,
source: 53264,
target: 123967 });
// 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: 123756,
label: 'MEMBER: Michele Cerminara',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/03/research_pasteur-michele-cerminara-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/fr-michele-cerminara/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264123756,
size: 0.5,
source: 53264,
target: 123756 });
// 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: 123751,
label: 'MEMBER: Benjamin Zoller',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/03/research_pasteur-ben-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/benjamin-zoller/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264123751,
size: 0.5,
source: 53264,
target: 123751 });
// 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: 123659,
label: 'MEMBER: Cassandra Koh',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/07/research_pasteur-dsc3807_2-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/cassandra-koh/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264123659,
size: 0.5,
source: 53264,
target: 123659 });
// 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: 123656,
label: 'MEMBER: Sabrina Johanna Fletcher',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/07/research_pasteur-dsc3802_2-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/sabrina-johanna-fletcher/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264123656,
size: 0.5,
source: 53264,
target: 123656 });
// 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: 123319,
label: 'MEMBER: Chunzi Yao',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/03/research_pasteur-img_2150-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/chunzi-yao/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264123319,
size: 0.5,
source: 53264,
target: 123319 });
// 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: 123292,
label: 'MEMBER: Camila Valenzuela-Montenegro',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/03/research_pasteur-img_6998-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/camila-valenzuela-montenegro/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264123292,
size: 0.5,
source: 53264,
target: 123292 });
// 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: 123270,
label: 'MEMBER: Hanno Schoeler',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/03/research_pasteur-a_002801-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/hanno-schoeler/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264123270,
size: 0.5,
source: 53264,
target: 123270 });
// 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: 123261,
label: 'MEMBER: Elodie Vimont',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/06/research_pasteur-683039-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/elodie-vimont/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264123261,
size: 0.5,
source: 53264,
target: 123261 });
// 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: 123248,
label: 'MEMBER: Rémi Planel',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/10/research_pasteur-photos_pasteur-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/remi-planel/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264123248,
size: 0.5,
source: 53264,
target: 123248 });
// 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: 123063,
label: 'MEMBER: Hawa Yaffa',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/02/research_pasteur-photo-hawa-150x150.png',
page_url: 'https://research.pasteur.fr/en/member/hawa-yaffa/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264123063,
size: 0.5,
source: 53264,
target: 123063 });
// 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: 122488,
label: 'MEMBER: Laëtitia Breton',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/laetitia-breton/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264122488,
size: 0.5,
source: 53264,
target: 122488 });
// 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: 122454,
label: 'MEMBER: Elodie Pysson',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/elodie-pysson/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264122454,
size: 0.5,
source: 53264,
target: 122454 });
// 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: 122345,
label: 'MEMBER: Lucie Kuhmel',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/lucie-kuhmel/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264122345,
size: 0.5,
source: 53264,
target: 122345 });
// 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: 122342,
label: 'MEMBER: Cora Lucet',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/cora-lucet/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264122342,
size: 0.5,
source: 53264,
target: 122342 });
// 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: 122334,
label: 'MEMBER: Kaoutar Jidar',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/kaoutar-jidar/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264122334,
size: 0.5,
source: 53264,
target: 122334 });
// 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: 122304,
label: 'MEMBER: Lucien Platon',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/10/research_pasteur-ma-tronche-2-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/platon-lucien/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264122304,
size: 0.5,
source: 53264,
target: 122304 });
// 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: 122291,
label: 'MEMBER: Thomas Sabaté',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/02/research_pasteur-thomas-sabate-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/thomas-sabate/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264122291,
size: 0.5,
source: 53264,
target: 122291 });
// 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: 122106,
label: 'MEMBER: Fanny Mazzamurro',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/02/research_pasteur-fanny-mazzamurro-fanny-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/fanny-mazzamurro/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264122106,
size: 0.5,
source: 53264,
target: 122106 });
// 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: 121855,
label: 'MEMBER: Isabelle Cailleau',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/04/research_pasteur-capture-decran-2019-04-09-a-17.09.03-150x150.png',
page_url: 'https://research.pasteur.fr/en/member/isabelle-cailleau/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264121855,
size: 0.5,
source: 53264,
target: 121855 });
// 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: 121789,
label: 'MEMBER: Mariela Furstenheim',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/mariela-furstenheim/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264121789,
size: 0.5,
source: 53264,
target: 121789 });
// 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: 121771,
label: 'MEMBER: Chloé Bohers',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/02/research_pasteur-chloe-bohers-2-2-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/chloe-bohers/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264121771,
size: 0.5,
source: 53264,
target: 121771 });
// 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: 121543,
label: 'MEMBER: Eugen Pfeifer',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/02/research_pasteur-profile_picture-150x150.png',
page_url: 'https://research.pasteur.fr/en/member/eugen-pfeifer/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264121543,
size: 0.5,
source: 53264,
target: 121543 });
// 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: 121426,
label: 'MEMBER: Stéphane Goussin',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/02/research_pasteur-sgoussin-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/stephane-goussin/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264121426,
size: 0.5,
source: 53264,
target: 121426 });
// 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: 121157,
label: 'MEMBER: Adrien Blisnick',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/01/research_pasteur-adrien-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/adrien-blisnick/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264121157,
size: 0.5,
source: 53264,
target: 121157 });
// 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: 121143,
label: 'MEMBER: Amaury Bignaud',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/02/research_pasteur-amaury-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/amaury-bignaud/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264121143,
size: 0.5,
source: 53264,
target: 121143 });
// 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: 121115,
label: 'MEMBER: Soufyan Fakroun',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/02/research_pasteur-img_20200204_080426_01-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/soufyan-fakroun/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264121115,
size: 0.5,
source: 53264,
target: 121115 });
// 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: 121094,
label: 'MEMBER: Descamps Aurélie',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/fr-descamps-aurelie/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264121094,
size: 0.5,
source: 53264,
target: 121094 });
// 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: 121034,
label: 'MEMBER: Pierre Garcia',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/02/research_pasteur-pierre-150x150.png',
page_url: 'https://research.pasteur.fr/en/member/pierre-garcia/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264121034,
size: 0.5,
source: 53264,
target: 121034 });
// 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: 121029,
label: 'MEMBER: Marine Lenon',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/02/research_pasteur-photo-3-150x150.png',
page_url: 'https://research.pasteur.fr/en/member/marine-lenon/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264121029,
size: 0.5,
source: 53264,
target: 121029 });
// 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: 121023,
label: 'MEMBER: Séverine Matheus',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/severine-matheus/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264121023,
size: 0.5,
source: 53264,
target: 121023 });
// 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: 120932,
label: 'MEMBER: Stanislas Thiriet-Rupert',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/07/research_pasteur-stanislas2-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/fr-stanislas-thiriet-rupert/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264120932,
size: 0.5,
source: 53264,
target: 120932 });
// 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: 120834,
label: 'MEMBER: Nathalie Petiot',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/01/research_pasteur-nathalie-petiot-web-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/nathalie-petiot/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264120834,
size: 0.5,
source: 53264,
target: 120834 });
// 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: 120810,
label: 'MEMBER: Pauline Formaglio',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/02/research_pasteur-pf_2019-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/fr-pauline-formaglio/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264120810,
size: 0.5,
source: 53264,
target: 120810 });
// 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: 120503,
label: 'MEMBER: Valerio Laghi',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/01/research_pasteur-valerio-laghi-photo-with-blur-1-scaled-e1604565899489-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/valerio-laghi/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264120503,
size: 0.5,
source: 53264,
target: 120503 });
// 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: 120486,
label: 'MEMBER: Léa Torcq',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/01/research_pasteur-lea-torcq-1-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/lea-torcq/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264120486,
size: 0.5,
source: 53264,
target: 120486 });
// 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: 120408,
label: 'MEMBER: Romain Duda',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/01/research_pasteur-romain-duda-img-20201109-204137-3171-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/romain-duda/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264120408,
size: 0.5,
source: 53264,
target: 120408 });
// 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: 120295,
label: 'MEMBER: Lea Swistak',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/01/research_pasteur-lea-swistak-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/lea-swistak/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264120295,
size: 0.5,
source: 53264,
target: 120295 });
// 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: 120096,
label: 'MEMBER: Mélanie Hennart',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/01/research_pasteur-melaniehennart-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/melanie-hennart/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264120096,
size: 0.5,
source: 53264,
target: 120096 });
// 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: 120059,
label: 'MEMBER: Paolo Bosetti',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/03/research_pasteur-20190314_185852-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/paolo-bosetti/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264120059,
size: 0.5,
source: 53264,
target: 120059 });
// 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: 119690,
label: 'MEMBER: Rayan Chikhi',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/05/research_pasteur-photo_pasteur-150x150.png',
page_url: 'https://research.pasteur.fr/en/member/rayan-chikhi/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264119690,
size: 0.5,
source: 53264,
target: 119690 });
// 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: 119399,
label: 'MEMBER: Yasaman Karami',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/01/research_pasteur-screenshot-from-2019-01-10-11-37-05-150x150.png',
page_url: 'https://research.pasteur.fr/en/member/fr-yasaman-karami/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264119399,
size: 0.5,
source: 53264,
target: 119399 });
// 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: 119326,
label: 'MEMBER: Xian Tang',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/xian-tang/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264119326,
size: 0.5,
source: 53264,
target: 119326 });
// 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: 119322,
label: 'MEMBER: Rémy Robinot',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/02/research_pasteur-sans-titre-2-150x150.png',
page_url: 'https://research.pasteur.fr/en/member/remy-robinot/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264119322,
size: 0.5,
source: 53264,
target: 119322 });
// 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: 119310,
label: 'MEMBER: Stacy Gellenoncourt',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/04/research_pasteur-photo-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/stacy-gellenoncourt/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264119310,
size: 0.5,
source: 53264,
target: 119310 });
// 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: 119259,
label: 'MEMBER: Florence Campana',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/fr-florence-campana/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264119259,
size: 0.5,
source: 53264,
target: 119259 });
// 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: 119254,
label: 'MEMBER: Benjamin Devauchelle',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/03/research_pasteur-capture-decran-2019-03-01-a-14.34.49-150x150.png',
page_url: 'https://research.pasteur.fr/en/member/fr-benjamin-devauchelle/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264119254,
size: 0.5,
source: 53264,
target: 119254 });
// 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: 118894,
label: 'MEMBER: Marion Le Foll',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/01/research_pasteur-marion-le-foll-photo-portrait-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/marion-le-foll/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264118894,
size: 0.5,
source: 53264,
target: 118894 });
// 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: 118813,
label: 'MEMBER: Margot Sahnine',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/margot-sahnine/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264118813,
size: 0.5,
source: 53264,
target: 118813 });
// 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: 118781,
label: 'MEMBER: Matthias Groszer',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/01/research_pasteur-capture-decran-2019-01-21-a-18.27.59-150x150.png',
page_url: 'https://research.pasteur.fr/en/member/matthias-groszer/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264118781,
size: 0.5,
source: 53264,
target: 118781 });
// 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: 118618,
label: 'MEMBER: Alícia Corbellini Piffer',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/01/research_pasteur-img-20181231-wa00244-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/alicia-corbellini-piffer/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264118618,
size: 0.5,
source: 53264,
target: 118618 });
// 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: 118549,
label: 'MEMBER: Nathalie Clément',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2018/12/research_pasteur-nathalie-clement-clement-nathalie-9576-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/fr-nathalie-clement/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264118549,
size: 0.5,
source: 53264,
target: 118549 });
// 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: 118432,
label: 'MEMBER: Matthijn Vos',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/04/research_pasteur-matthijn-vos-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/matthijn-vos/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264118432,
size: 0.5,
source: 53264,
target: 118432 });
// 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: 118315,
label: 'MEMBER: Sumith Kumar',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/10/research_pasteur-passport-photo-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/sumith-kumar/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264118315,
size: 0.5,
source: 53264,
target: 118315 });
// 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: 118254,
label: 'MEMBER: Cheng Chen',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/02/research_pasteur-capture-decran-2020-02-25-a-14.29.43-150x150.png',
page_url: 'https://research.pasteur.fr/en/member/cheng-chen/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264118254,
size: 0.5,
source: 53264,
target: 118254 });
// 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: 118005,
label: 'MEMBER: Sandrine Royer-Devaux',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/sandrine-royer-devaux/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264118005,
size: 0.5,
source: 53264,
target: 118005 });
// 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: 118003,
label: 'MEMBER: Agnès Raymond-Denise',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/agnes-raymond-denise/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264118003,
size: 0.5,
source: 53264,
target: 118003 });
// 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: 117840,
label: 'MEMBER: Pierre Lê-Bury',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2018/12/research_pasteur-photo-pierre-le-bury-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/pierre-le-bury/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264117840,
size: 0.5,
source: 53264,
target: 117840 });
// 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: 117827,
label: 'MEMBER: Delphine Bonhomme',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2018/12/research_pasteur-dscf3023-copie-1-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/fr-delphine-bonhomme/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264117827,
size: 0.5,
source: 53264,
target: 117827 });
// 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: 117732,
label: 'MEMBER: Deborah Delaune',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/deborah-delaune/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264117732,
size: 0.5,
source: 53264,
target: 117732 });
// 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: 117593,
label: 'MEMBER: Yuanyuan Li',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/07/research_pasteur-2-1-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/fr-yuanyuan-li/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264117593,
size: 0.5,
source: 53264,
target: 117593 });
// 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: 117326,
label: 'MEMBER: Max Bonomi',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/03/research_pasteur-njkzmdmz-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/massimiliano-bonomi/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264117326,
size: 0.5,
source: 53264,
target: 117326 });
// 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: 117296,
label: 'MEMBER: Maylis Lejeune',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2018/11/research_pasteur-maylis_2017-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/maylis-lejeune/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264117296,
size: 0.5,
source: 53264,
target: 117296 });
// 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: 117104,
label: 'MEMBER: Alexey Mazur',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2018/11/research_pasteur-alexey-mazur-akm3-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/alexey-mazur/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264117104,
size: 0.5,
source: 53264,
target: 117104 });
// 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: 117049,
label: 'MEMBER: Estelle Dacheux',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2018/11/research_pasteur-photo-pro_dacheux-estelle-5-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/estelle-dacheux/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264117049,
size: 0.5,
source: 53264,
target: 117049 });
// 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: 116816,
label: 'MEMBER: Sara Chehboub',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2018/11/research_pasteur-chehboub-sara-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/sara-chehboub/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264116816,
size: 0.5,
source: 53264,
target: 116816 });
// 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: 116577,
label: 'MEMBER: Ignacio Fernandez',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2018/11/research_pasteur-img_4481-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/fr-ignacio-fernandez/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264116577,
size: 0.5,
source: 53264,
target: 116577 });
// 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: 116573,
label: 'MEMBER: stefano Pietropaoli',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/fr-stefano-pietropaoli/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264116573,
size: 0.5,
source: 53264,
target: 116573 });
// 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: 116456,
label: 'MEMBER: Tobias Holm Bønnelykke',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/01/research_pasteur-tobias_dsc8517-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/tobias-bonnelykke/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264116456,
size: 0.5,
source: 53264,
target: 116456 });
// 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: 116367,
label: 'MEMBER: Lasse Toftdal Dynesen',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2018/11/research_pasteur-lasse-toftdal-dynesen-4ca8332d-959e-4760-8d01-e42953f1a747-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/lasse-toftdal-dynesen/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264116367,
size: 0.5,
source: 53264,
target: 116367 });
// adding node
var x_node = Math.cos(2 * 1490 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1490 * Math.PI / N) * 10;
g.nodes.push({
id: 116350,
label: 'MEMBER: Manish Singh',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2018/11/research_pasteur-sans-titre-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/manish-singh/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264116350,
size: 0.5,
source: 53264,
target: 116350 });
// adding node
var x_node = Math.cos(2 * 1491 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1491 * Math.PI / N) * 10;
g.nodes.push({
id: 116169,
label: 'MEMBER: Dandan Liu',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2018/11/research_pasteur-dandan-150x150.png',
page_url: 'https://research.pasteur.fr/en/member/dandan-liu/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264116169,
size: 0.5,
source: 53264,
target: 116169 });
// adding node
var x_node = Math.cos(2 * 1492 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1492 * Math.PI / N) * 10;
g.nodes.push({
id: 116156,
label: 'MEMBER: Parisa Khalilian',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2018/11/research_pasteur-parisa-khalilian_crop-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/parisa-khalilian/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264116156,
size: 0.5,
source: 53264,
target: 116156 });
// adding node
var x_node = Math.cos(2 * 1493 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1493 * Math.PI / N) * 10;
g.nodes.push({
id: 116104,
label: 'MEMBER: Nina Ljubojevic',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2018/11/research_pasteur-nina-ljubojevic-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/nina-ljubojevic/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264116104,
size: 0.5,
source: 53264,
target: 116104 });
// adding node
var x_node = Math.cos(2 * 1494 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1494 * Math.PI / N) * 10;
g.nodes.push({
id: 116022,
label: 'MEMBER: Michael Henderson',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2018/11/research_pasteur-michael-henderson-2_crop-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/michael-henderson/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264116022,
size: 0.5,
source: 53264,
target: 116022 });
// adding node
var x_node = Math.cos(2 * 1495 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1495 * Math.PI / N) * 10;
g.nodes.push({
id: 115834,
label: 'MEMBER: David Morizet',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2018/10/research_pasteur-img-20181026-wa0000-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/david-morizet/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264115834,
size: 0.5,
source: 53264,
target: 115834 });
// adding node
var x_node = Math.cos(2 * 1496 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1496 * Math.PI / N) * 10;
g.nodes.push({
id: 115761,
label: 'MEMBER: Jonathan Dhenin',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2018/10/research_pasteur-img_9642-1-copie-2-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/jonathan-dhenin/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264115761,
size: 0.5,
source: 53264,
target: 115761 });
// adding node
var x_node = Math.cos(2 * 1497 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1497 * Math.PI / N) * 10;
g.nodes.push({
id: 115680,
label: 'MEMBER: Aline Lefebvre',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2020/03/research_pasteur-alinelefebvre-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/fr-aline-lefebvre/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264115680,
size: 0.5,
source: 53264,
target: 115680 });
// adding node
var x_node = Math.cos(2 * 1498 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1498 * Math.PI / N) * 10;
g.nodes.push({
id: 115588,
label: 'MEMBER: Andrée Diakité',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/03/research_pasteur-ad-photo_2367-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/andree-diakite/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264115588,
size: 0.5,
source: 53264,
target: 115588 });
// adding node
var x_node = Math.cos(2 * 1499 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1499 * Math.PI / N) * 10;
g.nodes.push({
id: 115051,
label: 'MEMBER: Chongfa Tang',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/chongfa-tang/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264115051,
size: 0.5,
source: 53264,
target: 115051 });
// adding node
var x_node = Math.cos(2 * 1500 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1500 * Math.PI / N) * 10;
g.nodes.push({
id: 114976,
label: 'MEMBER: Gabriela Ferreira de Medeiros',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2018/10/research_pasteur-gabi-pic-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/gabriela-ferreira-de-medeiros/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264114976,
size: 0.5,
source: 53264,
target: 114976 });
// adding node
var x_node = Math.cos(2 * 1501 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1501 * Math.PI / N) * 10;
g.nodes.push({
id: 114900,
label: 'MEMBER: Felix Streicher',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2018/11/research_pasteur-id_fstreicher-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/felix-streicher/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264114900,
size: 0.5,
source: 53264,
target: 114900 });
// adding node
var x_node = Math.cos(2 * 1502 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1502 * Math.PI / N) * 10;
g.nodes.push({
id: 114847,
label: 'MEMBER: Gustave Ronteix',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2018/10/research_pasteur-photo_face-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/gustave-ronteix/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264114847,
size: 0.5,
source: 53264,
target: 114847 });
// adding node
var x_node = Math.cos(2 * 1503 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1503 * Math.PI / N) * 10;
g.nodes.push({
id: 114500,
label: 'MEMBER: Daniela Di Girolamo',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2018/10/research_pasteur-daniela-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/daniela-di-girolamo/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264114500,
size: 0.5,
source: 53264,
target: 114500 });
// adding node
var x_node = Math.cos(2 * 1504 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1504 * Math.PI / N) * 10;
g.nodes.push({
id: 114462,
label: 'MEMBER: Nathan Mackowski',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2018/10/research_pasteur-nathan-picture-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/fr-nathan-mackowski/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264114462,
size: 0.5,
source: 53264,
target: 114462 });
// adding node
var x_node = Math.cos(2 * 1505 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1505 * Math.PI / N) * 10;
g.nodes.push({
id: 113715,
label: 'MEMBER: Pierre Bost',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2018/09/research_pasteur-pierre-bost-cropped-1-150x150.jpeg',
page_url: 'https://research.pasteur.fr/en/member/pierre-bost/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264113715,
size: 0.5,
source: 53264,
target: 113715 });
// adding node
var x_node = Math.cos(2 * 1506 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1506 * Math.PI / N) * 10;
g.nodes.push({
id: 113642,
label: 'MEMBER: Caroline Binet',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2018/10/research_pasteur-njkyody3-2-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/caroline-binet/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264113642,
size: 0.5,
source: 53264,
target: 113642 });
// adding node
var x_node = Math.cos(2 * 1507 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1507 * Math.PI / N) * 10;
g.nodes.push({
id: 113600,
label: 'MEMBER: Luc de Chaisemartin',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2018/10/research_pasteur-mouse-cap-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/luc-de-chaisemartin/',
size: 10,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 53264113600,
size: 0.5,
source: 53264,
target: 113600 });
// adding node
var x_node = Math.cos(2 * 1508 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1508 * Math.PI / N) * 10;
g.nodes.push({
id: 113560,
label: 'MEMBER: Antoine Nougairede',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2018/09/research_pasteur-antoine_2018-150x150.jpg',