Skip to content

Instantly share code, notes, and snippets.

@Gijs-Koot
Last active October 1, 2017 13:00
Show Gist options
  • Save Gijs-Koot/601f8bbcf027df866dcd3d5f0b18be10 to your computer and use it in GitHub Desktop.
Save Gijs-Koot/601f8bbcf027df866dcd3d5f0b18be10 to your computer and use it in GitHub Desktop.
Import train network madrid as gexf. See http://moreno.ss.uci.edu/data.html#train.
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "code",
"execution_count": 12,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"b'DL\\r\\nN=70\\r\\nFORMAT = EDGELIST1 DIAGONAL ABSENT\\r\\nLABELS:\\r\\n\"Jamal Zougam \"\\r\\n\"Mohamed Bekkali \"\\r\\n\"Mohamed'"
]
},
"execution_count": 12,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"url = \"http://moreno.ss.uci.edu/train.dat\"\n",
"\n",
"import requests\n",
"import networkx as nx\n",
"\n",
"txt = requests.get(url).content\n",
"\n",
"txt[:100]"
]
},
{
"cell_type": "code",
"execution_count": 14,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"['DL',\n",
" 'N=70',\n",
" 'FORMAT = EDGELIST1 DIAGONAL ABSENT',\n",
" 'LABELS:',\n",
" '\"Jamal Zougam \"',\n",
" '\"Mohamed Bekkali \"',\n",
" '\"Mohamed Chaoui\"',\n",
" '\"Vinay Kholy\"',\n",
" '\"Suresh Kumar \"',\n",
" '\"Mohamed Chedadi \"']"
]
},
"execution_count": 14,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"lines = txt.decode(\"utf-8\", errors=\"ignore\").split(\"\\r\\n\")\n",
"\n",
"lines[:5]"
]
},
{
"cell_type": "code",
"execution_count": 18,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"[(1, 'N=70'),\n",
" (2, 'FORMAT = EDGELIST1 DIAGONAL ABSENT'),\n",
" (3, 'LABELS:'),\n",
" (74, 'DATA:')]"
]
},
"execution_count": 18,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"[(i, l) for i, l in enumerate(lines) if (l.upper() == l) and len(l) > 3][:4]"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"long = [\n",
" \"Trust--friendship (contact, kinship, links in the telephone center).\",\n",
" \"Ties to Al Qaeda and to Osama Bin Laden.\",\n",
" \"Co-participation in training camps and/or wars.\",\n",
" \"Co-participation in previous terrorist Attacks (Sept 11, Casablanca).\"]\n",
"\n",
"short = [\n",
" \"friend\",\n",
" \"alqaeda_ties\",\n",
" \"cotraining\",\n",
" \"coattempt\"\n",
"]"
]
},
{
"cell_type": "code",
"execution_count": 56,
"metadata": {
"scrolled": true
},
"outputs": [],
"source": [
"g = nx.Graph()\n",
"\n",
"## add nodes\n",
"for i, l in enumerate(lines[4:74]):\n",
" name = l.strip('\" ,')\n",
" g.add_node(i + 1, name = name)\n",
"\n",
"## add edges\n",
"for i, l in enumerate(lines[75:-2]):\n",
" fr, to, t = [int(x) for x in l.strip().split(\" \")]\n",
" g.add_edge(fr, to, desc = short[t - 1], long_desc = long[t - 1])"
]
},
{
"cell_type": "code",
"execution_count": 57,
"metadata": {},
"outputs": [],
"source": [
"nx.write_gexf(g, \"./train.gexf\")"
]
},
{
"cell_type": "code",
"execution_count": 58,
"metadata": {
"scrolled": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"<?xml version='1.0' encoding='utf-8'?>\r\n",
"<gexf version=\"1.1\" xmlns=\"http://www.gexf.net/1.1draft\" xmlns:viz=\"http://www.gexf.net/1.1draft/viz\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xsi:schemaLocation=\"http://www.w3.org/2001/XMLSchema-instance\">\r\n",
" <graph defaultedgetype=\"undirected\" mode=\"static\">\r\n",
" <attributes class=\"edge\" mode=\"static\">\r\n",
" <attribute id=\"1\" title=\"desc\" type=\"string\" />\r\n",
" <attribute id=\"2\" title=\"long_desc\" type=\"string\" />\r\n",
" </attributes>\r\n",
" <attributes class=\"node\" mode=\"static\">\r\n",
" <attribute id=\"0\" title=\"name\" type=\"string\" />\r\n",
" </attributes>\r\n",
" <nodes>\r\n",
" <node id=\"1\" label=\"1\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"0\" value=\"Jamal Zougam\" />\r\n",
" </attvalues>\r\n",
" </node>\r\n",
" <node id=\"2\" label=\"2\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"0\" value=\"Mohamed Bekkali\" />\r\n",
" </attvalues>\r\n",
" </node>\r\n",
" <node id=\"3\" label=\"3\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"0\" value=\"Mohamed Chaoui\" />\r\n",
" </attvalues>\r\n",
" </node>\r\n",
" <node id=\"4\" label=\"4\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"0\" value=\"Vinay Kholy\" />\r\n",
" </attvalues>\r\n",
" </node>\r\n",
" <node id=\"5\" label=\"5\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"0\" value=\"Suresh Kumar\" />\r\n",
" </attvalues>\r\n",
" </node>\r\n",
" <node id=\"6\" label=\"6\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"0\" value=\"Mohamed Chedadi\" />\r\n",
" </attvalues>\r\n",
" </node>\r\n",
" <node id=\"7\" label=\"7\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"0\" value=\"Imad Eddin Barakat\" />\r\n",
" </attvalues>\r\n",
" </node>\r\n",
" <node id=\"8\" label=\"8\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"0\" value=\"Abdelaziz Benyaich\" />\r\n",
" </attvalues>\r\n",
" </node>\r\n",
" <node id=\"9\" label=\"9\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"0\" value=\"Abu Abderrahame\" />\r\n",
" </attvalues>\r\n",
" </node>\r\n",
" <node id=\"10\" label=\"10\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"0\" value=\"Omar Dhegayes\" />\r\n",
" </attvalues>\r\n",
" </node>\r\n",
" <node id=\"11\" label=\"11\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"0\" value=\"Amer Azizi\" />\r\n",
" </attvalues>\r\n",
" </node>\r\n",
" <node id=\"12\" label=\"12\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"0\" value=\"Abu Musad Alsakaoui\" />\r\n",
" </attvalues>\r\n",
" </node>\r\n",
" <node id=\"13\" label=\"13\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"0\" value=\"Mohamed Atta\" />\r\n",
" </attvalues>\r\n",
" </node>\r\n",
" <node id=\"14\" label=\"14\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"0\" value=\"Ramzi Binalshibh\" />\r\n",
" </attvalues>\r\n",
" </node>\r\n",
" <node id=\"15\" label=\"15\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"0\" value=\"Mohamed Belfatmi\" />\r\n",
" </attvalues>\r\n",
" </node>\r\n",
" <node id=\"16\" label=\"16\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"0\" value=\"Said Bahaji\" />\r\n",
" </attvalues>\r\n",
" </node>\r\n",
" <node id=\"17\" label=\"17\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"0\" value=\"Al Amrous\" />\r\n",
" </attvalues>\r\n",
" </node>\r\n",
" <node id=\"18\" label=\"18\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"0\" value=\"Galeb Kalaje\" />\r\n",
" </attvalues>\r\n",
" </node>\r\n",
" <node id=\"19\" label=\"19\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"0\" value=\"Abderrahim Zbakh\" />\r\n",
" </attvalues>\r\n",
" </node>\r\n",
" <node id=\"20\" label=\"20\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"0\" value=\"Farid Oulad Ali\" />\r\n",
" </attvalues>\r\n",
" </node>\r\n",
" <node id=\"21\" label=\"21\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"0\" value=\"Jos Emilio Surez\" />\r\n",
" </attvalues>\r\n",
" </node>\r\n",
" <node id=\"22\" label=\"22\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"0\" value=\"Khalid Ouled Akcha\" />\r\n",
" </attvalues>\r\n",
" </node>\r\n",
" <node id=\"23\" label=\"23\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"0\" value=\"Rafa Zuher\" />\r\n",
" </attvalues>\r\n",
" </node>\r\n",
" <node id=\"24\" label=\"24\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"0\" value=\"Naima Oulad Akcha\" />\r\n",
" </attvalues>\r\n",
" </node>\r\n",
" <node id=\"25\" label=\"25\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"0\" value=\"Abdelkarim el Mejjati\" />\r\n",
" </attvalues>\r\n",
" </node>\r\n",
" <node id=\"26\" label=\"26\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"0\" value=\"Abdelhalak Bentasser\" />\r\n",
" </attvalues>\r\n",
" </node>\r\n",
" <node id=\"27\" label=\"27\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"0\" value=\"Anwar Adnan Ahmad\" />\r\n",
" </attvalues>\r\n",
" </node>\r\n",
" <node id=\"28\" label=\"28\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"0\" value=\"Basel Ghayoun\" />\r\n",
" </attvalues>\r\n",
" </node>\r\n",
" <node id=\"29\" label=\"29\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"0\" value=\"Faisal Alluch\" />\r\n",
" </attvalues>\r\n",
" </node>\r\n",
" <node id=\"30\" label=\"30\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"0\" value=\"S B Abdelmajid Fakhet\" />\r\n",
" </attvalues>\r\n",
" </node>\r\n",
" <node id=\"31\" label=\"31\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"0\" value=\"Jamal Ahmidan\" />\r\n",
" </attvalues>\r\n",
" </node>\r\n",
" <node id=\"32\" label=\"32\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"0\" value=\"Said Ahmidan\" />\r\n",
" </attvalues>\r\n",
" </node>\r\n",
" <node id=\"33\" label=\"33\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"0\" value=\"Hamid Ahmidan\" />\r\n",
" </attvalues>\r\n",
" </node>\r\n",
" <node id=\"34\" label=\"34\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"0\" value=\"Mustafa Ahmidan\" />\r\n",
" </attvalues>\r\n",
" </node>\r\n",
" <node id=\"35\" label=\"35\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"0\" value=\"Antonio Toro\" />\r\n",
" </attvalues>\r\n",
" </node>\r\n",
" <node id=\"36\" label=\"36\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"0\" value=\"Mohamed Oulad Akcha\" />\r\n",
" </attvalues>\r\n",
" </node>\r\n",
" <node id=\"37\" label=\"37\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"0\" value=\"Rachid Oulad Akcha\" />\r\n",
" </attvalues>\r\n",
" </node>\r\n",
" <node id=\"38\" label=\"38\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"0\" value=\"Mamoun Darkazanli\" />\r\n",
" </attvalues>\r\n",
" </node>\r\n",
" <node id=\"39\" label=\"39\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"0\" value=\"Fouad El Morabit Anghar\" />\r\n",
" </attvalues>\r\n",
" </node>\r\n",
" <node id=\"40\" label=\"40\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"0\" value=\"Abdeluahid Berrak\" />\r\n",
" </attvalues>\r\n",
" </node>\r\n",
" <node id=\"41\" label=\"41\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"0\" value=\"Said Berrak\" />\r\n",
" </attvalues>\r\n",
" </node>\r\n",
" <node id=\"42\" label=\"42\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"0\" value=\"Waanid Altaraki Almasri\" />\r\n",
" </attvalues>\r\n",
" </node>\r\n",
" <node id=\"43\" label=\"43\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"0\" value=\"Abddenabi Koujma\" />\r\n",
" </attvalues>\r\n",
" </node>\r\n",
" <node id=\"44\" label=\"44\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"0\" value=\"Otman El Gnaut\" />\r\n",
" </attvalues>\r\n",
" </node>\r\n",
" <node id=\"45\" label=\"45\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"0\" value=\"Abdelilah el Fouad\" />\r\n",
" </attvalues>\r\n",
" </node>\r\n",
" <node id=\"46\" label=\"46\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"0\" value=\"Mohamad Bard Ddin Akkab\" />\r\n",
" </attvalues>\r\n",
" </node>\r\n",
" <node id=\"47\" label=\"47\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"0\" value=\"Abu Zubaidah\" />\r\n",
" </attvalues>\r\n",
" </node>\r\n",
" <node id=\"48\" label=\"48\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"0\" value=\"Sanel Sjekirika\" />\r\n",
" </attvalues>\r\n",
" </node>\r\n",
" <node id=\"49\" label=\"49\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"0\" value=\"Parlindumgan Siregar\" />\r\n",
" </attvalues>\r\n",
" </node>\r\n",
" <node id=\"50\" label=\"50\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"0\" value=\"El Hemir\" />\r\n",
" </attvalues>\r\n",
" </node>\r\n",
" <node id=\"51\" label=\"51\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"0\" value=\"Anuar Asri Rifaat\" />\r\n",
" </attvalues>\r\n",
" </node>\r\n",
" <node id=\"52\" label=\"52\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"0\" value=\"Rachid Adli\" />\r\n",
" </attvalues>\r\n",
" </node>\r\n",
" <node id=\"53\" label=\"53\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"0\" value=\"Ghasoub Al Albrash\" />\r\n",
" </attvalues>\r\n",
" </node>\r\n",
" <node id=\"54\" label=\"54\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"0\" value=\"Said Chedadi\" />\r\n",
" </attvalues>\r\n",
" </node>\r\n",
" <node id=\"55\" label=\"55\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"0\" value=\"Mohamed Bahaiah\" />\r\n",
" </attvalues>\r\n",
" </node>\r\n",
" <node id=\"56\" label=\"56\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"0\" value=\"Taysir Alouny\" />\r\n",
" </attvalues>\r\n",
" </node>\r\n",
" <node id=\"57\" label=\"57\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"0\" value=\"OM. Othman &quot;Abu Qutada\" />\r\n",
" </attvalues>\r\n",
" </node>\r\n",
" <node id=\"58\" label=\"58\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"0\" value=\"Shakur\" />\r\n",
" </attvalues>\r\n",
" </node>\r\n",
" <node id=\"59\" label=\"59\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"0\" value=\"Driss Chebli\" />\r\n",
" </attvalues>\r\n",
" </node>\r\n",
" <node id=\"60\" label=\"60\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"0\" value=\"Abdul Fatal\" />\r\n",
" </attvalues>\r\n",
" </node>\r\n",
" <node id=\"61\" label=\"61\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"0\" value=\"Mohamed El Egipcio\" />\r\n",
" </attvalues>\r\n",
" </node>\r\n",
" <node id=\"62\" label=\"62\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"0\" value=\"Nasredine Boushoa\" />\r\n",
" </attvalues>\r\n",
" </node>\r\n",
" <node id=\"63\" label=\"63\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"0\" value=\"Semaan Gaby Eid\" />\r\n",
" </attvalues>\r\n",
" </node>\r\n",
" <node id=\"64\" label=\"64\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"0\" value=\"Emilio Llamo\" />\r\n",
" </attvalues>\r\n",
" </node>\r\n",
" <node id=\"65\" label=\"65\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"0\" value=\"Ivan Granados\" />\r\n",
" </attvalues>\r\n",
" </node>\r\n",
" <node id=\"66\" label=\"66\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"0\" value=\"Raul Gonzales Perez\" />\r\n",
" </attvalues>\r\n",
" </node>\r\n",
" <node id=\"67\" label=\"67\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"0\" value=\"El Gitanillo\" />\r\n",
" </attvalues>\r\n",
" </node>\r\n",
" <node id=\"68\" label=\"68\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"0\" value=\"Moutaz Almallah\" />\r\n",
" </attvalues>\r\n",
" </node>\r\n",
" <node id=\"69\" label=\"69\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"0\" value=\"Mohamed Almallah\" />\r\n",
" </attvalues>\r\n",
" </node>\r\n",
" <node id=\"70\" label=\"70\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"0\" value=\"Yousef Hichman\" />\r\n",
" </attvalues>\r\n",
" </node>\r\n",
" </nodes>\r\n",
" <edges>\r\n",
" <edge id=\"0\" source=\"1\" target=\"2\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"1\" source=\"1\" target=\"3\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"cotraining\" />\r\n",
" <attvalue for=\"2\" value=\"Co-participation in training camps and/or wars.\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"2\" source=\"1\" target=\"4\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"3\" source=\"1\" target=\"5\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"4\" source=\"1\" target=\"6\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"5\" source=\"1\" target=\"7\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"coattempt\" />\r\n",
" <attvalue for=\"2\" value=\"Co-participation in previous terrorist Attacks (Sept 11, Casablanca).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"6\" source=\"1\" target=\"8\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"7\" source=\"1\" target=\"9\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"8\" source=\"1\" target=\"11\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"coattempt\" />\r\n",
" <attvalue for=\"2\" value=\"Co-participation in previous terrorist Attacks (Sept 11, Casablanca).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"9\" source=\"1\" target=\"12\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"10\" source=\"1\" target=\"13\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"11\" source=\"1\" target=\"14\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"alqaeda_ties\" />\r\n",
" <attvalue for=\"2\" value=\"Ties to Al Qaeda and to Osama Bin Laden.\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"12\" source=\"1\" target=\"15\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"alqaeda_ties\" />\r\n",
" <attvalue for=\"2\" value=\"Ties to Al Qaeda and to Osama Bin Laden.\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"13\" source=\"1\" target=\"16\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"alqaeda_ties\" />\r\n",
" <attvalue for=\"2\" value=\"Ties to Al Qaeda and to Osama Bin Laden.\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"14\" source=\"1\" target=\"18\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"alqaeda_ties\" />\r\n",
" <attvalue for=\"2\" value=\"Ties to Al Qaeda and to Osama Bin Laden.\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"15\" source=\"1\" target=\"19\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"16\" source=\"1\" target=\"24\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"17\" source=\"1\" target=\"25\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"18\" source=\"1\" target=\"28\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"19\" source=\"1\" target=\"30\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"20\" source=\"1\" target=\"31\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"21\" source=\"1\" target=\"33\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"22\" source=\"1\" target=\"40\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"alqaeda_ties\" />\r\n",
" <attvalue for=\"2\" value=\"Ties to Al Qaeda and to Osama Bin Laden.\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"23\" source=\"1\" target=\"41\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"alqaeda_ties\" />\r\n",
" <attvalue for=\"2\" value=\"Ties to Al Qaeda and to Osama Bin Laden.\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"24\" source=\"1\" target=\"44\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"25\" source=\"1\" target=\"50\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"26\" source=\"1\" target=\"57\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"27\" source=\"1\" target=\"58\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"28\" source=\"1\" target=\"61\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"29\" source=\"2\" target=\"3\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"30\" source=\"3\" target=\"4\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"31\" source=\"3\" target=\"5\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"32\" source=\"3\" target=\"7\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"cotraining\" />\r\n",
" <attvalue for=\"2\" value=\"Co-participation in training camps and/or wars.\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"33\" source=\"3\" target=\"8\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"34\" source=\"3\" target=\"9\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"35\" source=\"3\" target=\"11\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"alqaeda_ties\" />\r\n",
" <attvalue for=\"2\" value=\"Ties to Al Qaeda and to Osama Bin Laden.\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"36\" source=\"3\" target=\"12\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"37\" source=\"3\" target=\"13\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"38\" source=\"3\" target=\"14\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"39\" source=\"3\" target=\"15\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"40\" source=\"3\" target=\"16\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"41\" source=\"3\" target=\"18\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"alqaeda_ties\" />\r\n",
" <attvalue for=\"2\" value=\"Ties to Al Qaeda and to Osama Bin Laden.\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"42\" source=\"3\" target=\"19\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"43\" source=\"3\" target=\"24\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"44\" source=\"3\" target=\"25\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"45\" source=\"3\" target=\"28\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"46\" source=\"3\" target=\"30\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"47\" source=\"3\" target=\"31\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"48\" source=\"3\" target=\"33\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"49\" source=\"3\" target=\"40\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"50\" source=\"3\" target=\"41\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"alqaeda_ties\" />\r\n",
" <attvalue for=\"2\" value=\"Ties to Al Qaeda and to Osama Bin Laden.\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"51\" source=\"3\" target=\"44\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"52\" source=\"3\" target=\"57\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"53\" source=\"3\" target=\"58\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"54\" source=\"3\" target=\"61\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"55\" source=\"4\" target=\"5\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"56\" source=\"4\" target=\"19\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"57\" source=\"4\" target=\"24\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"58\" source=\"4\" target=\"28\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"59\" source=\"4\" target=\"30\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"60\" source=\"4\" target=\"31\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"61\" source=\"4\" target=\"33\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"62\" source=\"4\" target=\"41\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"63\" source=\"5\" target=\"19\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"64\" source=\"5\" target=\"24\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"65\" source=\"5\" target=\"28\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"66\" source=\"5\" target=\"30\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"67\" source=\"5\" target=\"31\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"68\" source=\"5\" target=\"33\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"69\" source=\"5\" target=\"41\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"70\" source=\"6\" target=\"19\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"71\" source=\"6\" target=\"20\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"72\" source=\"6\" target=\"39\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"73\" source=\"6\" target=\"40\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"74\" source=\"6\" target=\"44\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"75\" source=\"6\" target=\"54\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"76\" source=\"7\" target=\"8\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"77\" source=\"7\" target=\"10\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"78\" source=\"7\" target=\"11\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"cotraining\" />\r\n",
" <attvalue for=\"2\" value=\"Co-participation in training camps and/or wars.\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"79\" source=\"7\" target=\"12\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"80\" source=\"7\" target=\"13\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"81\" source=\"7\" target=\"14\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"82\" source=\"7\" target=\"15\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"alqaeda_ties\" />\r\n",
" <attvalue for=\"2\" value=\"Ties to Al Qaeda and to Osama Bin Laden.\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"83\" source=\"7\" target=\"16\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"alqaeda_ties\" />\r\n",
" <attvalue for=\"2\" value=\"Ties to Al Qaeda and to Osama Bin Laden.\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"84\" source=\"7\" target=\"18\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"cotraining\" />\r\n",
" <attvalue for=\"2\" value=\"Co-participation in training camps and/or wars.\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"85\" source=\"7\" target=\"30\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"86\" source=\"7\" target=\"40\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"87\" source=\"7\" target=\"41\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"88\" source=\"7\" target=\"44\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"89\" source=\"7\" target=\"50\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"90\" source=\"7\" target=\"53\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"91\" source=\"7\" target=\"56\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"92\" source=\"7\" target=\"57\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"alqaeda_ties\" />\r\n",
" <attvalue for=\"2\" value=\"Ties to Al Qaeda and to Osama Bin Laden.\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"93\" source=\"7\" target=\"58\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"alqaeda_ties\" />\r\n",
" <attvalue for=\"2\" value=\"Ties to Al Qaeda and to Osama Bin Laden.\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"94\" source=\"7\" target=\"59\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"95\" source=\"7\" target=\"61\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"96\" source=\"8\" target=\"9\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"97\" source=\"8\" target=\"10\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"alqaeda_ties\" />\r\n",
" <attvalue for=\"2\" value=\"Ties to Al Qaeda and to Osama Bin Laden.\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"98\" source=\"8\" target=\"25\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"99\" source=\"9\" target=\"25\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"100\" source=\"11\" target=\"12\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"101\" source=\"11\" target=\"13\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"102\" source=\"11\" target=\"14\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"103\" source=\"11\" target=\"15\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"alqaeda_ties\" />\r\n",
" <attvalue for=\"2\" value=\"Ties to Al Qaeda and to Osama Bin Laden.\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"104\" source=\"11\" target=\"16\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"105\" source=\"11\" target=\"18\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"alqaeda_ties\" />\r\n",
" <attvalue for=\"2\" value=\"Ties to Al Qaeda and to Osama Bin Laden.\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"106\" source=\"11\" target=\"30\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"107\" source=\"11\" target=\"40\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"108\" source=\"11\" target=\"41\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"109\" source=\"11\" target=\"44\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"110\" source=\"11\" target=\"49\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"111\" source=\"11\" target=\"50\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"112\" source=\"11\" target=\"57\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"113\" source=\"11\" target=\"58\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"114\" source=\"11\" target=\"61\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"alqaeda_ties\" />\r\n",
" <attvalue for=\"2\" value=\"Ties to Al Qaeda and to Osama Bin Laden.\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"115\" source=\"12\" target=\"13\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"116\" source=\"12\" target=\"14\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"117\" source=\"12\" target=\"15\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"118\" source=\"12\" target=\"16\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"119\" source=\"12\" target=\"18\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"120\" source=\"12\" target=\"58\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"121\" source=\"13\" target=\"14\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"122\" source=\"13\" target=\"15\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"alqaeda_ties\" />\r\n",
" <attvalue for=\"2\" value=\"Ties to Al Qaeda and to Osama Bin Laden.\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"123\" source=\"13\" target=\"16\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"alqaeda_ties\" />\r\n",
" <attvalue for=\"2\" value=\"Ties to Al Qaeda and to Osama Bin Laden.\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"124\" source=\"13\" target=\"18\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"125\" source=\"13\" target=\"58\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"126\" source=\"14\" target=\"15\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"cotraining\" />\r\n",
" <attvalue for=\"2\" value=\"Co-participation in training camps and/or wars.\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"127\" source=\"14\" target=\"16\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"alqaeda_ties\" />\r\n",
" <attvalue for=\"2\" value=\"Ties to Al Qaeda and to Osama Bin Laden.\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"128\" source=\"14\" target=\"18\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"129\" source=\"14\" target=\"58\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"130\" source=\"15\" target=\"16\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"cotraining\" />\r\n",
" <attvalue for=\"2\" value=\"Co-participation in training camps and/or wars.\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"131\" source=\"15\" target=\"18\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"132\" source=\"15\" target=\"58\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"133\" source=\"15\" target=\"59\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"134\" source=\"16\" target=\"18\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"135\" source=\"16\" target=\"58\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"136\" source=\"16\" target=\"60\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"137\" source=\"18\" target=\"40\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"138\" source=\"18\" target=\"41\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"139\" source=\"18\" target=\"44\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"140\" source=\"18\" target=\"54\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"141\" source=\"18\" target=\"57\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"142\" source=\"18\" target=\"58\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"143\" source=\"18\" target=\"61\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"144\" source=\"19\" target=\"24\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"145\" source=\"19\" target=\"28\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"146\" source=\"19\" target=\"30\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"147\" source=\"19\" target=\"31\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"148\" source=\"19\" target=\"33\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"149\" source=\"19\" target=\"36\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"150\" source=\"19\" target=\"37\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"151\" source=\"19\" target=\"41\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"152\" source=\"19\" target=\"43\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"153\" source=\"19\" target=\"51\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"154\" source=\"20\" target=\"22\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"155\" source=\"20\" target=\"23\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"156\" source=\"20\" target=\"24\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"157\" source=\"20\" target=\"36\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"158\" source=\"20\" target=\"37\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"159\" source=\"21\" target=\"23\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"160\" source=\"21\" target=\"35\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"161\" source=\"21\" target=\"52\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"162\" source=\"21\" target=\"63\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"163\" source=\"21\" target=\"64\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"164\" source=\"21\" target=\"65\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"165\" source=\"21\" target=\"66\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"166\" source=\"21\" target=\"67\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"167\" source=\"22\" target=\"24\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"168\" source=\"22\" target=\"36\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"169\" source=\"22\" target=\"37\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"170\" source=\"22\" target=\"63\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"171\" source=\"23\" target=\"24\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"172\" source=\"24\" target=\"28\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"173\" source=\"24\" target=\"30\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"174\" source=\"24\" target=\"31\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"175\" source=\"24\" target=\"33\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"176\" source=\"24\" target=\"36\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"177\" source=\"24\" target=\"37\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"178\" source=\"24\" target=\"41\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"179\" source=\"24\" target=\"42\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"180\" source=\"25\" target=\"27\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"181\" source=\"25\" target=\"38\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"182\" source=\"25\" target=\"55\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"183\" source=\"25\" target=\"56\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"184\" source=\"27\" target=\"38\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"185\" source=\"27\" target=\"55\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"186\" source=\"27\" target=\"56\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"187\" source=\"28\" target=\"30\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"188\" source=\"28\" target=\"31\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"189\" source=\"28\" target=\"33\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"190\" source=\"28\" target=\"41\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"191\" source=\"28\" target=\"61\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"192\" source=\"30\" target=\"31\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"193\" source=\"30\" target=\"33\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"194\" source=\"30\" target=\"41\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"195\" source=\"31\" target=\"32\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"196\" source=\"31\" target=\"33\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"197\" source=\"31\" target=\"34\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"198\" source=\"31\" target=\"41\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"199\" source=\"31\" target=\"62\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"200\" source=\"31\" target=\"63\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"201\" source=\"32\" target=\"33\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"202\" source=\"32\" target=\"34\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"203\" source=\"33\" target=\"34\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"204\" source=\"33\" target=\"41\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"205\" source=\"34\" target=\"63\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"206\" source=\"34\" target=\"70\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"207\" source=\"35\" target=\"64\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"208\" source=\"35\" target=\"65\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"209\" source=\"35\" target=\"66\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"210\" source=\"35\" target=\"67\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"211\" source=\"36\" target=\"37\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"212\" source=\"38\" target=\"55\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"213\" source=\"38\" target=\"56\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"214\" source=\"39\" target=\"61\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"215\" source=\"40\" target=\"41\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"216\" source=\"40\" target=\"44\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"217\" source=\"40\" target=\"57\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"218\" source=\"40\" target=\"61\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"219\" source=\"40\" target=\"63\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"220\" source=\"41\" target=\"44\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"221\" source=\"41\" target=\"57\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"222\" source=\"41\" target=\"61\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"223\" source=\"44\" target=\"57\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"224\" source=\"44\" target=\"61\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"225\" source=\"45\" target=\"63\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"226\" source=\"50\" target=\"61\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"227\" source=\"55\" target=\"56\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"alqaeda_ties\" />\r\n",
" <attvalue for=\"2\" value=\"Ties to Al Qaeda and to Osama Bin Laden.\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"228\" source=\"56\" target=\"60\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"229\" source=\"61\" target=\"68\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"230\" source=\"61\" target=\"69\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"231\" source=\"63\" target=\"64\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"232\" source=\"63\" target=\"65\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"233\" source=\"63\" target=\"66\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"234\" source=\"63\" target=\"67\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"235\" source=\"63\" target=\"70\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"236\" source=\"64\" target=\"65\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"237\" source=\"64\" target=\"66\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"238\" source=\"64\" target=\"67\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"239\" source=\"65\" target=\"66\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"240\" source=\"65\" target=\"67\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"241\" source=\"66\" target=\"67\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" <edge id=\"242\" source=\"68\" target=\"69\">\r\n",
" <attvalues>\r\n",
" <attvalue for=\"1\" value=\"friend\" />\r\n",
" <attvalue for=\"2\" value=\"Trust--friendship (contact, kinship, links in the telephone center).\" />\r\n",
" </attvalues>\r\n",
" </edge>\r\n",
" </edges>\r\n",
" </graph>\r\n",
"</gexf>\r\n"
]
}
],
"source": [
"!cat ./train.gexf"
]
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.6.2"
}
},
"nbformat": 4,
"nbformat_minor": 2
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment