diff --git a/gephi/--level=1 b/gephi/--level=1 deleted file mode 100644 index 6e4f7af7671519b7ec7b7a571e89dd1bd51f5737..0000000000000000000000000000000000000000 Binary files a/gephi/--level=1 and /dev/null differ diff --git a/gephi/--level=3 b/gephi/--level=3 deleted file mode 100644 index 6e4f7af7671519b7ec7b7a571e89dd1bd51f5737..0000000000000000000000000000000000000000 Binary files a/gephi/--level=3 and /dev/null differ diff --git a/gephi/--level=5 b/gephi/--level=5 deleted file mode 100644 index 6e4f7af7671519b7ec7b7a571e89dd1bd51f5737..0000000000000000000000000000000000000000 Binary files a/gephi/--level=5 and /dev/null differ diff --git a/makefile b/makefile index 4125e6bf78b122841e5e701ddf7ced1e8f16fb17..efca59bd8c86427e6a1f4a41cc5ab9e581b725fd 100644 --- a/makefile +++ b/makefile @@ -1,12 +1,14 @@ caml_file := coef_to_csv csv caml_need_csv := point_assos_to_gephi graph_export caml_to_run := coef_to_csv. point_assos_to_gephi. graph_export. -all: init $(caml_file) $(caml_need_csv) complete_compile $(caml_to_run) complete_run clean +gefx_to_test := mynetwork +all: compile run clean test + +compile: init $(caml_file) $(caml_need_csv) complete_compile init: @echo "\nStart to compile all caml programs\n" - $(caml_file): cd script/src;ocamlopt $@.ml -o ../bin/$@.exe @@ -16,6 +18,11 @@ $(caml_need_csv): complete_compile: @echo "\nAll caml programs compiled !\n" +run: init_run $(caml_to_run) complete_run + +init_run: + @echo "Running files..." + $(caml_to_run): @echo "" cd script/bin;./$@exe @@ -26,11 +33,19 @@ complete_run: clean: @echo "Cleaning file." cd script/src;rm -v *.cmx *.o + @echo "File cleaned.\n" +test: init_test $(gefx_to_test) end_test +init_test: + @echo "Testing gefx file format" +$(gefx_to_test): + @echo "testing $@.gefx" + @cd test_format;xmllint --noout --schema gexf.xsd ../res_script/$@.gexf - +end_test: + @echo "All gefx have been tested\nTest Completed\n" diff --git a/script/src/graph_export.ml b/script/src/graph_export.ml index 96db4c7eb91f7ff0a6e659ea703b64f11d981866..25320e9ce152db09e1b1feee0a009f05340e01de 100644 --- a/script/src/graph_export.ml +++ b/script/src/graph_export.ml @@ -18,7 +18,14 @@ let create_gexf path node_data edge_data = </meta>\n"); (*End_HEADER*) (*Start graph*) - output_string oc " <graph>\n"; + output_string oc " <graph defaultedgetype=\"undirected\">\n"; + (*Ajout de la categorie*) + output_string oc + " <attributes class=\"node\"> + <attribute id=\"0\" title=\"cat\" type=\"string\"> + <default>Eleve</default> + </attribute> + </attributes>\n"; (*start nodes*) output_string oc " <nodes>\n"; @@ -28,7 +35,19 @@ let create_gexf path node_data edge_data = let id = Hashtbl.find htab "Id" in let label = Hashtbl.find htab "Label" in let cat = Hashtbl.find htab "Categorie" in - let nouvelle_ligne = Printf.sprintf " <node id=\"%s\" label=\"%s\"/>\n" id label in + + let nouvelle_ligne = + if cat = "Eleve" then + Printf.sprintf " <node id=\"%s\" label=\"%s\"/>\n" id label + else + Printf.sprintf +" <node id=\"%s\" label=\"%s\"> + <attvalues> + <attvalue for=\"0\" value=\"%s\"/> + </attvalues> + </node>\n" id label cat + in + output_string oc nouvelle_ligne ); @@ -43,9 +62,8 @@ let create_gexf path node_data edge_data = let id = Hashtbl.find htab "Id" in let src = Hashtbl.find htab "Source" in let tgt = Hashtbl.find htab "Target" in - let edge_type = if (Hashtbl.find htab "Type").[0] = 'U' then "undirected" else "directed" in let weight = Hashtbl.find htab "Weight" in - let nouvelle_ligne = Printf.sprintf " <edge id=\"%s\" source=\"%s\" target=\"%s\" type=\"%s\" weight=\"%s\"/>\n" id src tgt edge_type weight in + let nouvelle_ligne = Printf.sprintf " <edge id=\"%s\" source=\"%s\" target=\"%s\" weight=\"%s\"/>\n" id src tgt weight in output_string oc nouvelle_ligne ); @@ -69,7 +87,7 @@ let () = begin (*Id,Label,Categorie*) let edge_data = Csv.open_as_csv "../../res_script/edges_avec_fantome.csv" in (*Source,Target,Type,Id,Weight*) - create_gexf "../src/mynetwork.gexf" node_data edge_data; + create_gexf "../../res_script/mynetwork.gexf" node_data edge_data; diff --git a/script/src/mynetwork.gexf b/script/src/mynetwork.gexf deleted file mode 100644 index bf51ad9cb8bf774375cc4cfc74fb9c8fbdf9e1cd..0000000000000000000000000000000000000000 --- a/script/src/mynetwork.gexf +++ /dev/null @@ -1,1389 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<gexf xmlns="http://gexf.net/1.3" - xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" - xsi:schemaLocation="http://gexf.net/1.3 - http://gexf.net/1.3/gexf.xsd" - version="1.3"> - <meta lastmodifieddate="2025-04-08"> - <creator>Me</creator> - <description>A test file</description> - </meta> - <graph> - <nodes> - <node id="500" label="ZAHRAOUI Imane"/> - <node id="499" label="YAO Luc"/> - <node id="498" label="YANG Charles"/> - <node id="497" label="XU Loïc"/> - <node id="496" label="WANG Christophe"/> - <node id="495" label="VAUTERIN Pierre"/> - <node id="494" label="TUALLE Claire"/> - <node id="493" label="TRILLO Baptiste"/> - <node id="492" label="TENESI Franck"/> - <node id="491" label="TAVIANI Andrea"/> - <node id="490" label="TASSEMBÉDO Mâjid"/> - <node id="489" label="TARMOUN Chahla"/> - <node id="488" label="TAN Victor"/> - <node id="487" label="TAILLEFUMIER Théo"/> - <node id="486" label="SOUTIL Aurélien"/> - <node id="485" label="SOUISSI Rania"/> - <node id="484" label="SOUAM Yacine"/> - <node id="483" label="SIMOES Corentin"/> - <node id="482" label="SCHOLLAERT Maximilien"/> - <node id="481" label="SAES--VINCENSINI Mickaël"/> - <node id="480" label="RAVÉ-GOUCHET Jules"/> - <node id="479" label="RAMADANI Dorart"/> - <node id="478" label="RAJAOBELINA Fitahiry"/> - <node id="477" label="POLLART Nathan"/> - <node id="476" label="POLIDORI Ania"/> - <node id="475" label="PINEAU Augustin"/> - <node id="474" label="PEREIRA LAMAS Hugo"/> - <node id="473" label="PELLÉ Erwan"/> - <node id="472" label="OUZEGDOUH Adam"/> - <node id="471" label="OUJJA Anas"/> - <node id="470" label="OBER Emmanuel"/> - <node id="469" label="NOVO Steeven"/> - <node id="468" label="NOUV Ratanakmuny"/> - <node id="467" label="NGOUNE Ian Bright Perfection"/> - <node id="466" label="NGETH Laurent"/> - <node id="465" label="NEFZI Wacim"/> - <node id="464" label="NAIT KACI Yasmine"/> - <node id="463" label="MOYON Matthias"/> - <node id="462" label="MOUSTAINE Boutaina"/> - <node id="461" label="MOUNIR Moustapha"/> - <node id="460" label="MOUNIR Aida"/> - <node id="459" label="MOUBDI Sanaa"/> - <node id="458" label="MOHAMMAD Usman"/> - <node id="457" label="MICHAL Tangui"/> - <node id="456" label="MHICH Ilyas"/> - <node id="455" label="MEUNIER Maxime"/> - <node id="454" label="MESSINA Davide"/> - <node id="453" label="MESSADI Chaima"/> - <node id="452" label="MERIDJA Nabil"/> - <node id="451" label="MELLAH Claude"/> - <node id="450" label="MAZAN Kamil"/> - <node id="449" label="MARTINEZ Benoît"/> - <node id="448" label="MARCAURELIO Fabio"/> - <node id="447" label="MARBOEUF Clément"/> - <node id="446" label="MANAI Nour"/> - <node id="445" label="MALOT Marius"/> - <node id="444" label="LY Sovanleng"/> - <node id="443" label="LOMET William"/> - <node id="442" label="LHUILLIER Aurélien"/> - <node id="441" label="LETORT Julien"/> - <node id="440" label="LESTEVEN Elouan"/> - <node id="439" label="LEFÉE FAUVEL Loïc"/> - <node id="438" label="LE PREVOST Jade"/> - <node id="437" label="LE CORRE Paul"/> - <node id="436" label="LAURENT Pierre"/> - <node id="435" label="LALLEMANT Hugo"/> - <node id="434" label="KWA MOUTOME Noah"/> - <node id="433" label="KREIS Amaël"/> - <node id="432" label="KOUEMEKO KAZE Charly Do-Jael"/> - <node id="431" label="KOUDIRATY Mohamed"/> - <node id="430" label="KONATE Hawa"/> - <node id="429" label="KHAYAR Anas"/> - <node id="428" label="KASPAROGLU Alain"/> - <node id="427" label="KAO Essodonda Donatien"/> - <node id="426" label="KANAIE ATRIAN Sami"/> - <node id="425" label="KAMMOUN Yasmine"/> - <node id="424" label="KAMMOUN Dhia Eddine"/> - <node id="423" label="HMIRI Aness"/> - <node id="422" label="HASLÉ Antoine"/> - <node id="421" label="HASACKDA Alexis"/> - <node id="420" label="HAOUD Ayoub"/> - <node id="419" label="HAOUD Anas"/> - <node id="418" label="HAMMAMI Mohtadi"/> - <node id="417" label="HAJA MOHIDEEN Adam"/> - <node id="416" label="HABASQUE Chloé"/> - <node id="415" label="GUILLORY Mathis"/> - <node id="414" label="GUEYE Alimatou Penda Naar"/> - <node id="413" label="GOUSSET Louis"/> - <node id="412" label="GOELLER Karim"/> - <node id="411" label="GLUCKMAN Adrien"/> - <node id="410" label="GIMBERT Gauthier"/> - <node id="409" label="GIARDI Sylwyn"/> - <node id="408" label="GHARBI Mohamed Skander"/> - <node id="407" label="GARREAU Noé"/> - <node id="406" label="GARNIER Adrien"/> - <node id="405" label="GAIDA Noursaine"/> - <node id="404" label="GACHON Valentin"/> - <node id="403" label="FOISSEY Guillemette"/> - <node id="402" label="EYMERY Julie"/> - <node id="401" label="ERIAN Marc"/> - <node id="400" label="EL MANOUNI Sarrah"/> - <node id="399" label="EL HADDAJ Lina"/> - <node id="398" label="EL GORGI Mohamed Skander"/> - <node id="397" label="EL GERSSIFI Adam"/> - <node id="396" label="DUONG Ngo"/> - <node id="395" label="DERGHAL Manal"/> - <node id="394" label="DEPAOLI Tessa"/> - <node id="393" label="DE WEERD Xavier"/> - <node id="392" label="COUTROT Léos"/> - <node id="391" label="COHEN Alexandre"/> - <node id="390" label="COERCHON Colin"/> - <node id="389" label="CHRISTOLOMME Alice"/> - <node id="388" label="CHRIAA Younès"/> - <node id="387" label="CHEAM Richard"/> - <node id="386" label="CHARTRIN Manon"/> - <node id="385" label="CHARRIER Paul"/> - <node id="384" label="CHANET Damien"/> - <node id="383" label="CHACRONE Mohamed"/> - <node id="382" label="CARDINALE Maxime"/> - <node id="381" label="CAI Victor"/> - <node id="380" label="BUTTIN Cyriaque"/> - <node id="379" label="BOULOGNE Maxime"/> - <node id="378" label="BOUBAKER Labib"/> - <node id="377" label="BOISSIER Axel"/> - <node id="376" label="BLANCHE Antoni"/> - <node id="375" label="BIARD Matheo"/> - <node id="374" label="BERROU Evan"/> - <node id="373" label="BERRAHMOUN Anissa"/> - <node id="372" label="BERNARD Aléxia"/> - <node id="371" label="BERGER Adèle"/> - <node id="370" label="BENTAHAR Zakariae"/> - <node id="369" label="BEL HOUARI Jaad"/> - <node id="368" label="BARNICHA Mohammed-Yassine"/> - <node id="367" label="BARBEY Pierre"/> - <node id="366" label="AUFFRET Louis"/> - <node id="365" label="ATRMOUH Boujamaa"/> - <node id="364" label="ARIEY Alpha-San"/> - <node id="363" label="AMJAHID Mohamed Amin"/> - <node id="362" label="ALOUAJAJI Wissal"/> - <node id="361" label="ALBANI Luca"/> - <node id="360" label="AIT OUGARRAM Jinane"/> - <node id="359" label="AID Marouane"/> - <node id="358" label="AHIZOUN Meriem"/> - <node id="357" label="ACHARD Lisa"/> - <node id="356" label="ABITTAN-TENENBAUM Nina"/> - <node id="355" label="ABERQI Nezar"/> - <node id="354" label="ZHENG Thierry"/> - <node id="353" label="ZALFANI Yacine"/> - <node id="352" label="YASSINE Djibril"/> - <node id="351" label="YAMEOGO Wendlassida Arnaud"/> - <node id="350" label="YADIR Sofian"/> - <node id="349" label="VILANOVE Virgil"/> - <node id="348" label="UTHAYAN Sarangan"/> - <node id="347" label="TREMBLAY Marion"/> - <node id="346" label="TRAORE Ahmed"/> - <node id="345" label="TOURNIER Valentin"/> - <node id="344" label="TLATLI Selim"/> - <node id="343" label="THUO Menghor"/> - <node id="342" label="TELLIER--TERAWAKI Daigo"/> - <node id="341" label="TCHENANG Lilyves"/> - <node id="340" label="TAKKA Rassim"/> - <node id="339" label="TAHERJOUYAN Fatemehsadat"/> - <node id="338" label="SOTIRIOU SOFIA-ZOI"/> - <node id="337" label="SONFACK Samira"/> - <node id="336" label="SMIRI Bechir"/> - <node id="335" label="SEIGNOUX Vivien"/> - <node id="334" label="SEGALA Nicolas"/> - <node id="333" label="SCHULER Thomas"/> - <node id="332" label="SAVARY Louis"/> - <node id="331" label="SAHNOUN Mehdi"/> - <node id="330" label="ROUSSEAU Jean"/> - <node id="329" label="ROTH Pauline"/> - <node id="328" label="ROCHETTE Théo"/> - <node id="327" label="RAKOTOVAO Johanna"/> - <node id="326" label="PRÉVOST Charles"/> - <node id="325" label="POVOA Samuel"/> - <node id="324" label="POTTIER Anne"/> - <node id="323" label="PORTWOOD Marc"/> - <node id="322" label="PLAYS Octave"/> - <node id="321" label="PLATH Alicia"/> - <node id="320" label="PHOU Valentin"/> - <node id="319" label="PHONCHAREUN Alexandre"/> - <node id="318" label="PECH Mylane"/> - <node id="317" label="PATEL Abrar"/> - <node id="316" label="PASSERON Paul"/> - <node id="315" label="OULD HOCINE Amine"/> - <node id="314" label="ÖNAL Emre"/> - <node id="313" label="NGO Cyprien"/> - <node id="312" label="NÈVE DE MÉVERGNIES Adel"/> - <node id="311" label="N'DIAYE Halimata"/> - <node id="310" label="NABET Ethan"/> - <node id="309" label="MOUSSÉ Bastien"/> - <node id="308" label="MORONNOZ Joël"/> - <node id="307" label="MOHAMEDALY Jonathan"/> - <node id="306" label="MILLE Marco"/> - <node id="305" label="METIN Samuel"/> - <node id="304" label="MESKI Eya"/> - <node id="303" label="MEROUANE Hadyle"/> - <node id="302" label="MERLE Martin"/> - <node id="301" label="MERKHI Rayan"/> - <node id="300" label="MERCIER Alexandre"/> - <node id="299" label="MENAHEM Nicolas"/> - <node id="298" label="MELE Antonella"/> - <node id="297" label="MATAOUI Adam"/> - <node id="296" label="MARQUIS Arnaud"/> - <node id="295" label="MAIMOUNI MAARAD Haytham"/> - <node id="294" label="LUCAS -- ROBLOT Lorenzo"/> - <node id="293" label="LISSAK GELLER Ariel"/> - <node id="292" label="LIN Julien"/> - <node id="291" label="LÉVÊQUE Clément"/> - <node id="290" label="LESGOURGUES Mathis"/> - <node id="289" label="LE FLOCH Simon"/> - <node id="288" label="LATASTE Matthieu"/> - <node id="287" label="LASSERRE Thomas"/> - <node id="286" label="LAMBERT Charles"/> - <node id="285" label="LAHMAR Meriem"/> - <node id="284" label="LACASSAIGNE Louis"/> - <node id="283" label="LABIDI Ghaieth"/> - <node id="282" label="KOH Tito"/> - <node id="281" label="KHAÏRI Simane"/> - <node id="280" label="KELLER Florian"/> - <node id="279" label="KATZENMAYER Eliot"/> - <node id="278" label="KAMBIRÉ Sié Zamblé Aimé"/> - <node id="277" label="KAHRAMANE Amr"/> - <node id="276" label="KAH Kaldini"/> - <node id="275" label="JUSTINE Yannis"/> - <node id="274" label="JUSTINE Lucas"/> - <node id="273" label="JAMIN Ewad"/> - <node id="272" label="ISMAILI Douaa"/> - <node id="271" label="HUNOUT Grégoire"/> - <node id="270" label="HUCORNE Thomas"/> - <node id="269" label="HRABAL Lucie"/> - <node id="268" label="HONG Kimmeng"/> - <node id="267" label="HMITTI Brahim"/> - <node id="266" label="HERMIER Jules"/> - <node id="265" label="HARMA Imane"/> - <node id="264" label="HANON Théo"/> - <node id="263" label="HACQUART Alexis"/> - <node id="262" label="GUICHETEAU Oscar"/> - <node id="261" label="GUESDON Maxime"/> - <node id="260" label="GUERARD Naël"/> - <node id="259" label="GOUNINE Théo"/> - <node id="258" label="GILGENKRANTZ Tom"/> - <node id="257" label="GHACHAM AMRANI Mohamed"/> - <node id="256" label="GAUTHERET Cédric"/> - <node id="255" label="GALIBERT Bruno"/> - <node id="254" label="FRIKHA Malek"/> - <node id="253" label="FRANÇOIS Louis"/> - <node id="252" label="FOUCHER Yvan"/> - <node id="251" label="FLITTI Wissem"/> - <node id="250" label="FINET Mathis"/> - <node id="249" label="EZZALMATI Ilyas"/> - <node id="248" label="EZZAHID Mohammed Oussama"/> - <node id="247" label="EL OUATILI Lamiaa"/> - <node id="246" label="EL MRIBET Reda"/> - <node id="245" label="EL MRANI Zakaria"/> - <node id="244" label="EL MOUTAOUKIL Adam"/> - <node id="243" label="DUBOIS Baptiste"/> - <node id="242" label="DOUMBIA Mohamed"/> - <node id="241" label="DJAROUD Adam"/> - <node id="240" label="DIOUF Soda"/> - <node id="239" label="DIOUF Aminta"/> - <node id="238" label="DIALLO Wagui"/> - <node id="237" label="DETEIX Prudence"/> - <node id="236" label="DESPREZ Matthieu"/> - <node id="235" label="DEROUET Iwan"/> - <node id="234" label="DERCHAIN Florian"/> - <node id="233" label="DELAUNAY Célian"/> - <node id="232" label="DEL POZO Elias"/> - <node id="231" label="DARNAULT Simon"/> - <node id="230" label="DAOUDI Ali"/> - <node id="229" label="DAGHOUR Mustapha"/> - <node id="228" label="CZAJA Dziga"/> - <node id="227" label="COMSIS Alexis"/> - <node id="226" label="CHOALER Titouan"/> - <node id="225" label="CHING Quentin"/> - <node id="224" label="CHEVROT Romain"/> - <node id="223" label="CHEVÉ Maxence"/> - <node id="222" label="CHERON Paul"/> - <node id="221" label="CHEBIL Mohamed Nadhir"/> - <node id="220" label="CHAMAND Luigi"/> - <node id="219" label="CASAGRANDI Aurélien"/> - <node id="218" label="CAPIEU Valentin"/> - <node id="217" label="CAPES Léo"/> - <node id="216" label="BROUILLET Ethan"/> - <node id="215" label="BREBION Raphaëlle"/> - <node id="214" label="BOYE Papa Diadji"/> - <node id="213" label="BOUSSAFER Bilal"/> - <node id="212" label="BOUDEFAR Jounaïd"/> - <node id="211" label="BOUAMOUD Mohamed-Reda"/> - <node id="210" label="BOICRA Yassine"/> - <node id="209" label="BERTRAND Flavie"/> - <node id="208" label="BERTHELOT Adeline"/> - <node id="207" label="BENTAYFOR Yassine"/> - <node id="206" label="BENHAMED-AUBRY Samir"/> - <node id="205" label="BEN YAALA Yasmine"/> - <node id="204" label="BÉLIER Simon"/> - <node id="203" label="BELAABD Yassine"/> - <node id="202" label="BEAUNOIR Pierrick"/> - <node id="201" label="BALDINI Alessio"/> - <node id="200" label="APHAYAVONG Bounam"/> - <node id="199" label="APARICIO Maxime"/> - <node id="198" label="AMRAOUI Amal"/> - <node id="197" label="AMAZIT Alan"/> - <node id="196" label="AHECHOUCH Amjad"/> - <node id="195" label="ZUO Xavier"/> - <node id="194" label="YU Silène"/> - <node id="193" label="YAHAYA ABDOU Abdoul Kader Saad"/> - <node id="192" label="WONG Kelvin"/> - <node id="191" label="WANG Alicia"/> - <node id="190" label="VERGEL Ronan"/> - <node id="189" label="VELTZ Siloé"/> - <node id="188" label="VAZ Frédéric"/> - <node id="187" label="VAITHILINGAM Vithuson"/> - <node id="186" label="VACHON Mathys"/> - <node id="185" label="TOUBOUL Candice"/> - <node id="184" label="THOUAN Simon"/> - <node id="183" label="TEYSSIER Pierre-Antoine"/> - <node id="182" label="TCHICOU Marc-Antony"/> - <node id="181" label="TADILI Mohamed"/> - <node id="180" label="SYLLA Mariam"/> - <node id="179" label="STADELMANN Anjy"/> - <node id="178" label="SOUKKER Mehdi"/> - <node id="177" label="SELTRECHT Caitlin"/> - <node id="176" label="SEK Sopheak Voatei"/> - <node id="175" label="SCHNEIDER Alexis"/> - <node id="174" label="SANH Jean-Pierre"/> - <node id="173" label="SAMEDI Achok"/> - <node id="172" label="SAHTALI Mehdi"/> - <node id="171" label="ROUVET Rémi"/> - <node id="170" label="RICHARD Corentin"/> - <node id="169" label="RIBEIRO Lucas"/> - <node id="168" label="RHOUDDAL Saad"/> - <node id="167" label="RAKOTONINDRINA Tahiana Karene"/> - <node id="166" label="RAKOTOBE Safidy"/> - <node id="165" label="RA Veasna"/> - <node id="164" label="PRORIOL Aristide"/> - <node id="163" label="PRÉZIOSO Marie"/> - <node id="162" label="PISENTI Axel"/> - <node id="161" label="PIQUES Gabin"/> - <node id="160" label="PINGANAUD Solenn"/> - <node id="159" label="PIEL-GALIAZZO Ewen"/> - <node id="158" label="PICARD Antoine"/> - <node id="157" label="PANTANELLA Adrien"/> - <node id="156" label="PALACIOS Nicolas"/> - <node id="155" label="NGWALA NGWALA Arnaud"/> - <node id="154" label="MOUAFFO Patrick Erick"/> - <node id="153" label="MORALES Tommy"/> - <node id="152" label="MONTICELLI Nikolaï"/> - <node id="151" label="MOHAFIDI Wïame"/> - <node id="150" label="MICHELANGELI TIGA Luca"/> - <node id="149" label="MESLIN Thomas"/> - <node id="148" label="MENASRIA Jugurtha"/> - <node id="147" label="MATAOUI Haron"/> - <node id="146" label="MARTIN Aslan"/> - <node id="145" label="MALLAY Tom"/> - <node id="144" label="MALFOY Lilou"/> - <node id="143" label="MAINGUY Raphaël"/> - <node id="142" label="LUCIANI Agathe"/> - <node id="141" label="LUCAS Cassandre"/> - <node id="140" label="LOUATI Salma"/> - <node id="139" label="LIM Remy"/> - <node id="138" label="LI Oscar"/> - <node id="137" label="LETAIEF Maram"/> - <node id="136" label="LESBROS Matthieu"/> - <node id="135" label="LEMOINE Lucien"/> - <node id="134" label="LEGRAND Tony"/> - <node id="133" label="LECLERC Clément"/> - <node id="132" label="LE CLECH Cécile"/> - <node id="131" label="LE BOUEDEC Mathias"/> - <node id="130" label="LASSER--ZARAGOZA Victor"/> - <node id="129" label="LADRON Yannis"/> - <node id="128" label="LACRAMPE Clotilde"/> - <node id="127" label="KUBRYK Mélissa"/> - <node id="126" label="KIZIL Musa"/> - <node id="125" label="KERJEAN Maël"/> - <node id="124" label="KEFIF Bilal"/> - <node id="123" label="KASSOUL Mohamed"/> - <node id="122" label="KANOUTE Sadio"/> - <node id="121" label="KAMBOU Syé Bonnanin Éliel"/> - <node id="120" label="KAID Yann"/> - <node id="119" label="KADIR Alexeï"/> - <node id="118" label="JOURDAIN Nicolas"/> - <node id="117" label="JANANE Mounib"/> - <node id="116" label="JALFA Wissal"/> - <node id="115" label="JAIEL Bilâl"/> - <node id="114" label="JACQUEMOUD Rémi"/> - <node id="113" label="HSAÏNI Houdaïfa"/> - <node id="112" label="HANCZYK Baptiste"/> - <node id="111" label="HAMIZI Lyès"/> - <node id="110" label="HAMICHE Zaky"/> - <node id="109" label="HALIMI Akram"/> - <node id="108" label="HADOUANI Sara"/> - <node id="107" label="HABBOU Rim"/> - <node id="106" label="GUILMIN Paul"/> - <node id="105" label="GUEMNENG FOTSO Kévin"/> - <node id="104" label="GRASSIAN Arnaud"/> - <node id="103" label="GOIGNARD Alexandre"/> - <node id="102" label="GERARD Thomas"/> - <node id="101" label="GENEAU Laura"/> - <node id="100" label="GASTAUD Baptiste"/> - <node id="99" label="FAREHAN Yahya"/> - <node id="98" label="EZE WEST Walter"/> - <node id="97" label="EYRAUD Julien"/> - <node id="96" label="EXPUESTO Ewen"/> - <node id="95" label="ESPIAND Miles"/> - <node id="94" label="EL KHOUMRI Marwa"/> - <node id="93" label="EL AZRI Amine"/> - <node id="92" label="DJERLIL Salah-Eddine"/> - <node id="91" label="DIEME Steve"/> - <node id="90" label="DIEDHIOU Soni"/> - <node id="89" label="DEMANOU II Cris"/> - <node id="88" label="DELEPORTE Titouan"/> - <node id="87" label="DANTEC Fabien"/> - <node id="86" label="DAMI Mohammed-Yahya"/> - <node id="85" label="COLOMBEL Kilian"/> - <node id="84" label="CISSE Mouhamed"/> - <node id="83" label="CHEYMOL William"/> - <node id="82" label="CHAU Sylvain"/> - <node id="81" label="CHAOUCH Rayan"/> - <node id="80" label="CHADAL Léo"/> - <node id="79" label="CÉLIN--DAVANTURE Guilian"/> - <node id="78" label="CAPITAINE Charlotte"/> - <node id="77" label="CAMBECEDES Simon"/> - <node id="76" label="BURDEYRON Armand"/> - <node id="75" label="BROUARD Grégoire"/> - <node id="74" label="BOUSSON Héloïse"/> - <node id="73" label="BOURDET Esther"/> - <node id="72" label="BOURDELET Roméo"/> - <node id="71" label="BOUKHEDCHA Anas"/> - <node id="70" label="BLONDEL LA ROUGERY Alix"/> - <node id="69" label="BELMEHEL Selma"/> - <node id="68" label="BELGUEBLI Nabil-Anis"/> - <node id="67" label="BALAKUMAR Kalaivaasan"/> - <node id="66" label="BAH Tidiane"/> - <node id="65" label="BACON Nathan"/> - <node id="64" label="AZAKRAOUI Younès"/> - <node id="63" label="AUBERTIN Candice"/> - <node id="62" label="ASSUNCAO Quentin"/> - <node id="61" label="ASSAFIRI Fatima"/> - <node id="60" label="APIA Agoh Daniel Junior"/> - <node id="59" label="ANANI Mikhail"/> - <node id="58" label="AMIEN Abey Jean Élie"/> - <node id="57" label="ALLARD DE GRANDMAISON Luc"/> - <node id="56" label="AGOURAM Safa"/> - <node id="55" label="ADAM Evan"/> - <node id="54" label="ABOU-RJEILY Raphaël"/> - <node id="53" label="ABDELNOUR Kevin"/> - <node id="52" label="ABDEL WEDOUD Yahdhih"/> - <node id="51" label="ABAHAMOU Ziad"/> - <node id="50" label="VocalIIsE"/> - <node id="49" label="TIIMELESS"/> - <node id="48" label="SymphonIIE"/> - <node id="47" label="SoutIIEn"/> - <node id="46" label="SmashIIE"/> - <node id="45" label="Siieste"/> - <node id="44" label="SecuritIIE"/> - <node id="43" label="SurfIIE"/> - <node id="42" label="Radioactive"/> - <node id="41" label="PomPom"/> - <node id="40" label="PiiXeL"/> - <node id="39" label="ParoleDeHyène"/> - <node id="38" label="OnIrIquE"/> - <node id="37" label="ObscurIItE"/> - <node id="36" label="NightIIEs"/> - <node id="35" label="Muzzik'"/> - <node id="34" label="MissterIIE"/> - <node id="33" label="LumIIEre"/> - <node id="32" label="LudIIE"/> - <node id="31" label="LiieN"/> - <node id="30" label="LeBar(c)"/> - <node id="29" label="LanPartIIE"/> - <node id="28" label="Kryptosphère"/> - <node id="27" label="IImagE"/> - <node id="26" label="IInvadErs"/> - <node id="25" label="IIE++"/> - <node id="24" label="i-TV"/> - <node id="23" label="GuIIldE"/> - <node id="22" label="Gala"/> - <node id="21" label="Forum"/> - <node id="20" label="FinancIIE"/> - <node id="19" label="FiLiGRANe"/> - <node id="18" label="EchequIIE"/> - <node id="17" label="EcologIIE"/> - <node id="16" label="Dièse"/> - <node id="15" label="DataScIIEnce"/> - <node id="14" label="DansIIE"/> - <node id="13" label="CuIsInE"/> - <node id="12" label="CraftIIE"/> - <node id="11" label="Comdiie"/> - <node id="10" label="CiD"/> - <node id="9" label="ChIImpanzEd"/> - <node id="8" label="CCCM"/> - <node id="7" label="EquIlIbre"/> - <node id="6" label="Bakanim'"/> - <node id="5" label="Bakaclub"/> - <node id="4" label="BDS"/> - <node id="3" label="BdE"/> - <node id="2" label="AlexandrIIE"/> - <node id="1" label="ARISE"/> - <node id="0" label="Asso"/> - </nodes> - <edges> - <edge id="870" source="493" target="18" type="undirected" weight="240."/> - <edge id="869" source="484" target="44" type="undirected" weight="100."/> - <edge id="868" source="483" target="38" type="undirected" weight="560."/> - <edge id="867" source="483" target="36" type="undirected" weight="500."/> - <edge id="866" source="483" target="35" type="undirected" weight="500."/> - <edge id="865" source="481" target="5" type="undirected" weight="300."/> - <edge id="864" source="481" target="1" type="undirected" weight="300."/> - <edge id="863" source="480" target="22" type="undirected" weight="180."/> - <edge id="862" source="480" target="14" type="undirected" weight="405."/> - <edge id="861" source="480" target="7" type="undirected" weight="450."/> - <edge id="860" source="480" target="4" type="undirected" weight="480."/> - <edge id="859" source="477" target="25" type="undirected" weight="350."/> - <edge id="858" source="464" target="31" type="undirected" weight="490."/> - <edge id="857" source="464" target="30" type="undirected" weight="475."/> - <edge id="856" source="464" target="13" type="undirected" weight="45."/> - <edge id="855" source="464" target="6" type="undirected" weight="400."/> - <edge id="854" source="463" target="29" type="undirected" weight="385."/> - <edge id="853" source="463" target="25" type="undirected" weight="175."/> - <edge id="852" source="463" target="18" type="undirected" weight="120."/> - <edge id="851" source="463" target="6" type="undirected" weight="400."/> - <edge id="850" source="463" target="5" type="undirected" weight="150."/> - <edge id="849" source="463" target="3" type="undirected" weight="1000."/> - <edge id="848" source="463" target="1" type="undirected" weight="500."/> - <edge id="847" source="455" target="50" type="undirected" weight="125."/> - <edge id="846" source="455" target="49" type="undirected" weight="720."/> - <edge id="845" source="455" target="37" type="undirected" weight="450."/> - <edge id="844" source="455" target="35" type="undirected" weight="500."/> - <edge id="843" source="455" target="31" type="undirected" weight="280."/> - <edge id="842" source="455" target="24" type="undirected" weight="350."/> - <edge id="841" source="455" target="9" type="undirected" weight="80."/> - <edge id="840" source="455" target="3" type="undirected" weight="1000."/> - <edge id="839" source="449" target="50" type="undirected" weight="75."/> - <edge id="838" source="449" target="41" type="undirected" weight="120."/> - <edge id="837" source="449" target="24" type="undirected" weight="560."/> - <edge id="836" source="449" target="6" type="undirected" weight="400."/> - <edge id="835" source="447" target="50" type="undirected" weight="75."/> - <edge id="834" source="447" target="35" type="undirected" weight="500."/> - <edge id="833" source="447" target="34" type="undirected" weight="105."/> - <edge id="832" source="447" target="29" type="undirected" weight="385."/> - <edge id="831" source="447" target="24" type="undirected" weight="210."/> - <edge id="830" source="447" target="8" type="undirected" weight="350."/> - <edge id="829" source="447" target="6" type="undirected" weight="400."/> - <edge id="828" source="447" target="1" type="undirected" weight="300."/> - <edge id="827" source="445" target="35" type="undirected" weight="150."/> - <edge id="826" source="445" target="30" type="undirected" weight="475."/> - <edge id="825" source="445" target="18" type="undirected" weight="60."/> - <edge id="824" source="445" target="8" type="undirected" weight="500."/> - <edge id="823" source="445" target="7" type="undirected" weight="450."/> - <edge id="822" source="445" target="3" type="undirected" weight="1000."/> - <edge id="821" source="442" target="44" type="undirected" weight="100."/> - <edge id="820" source="441" target="4" type="undirected" weight="540."/> - <edge id="819" source="440" target="35" type="undirected" weight="500."/> - <edge id="818" source="440" target="30" type="undirected" weight="237.5"/> - <edge id="817" source="440" target="29" type="undirected" weight="165."/> - <edge id="816" source="439" target="31" type="undirected" weight="140."/> - <edge id="815" source="433" target="48" type="undirected" weight="60."/> - <edge id="814" source="417" target="44" type="undirected" weight="100."/> - <edge id="813" source="412" target="4" type="undirected" weight="420."/> - <edge id="812" source="407" target="35" type="undirected" weight="250."/> - <edge id="811" source="407" target="30" type="undirected" weight="285."/> - <edge id="810" source="407" target="18" type="undirected" weight="120."/> - <edge id="809" source="407" target="4" type="undirected" weight="360."/> - <edge id="808" source="404" target="32" type="undirected" weight="200."/> - <edge id="807" source="404" target="30" type="undirected" weight="760."/> - <edge id="806" source="404" target="18" type="undirected" weight="300."/> - <edge id="805" source="404" target="9" type="undirected" weight="400."/> - <edge id="804" source="402" target="41" type="undirected" weight="400."/> - <edge id="803" source="397" target="50" type="undirected" weight="125."/> - <edge id="802" source="397" target="48" type="undirected" weight="300."/> - <edge id="801" source="397" target="40" type="undirected" weight="160."/> - <edge id="800" source="397" target="38" type="undirected" weight="720."/> - <edge id="799" source="397" target="35" type="undirected" weight="250."/> - <edge id="798" source="397" target="30" type="undirected" weight="190."/> - <edge id="797" source="397" target="18" type="undirected" weight="60."/> - <edge id="796" source="397" target="13" type="undirected" weight="45."/> - <edge id="795" source="397" target="9" type="undirected" weight="400."/> - <edge id="794" source="397" target="8" type="undirected" weight="500."/> - <edge id="793" source="397" target="3" type="undirected" weight="1000."/> - <edge id="792" source="394" target="50" type="undirected" weight="125."/> - <edge id="791" source="394" target="46" type="undirected" weight="75."/> - <edge id="790" source="394" target="41" type="undirected" weight="160."/> - <edge id="789" source="394" target="38" type="undirected" weight="720."/> - <edge id="788" source="394" target="37" type="undirected" weight="450."/> - <edge id="787" source="394" target="35" type="undirected" weight="500."/> - <edge id="786" source="394" target="31" type="undirected" weight="560."/> - <edge id="785" source="394" target="30" type="undirected" weight="475."/> - <edge id="784" source="394" target="17" type="undirected" weight="100."/> - <edge id="783" source="394" target="14" type="undirected" weight="225."/> - <edge id="782" source="394" target="8" type="undirected" weight="50."/> - <edge id="781" source="394" target="3" type="undirected" weight="1000."/> - <edge id="780" source="393" target="49" type="undirected" weight="720."/> - <edge id="779" source="393" target="32" type="undirected" weight="200."/> - <edge id="778" source="393" target="10" type="undirected" weight="125."/> - <edge id="777" source="393" target="9" type="undirected" weight="40."/> - <edge id="776" source="393" target="8" type="undirected" weight="400."/> - <edge id="775" source="393" target="3" type="undirected" weight="1000."/> - <edge id="774" source="393" target="1" type="undirected" weight="1000."/> - <edge id="773" source="392" target="18" type="undirected" weight="240."/> - <edge id="772" source="391" target="30" type="undirected" weight="95."/> - <edge id="771" source="391" target="3" type="undirected" weight="1000."/> - <edge id="770" source="390" target="18" type="undirected" weight="240."/> - <edge id="769" source="390" target="4" type="undirected" weight="420."/> - <edge id="768" source="389" target="50" type="undirected" weight="125."/> - <edge id="767" source="389" target="48" type="undirected" weight="150."/> - <edge id="766" source="389" target="30" type="undirected" weight="950."/> - <edge id="765" source="389" target="14" type="undirected" weight="45."/> - <edge id="764" source="389" target="13" type="undirected" weight="135."/> - <edge id="763" source="389" target="7" type="undirected" weight="450."/> - <edge id="762" source="385" target="8" type="undirected" weight="500."/> - <edge id="761" source="385" target="6" type="undirected" weight="400."/> - <edge id="760" source="385" target="5" type="undirected" weight="270."/> - <edge id="759" source="381" target="37" type="undirected" weight="450."/> - <edge id="758" source="381" target="29" type="undirected" weight="330."/> - <edge id="757" source="381" target="18" type="undirected" weight="180."/> - <edge id="756" source="381" target="6" type="undirected" weight="400."/> - <edge id="755" source="381" target="5" type="undirected" weight="300."/> - <edge id="754" source="381" target="1" type="undirected" weight="300."/> - <edge id="753" source="377" target="4" type="undirected" weight="420."/> - <edge id="752" source="376" target="1" type="undirected" weight="300."/> - <edge id="751" source="375" target="44" type="undirected" weight="50."/> - <edge id="750" source="375" target="36" type="undirected" weight="500."/> - <edge id="749" source="375" target="35" type="undirected" weight="150."/> - <edge id="748" source="375" target="30" type="undirected" weight="95."/> - <edge id="747" source="375" target="24" type="undirected" weight="140."/> - <edge id="746" source="375" target="9" type="undirected" weight="200."/> - <edge id="745" source="373" target="38" type="undirected" weight="640."/> - <edge id="744" source="373" target="30" type="undirected" weight="237.5"/> - <edge id="743" source="373" target="22" type="undirected" weight="180."/> - <edge id="742" source="366" target="45" type="undirected" weight="15."/> - <edge id="741" source="354" target="20" type="undirected" weight="45."/> - <edge id="740" source="353" target="39" type="undirected" weight="350."/> - <edge id="739" source="353" target="28" type="undirected" weight="600."/> - <edge id="738" source="353" target="21" type="undirected" weight="700."/> - <edge id="737" source="351" target="28" type="undirected" weight="600."/> - <edge id="736" source="349" target="50" type="undirected" weight="200."/> - <edge id="735" source="349" target="49" type="undirected" weight="720."/> - <edge id="734" source="349" target="48" type="undirected" weight="300."/> - <edge id="733" source="349" target="41" type="undirected" weight="80."/> - <edge id="732" source="349" target="35" type="undirected" weight="350."/> - <edge id="731" source="349" target="34" type="undirected" weight="350."/> - <edge id="730" source="349" target="30" type="undirected" weight="475."/> - <edge id="729" source="349" target="22" type="undirected" weight="180."/> - <edge id="728" source="349" target="18" type="undirected" weight="150."/> - <edge id="727" source="349" target="14" type="undirected" weight="450."/> - <edge id="726" source="349" target="13" type="undirected" weight="450."/> - <edge id="725" source="349" target="8" type="undirected" weight="400."/> - <edge id="724" source="349" target="3" type="undirected" weight="1000."/> - <edge id="723" source="348" target="28" type="undirected" weight="600."/> - <edge id="722" source="348" target="20" type="undirected" weight="45."/> - <edge id="721" source="347" target="47" type="undirected" weight="650."/> - <edge id="720" source="347" target="22" type="undirected" weight="180."/> - <edge id="719" source="347" target="7" type="undirected" weight="450."/> - <edge id="718" source="347" target="3" type="undirected" weight="1000."/> - <edge id="717" source="345" target="47" type="undirected" weight="520."/> - <edge id="716" source="345" target="38" type="undirected" weight="800."/> - <edge id="715" source="345" target="36" type="undirected" weight="500."/> - <edge id="714" source="345" target="35" type="undirected" weight="150."/> - <edge id="713" source="345" target="31" type="undirected" weight="490."/> - <edge id="712" source="345" target="30" type="undirected" weight="950."/> - <edge id="711" source="345" target="24" type="undirected" weight="210."/> - <edge id="710" source="345" target="17" type="undirected" weight="100."/> - <edge id="709" source="344" target="41" type="undirected" weight="40."/> - <edge id="708" source="344" target="32" type="undirected" weight="200."/> - <edge id="707" source="344" target="18" type="undirected" weight="300."/> - <edge id="706" source="341" target="20" type="undirected" weight="45."/> - <edge id="705" source="341" target="14" type="undirected" weight="450."/> - <edge id="704" source="340" target="4" type="undirected" weight="540."/> - <edge id="703" source="337" target="20" type="undirected" weight="40."/> - <edge id="702" source="336" target="47" type="undirected" weight="585."/> - <edge id="701" source="336" target="28" type="undirected" weight="600."/> - <edge id="700" source="335" target="47" type="undirected" weight="260."/> - <edge id="699" source="335" target="38" type="undirected" weight="640."/> - <edge id="698" source="335" target="36" type="undirected" weight="500."/> - <edge id="697" source="335" target="30" type="undirected" weight="380."/> - <edge id="696" source="335" target="24" type="undirected" weight="140."/> - <edge id="695" source="335" target="22" type="undirected" weight="600."/> - <edge id="694" source="335" target="14" type="undirected" weight="45."/> - <edge id="693" source="335" target="13" type="undirected" weight="45."/> - <edge id="692" source="335" target="4" type="undirected" weight="360."/> - <edge id="691" source="335" target="3" type="undirected" weight="1000."/> - <edge id="690" source="334" target="48" type="undirected" weight="60."/> - <edge id="689" source="334" target="31" type="undirected" weight="700."/> - <edge id="688" source="334" target="26" type="undirected" weight="450."/> - <edge id="687" source="330" target="49" type="undirected" weight="800."/> - <edge id="686" source="330" target="44" type="undirected" weight="60."/> - <edge id="685" source="330" target="31" type="undirected" weight="700."/> - <edge id="684" source="330" target="30" type="undirected" weight="285."/> - <edge id="683" source="330" target="29" type="undirected" weight="220."/> - <edge id="682" source="330" target="27" type="undirected" weight="400."/> - <edge id="681" source="330" target="22" type="undirected" weight="600."/> - <edge id="680" source="330" target="9" type="undirected" weight="40."/> - <edge id="679" source="330" target="1" type="undirected" weight="300."/> - <edge id="678" source="329" target="24" type="undirected" weight="70."/> - <edge id="677" source="329" target="22" type="undirected" weight="180."/> - <edge id="676" source="329" target="3" type="undirected" weight="1000."/> - <edge id="675" source="328" target="22" type="undirected" weight="180."/> - <edge id="674" source="328" target="20" type="undirected" weight="40."/> - <edge id="673" source="328" target="4" type="undirected" weight="480."/> - <edge id="672" source="327" target="31" type="undirected" weight="350."/> - <edge id="671" source="326" target="35" type="undirected" weight="500."/> - <edge id="670" source="326" target="30" type="undirected" weight="95."/> - <edge id="669" source="326" target="29" type="undirected" weight="440."/> - <edge id="668" source="326" target="1" type="undirected" weight="400."/> - <edge id="667" source="325" target="47" type="undirected" weight="520."/> - <edge id="666" source="325" target="20" type="undirected" weight="40."/> - <edge id="665" source="324" target="22" type="undirected" weight="600."/> - <edge id="664" source="324" target="14" type="undirected" weight="45."/> - <edge id="663" source="324" target="3" type="undirected" weight="1000."/> - <edge id="662" source="323" target="44" type="undirected" weight="60."/> - <edge id="661" source="323" target="27" type="undirected" weight="280."/> - <edge id="660" source="323" target="1" type="undirected" weight="600."/> - <edge id="659" source="321" target="13" type="undirected" weight="135."/> - <edge id="658" source="319" target="48" type="undirected" weight="300."/> - <edge id="657" source="319" target="29" type="undirected" weight="275."/> - <edge id="656" source="319" target="13" type="undirected" weight="45."/> - <edge id="655" source="319" target="3" type="undirected" weight="1000."/> - <edge id="654" source="317" target="26" type="undirected" weight="225."/> - <edge id="653" source="316" target="35" type="undirected" weight="500."/> - <edge id="652" source="316" target="20" type="undirected" weight="45."/> - <edge id="651" source="316" target="4" type="undirected" weight="480."/> - <edge id="650" source="315" target="47" type="undirected" weight="650."/> - <edge id="649" source="315" target="21" type="undirected" weight="700."/> - <edge id="648" source="315" target="20" type="undirected" weight="45."/> - <edge id="647" source="314" target="50" type="undirected" weight="75."/> - <edge id="646" source="314" target="38" type="undirected" weight="800."/> - <edge id="645" source="314" target="35" type="undirected" weight="500."/> - <edge id="644" source="314" target="24" type="undirected" weight="140."/> - <edge id="643" source="314" target="18" type="undirected" weight="60."/> - <edge id="642" source="314" target="9" type="undirected" weight="120."/> - <edge id="641" source="314" target="8" type="undirected" weight="400."/> - <edge id="640" source="314" target="4" type="undirected" weight="600."/> - <edge id="639" source="314" target="1" type="undirected" weight="300."/> - <edge id="638" source="312" target="37" type="undirected" weight="450."/> - <edge id="637" source="312" target="17" type="undirected" weight="100."/> - <edge id="636" source="312" target="12" type="undirected" weight="10."/> - <edge id="635" source="312" target="3" type="undirected" weight="1000."/> - <edge id="634" source="310" target="50" type="undirected" weight="250."/> - <edge id="633" source="310" target="40" type="undirected" weight="320."/> - <edge id="632" source="310" target="37" type="undirected" weight="450."/> - <edge id="631" source="310" target="32" type="undirected" weight="200."/> - <edge id="630" source="310" target="25" type="undirected" weight="350."/> - <edge id="629" source="310" target="23" type="undirected" weight="250."/> - <edge id="628" source="310" target="19" type="undirected" weight="100."/> - <edge id="627" source="310" target="11" type="undirected" weight="200."/> - <edge id="626" source="310" target="6" type="undirected" weight="400."/> - <edge id="625" source="309" target="20" type="undirected" weight="45."/> - <edge id="624" source="308" target="50" type="undirected" weight="250."/> - <edge id="623" source="308" target="48" type="undirected" weight="300."/> - <edge id="622" source="308" target="35" type="undirected" weight="500."/> - <edge id="621" source="308" target="26" type="undirected" weight="450."/> - <edge id="620" source="308" target="24" type="undirected" weight="210."/> - <edge id="619" source="308" target="23" type="undirected" weight="25."/> - <edge id="618" source="308" target="13" type="undirected" weight="270."/> - <edge id="617" source="308" target="12" type="undirected" weight="50."/> - <edge id="616" source="308" target="8" type="undirected" weight="450."/> - <edge id="615" source="308" target="2" type="undirected" weight="50."/> - <edge id="614" source="308" target="1" type="undirected" weight="300."/> - <edge id="613" source="307" target="20" type="undirected" weight="40."/> - <edge id="612" source="305" target="20" type="undirected" weight="40."/> - <edge id="611" source="303" target="20" type="undirected" weight="40."/> - <edge id="610" source="302" target="39" type="undirected" weight="350."/> - <edge id="609" source="302" target="20" type="undirected" weight="40."/> - <edge id="608" source="302" target="4" type="undirected" weight="540."/> - <edge id="607" source="301" target="42" type="undirected" weight="50."/> - <edge id="606" source="301" target="40" type="undirected" weight="40."/> - <edge id="605" source="301" target="37" type="undirected" weight="450."/> - <edge id="604" source="301" target="35" type="undirected" weight="150."/> - <edge id="603" source="301" target="32" type="undirected" weight="200."/> - <edge id="602" source="301" target="24" type="undirected" weight="700."/> - <edge id="601" source="301" target="23" type="undirected" weight="250."/> - <edge id="600" source="301" target="19" type="undirected" weight="70."/> - <edge id="599" source="301" target="11" type="undirected" weight="250."/> - <edge id="598" source="301" target="1" type="undirected" weight="100."/> - <edge id="597" source="299" target="37" type="undirected" weight="450."/> - <edge id="596" source="299" target="22" type="undirected" weight="180."/> - <edge id="595" source="296" target="50" type="undirected" weight="200."/> - <edge id="594" source="296" target="49" type="undirected" weight="720."/> - <edge id="593" source="296" target="41" type="undirected" weight="160."/> - <edge id="592" source="296" target="40" type="undirected" weight="80."/> - <edge id="591" source="296" target="30" type="undirected" weight="807.5"/> - <edge id="590" source="296" target="29" type="undirected" weight="550."/> - <edge id="589" source="296" target="24" type="undirected" weight="140."/> - <edge id="588" source="296" target="23" type="undirected" weight="250."/> - <edge id="587" source="296" target="22" type="undirected" weight="180."/> - <edge id="586" source="296" target="20" type="undirected" weight="40."/> - <edge id="585" source="296" target="9" type="undirected" weight="320."/> - <edge id="584" source="296" target="8" type="undirected" weight="300."/> - <edge id="583" source="296" target="6" type="undirected" weight="400."/> - <edge id="582" source="296" target="3" type="undirected" weight="1000."/> - <edge id="581" source="294" target="50" type="undirected" weight="250."/> - <edge id="580" source="294" target="49" type="undirected" weight="720."/> - <edge id="579" source="294" target="48" type="undirected" weight="30."/> - <edge id="578" source="294" target="46" type="undirected" weight="175."/> - <edge id="577" source="294" target="41" type="undirected" weight="200."/> - <edge id="576" source="294" target="34" type="undirected" weight="350."/> - <edge id="575" source="294" target="25" type="undirected" weight="350."/> - <edge id="574" source="294" target="24" type="undirected" weight="280."/> - <edge id="573" source="294" target="14" type="undirected" weight="270."/> - <edge id="572" source="294" target="11" type="undirected" weight="250."/> - <edge id="571" source="294" target="9" type="undirected" weight="400."/> - <edge id="570" source="294" target="3" type="undirected" weight="1000."/> - <edge id="569" source="291" target="35" type="undirected" weight="500."/> - <edge id="568" source="291" target="4" type="undirected" weight="480."/> - <edge id="567" source="289" target="46" type="undirected" weight="150."/> - <edge id="566" source="289" target="40" type="undirected" weight="400."/> - <edge id="565" source="289" target="29" type="undirected" weight="385."/> - <edge id="564" source="289" target="26" type="undirected" weight="225."/> - <edge id="563" source="288" target="44" type="undirected" weight="50."/> - <edge id="562" source="287" target="20" type="undirected" weight="45."/> - <edge id="561" source="286" target="25" type="undirected" weight="350."/> - <edge id="560" source="286" target="20" type="undirected" weight="45."/> - <edge id="559" source="281" target="47" type="undirected" weight="520."/> - <edge id="558" source="281" target="44" type="undirected" weight="90."/> - <edge id="557" source="281" target="26" type="undirected" weight="225."/> - <edge id="556" source="279" target="47" type="undirected" weight="650."/> - <edge id="555" source="279" target="38" type="undirected" weight="800."/> - <edge id="554" source="279" target="36" type="undirected" weight="500."/> - <edge id="553" source="279" target="30" type="undirected" weight="950."/> - <edge id="552" source="279" target="24" type="undirected" weight="700."/> - <edge id="551" source="279" target="22" type="undirected" weight="180."/> - <edge id="550" source="279" target="13" type="undirected" weight="45."/> - <edge id="549" source="279" target="3" type="undirected" weight="1000."/> - <edge id="548" source="279" target="2" type="undirected" weight="10."/> - <edge id="547" source="277" target="20" type="undirected" weight="40."/> - <edge id="546" source="276" target="20" type="undirected" weight="40."/> - <edge id="545" source="273" target="4" type="undirected" weight="480."/> - <edge id="544" source="271" target="39" type="undirected" weight="350."/> - <edge id="543" source="271" target="21" type="undirected" weight="700."/> - <edge id="542" source="271" target="20" type="undirected" weight="45."/> - <edge id="541" source="271" target="4" type="undirected" weight="420."/> - <edge id="540" source="270" target="22" type="undirected" weight="180."/> - <edge id="539" source="270" target="14" type="undirected" weight="45."/> - <edge id="538" source="270" target="4" type="undirected" weight="600."/> - <edge id="537" source="270" target="3" type="undirected" weight="1000."/> - <edge id="536" source="269" target="46" type="undirected" weight="50."/> - <edge id="535" source="269" target="45" type="undirected" weight="15."/> - <edge id="534" source="269" target="30" type="undirected" weight="190."/> - <edge id="533" source="269" target="29" type="undirected" weight="550."/> - <edge id="532" source="266" target="40" type="undirected" weight="160."/> - <edge id="531" source="266" target="33" type="undirected" weight="100."/> - <edge id="530" source="266" target="10" type="undirected" weight="100."/> - <edge id="529" source="264" target="35" type="undirected" weight="150."/> - <edge id="528" source="264" target="27" type="undirected" weight="160."/> - <edge id="527" source="264" target="18" type="undirected" weight="270."/> - <edge id="526" source="263" target="4" type="undirected" weight="480."/> - <edge id="525" source="262" target="30" type="undirected" weight="950."/> - <edge id="524" source="262" target="25" type="undirected" weight="350."/> - <edge id="523" source="262" target="17" type="undirected" weight="100."/> - <edge id="522" source="262" target="14" type="undirected" weight="45."/> - <edge id="521" source="262" target="13" type="undirected" weight="180."/> - <edge id="520" source="262" target="9" type="undirected" weight="400."/> - <edge id="519" source="261" target="9" type="undirected" weight="40."/> - <edge id="518" source="259" target="46" type="undirected" weight="250."/> - <edge id="517" source="259" target="38" type="undirected" weight="80."/> - <edge id="516" source="259" target="9" type="undirected" weight="400."/> - <edge id="515" source="258" target="28" type="undirected" weight="600."/> - <edge id="514" source="258" target="20" type="undirected" weight="50."/> - <edge id="513" source="254" target="20" type="undirected" weight="40."/> - <edge id="512" source="253" target="37" type="undirected" weight="450."/> - <edge id="511" source="253" target="29" type="undirected" weight="550."/> - <edge id="510" source="253" target="27" type="undirected" weight="400."/> - <edge id="509" source="253" target="24" type="undirected" weight="490."/> - <edge id="508" source="253" target="12" type="undirected" weight="10."/> - <edge id="507" source="253" target="6" type="undirected" weight="400."/> - <edge id="506" source="253" target="5" type="undirected" weight="300."/> - <edge id="505" source="253" target="1" type="undirected" weight="1000."/> - <edge id="504" source="252" target="37" type="undirected" weight="450."/> - <edge id="503" source="252" target="31" type="undirected" weight="560."/> - <edge id="502" source="252" target="30" type="undirected" weight="712.5"/> - <edge id="501" source="252" target="24" type="undirected" weight="210."/> - <edge id="500" source="252" target="3" type="undirected" weight="1000."/> - <edge id="499" source="252" target="1" type="undirected" weight="300."/> - <edge id="498" source="250" target="46" type="undirected" weight="150."/> - <edge id="497" source="250" target="40" type="undirected" weight="400."/> - <edge id="496" source="250" target="37" type="undirected" weight="450."/> - <edge id="495" source="250" target="23" type="undirected" weight="50."/> - <edge id="494" source="250" target="19" type="undirected" weight="100."/> - <edge id="493" source="250" target="6" type="undirected" weight="400."/> - <edge id="492" source="250" target="5" type="undirected" weight="150."/> - <edge id="491" source="248" target="20" type="undirected" weight="50."/> - <edge id="490" source="243" target="40" type="undirected" weight="280."/> - <edge id="489" source="242" target="20" type="undirected" weight="40."/> - <edge id="488" source="241" target="28" type="undirected" weight="600."/> - <edge id="487" source="241" target="22" type="undirected" weight="180."/> - <edge id="486" source="241" target="20" type="undirected" weight="40."/> - <edge id="485" source="241" target="4" type="undirected" weight="480."/> - <edge id="484" source="238" target="50" type="undirected" weight="250."/> - <edge id="483" source="238" target="46" type="undirected" weight="250."/> - <edge id="482" source="238" target="40" type="undirected" weight="80."/> - <edge id="481" source="238" target="34" type="undirected" weight="245."/> - <edge id="480" source="238" target="32" type="undirected" weight="200."/> - <edge id="479" source="238" target="30" type="undirected" weight="760."/> - <edge id="478" source="238" target="26" type="undirected" weight="450."/> - <edge id="477" source="238" target="25" type="undirected" weight="175."/> - <edge id="476" source="238" target="24" type="undirected" weight="700."/> - <edge id="475" source="238" target="13" type="undirected" weight="135."/> - <edge id="474" source="238" target="9" type="undirected" weight="400."/> - <edge id="473" source="238" target="3" type="undirected" weight="1000."/> - <edge id="472" source="237" target="47" type="undirected" weight="650."/> - <edge id="471" source="237" target="22" type="undirected" weight="600."/> - <edge id="470" source="237" target="14" type="undirected" weight="45."/> - <edge id="469" source="237" target="13" type="undirected" weight="135."/> - <edge id="468" source="237" target="7" type="undirected" weight="450."/> - <edge id="467" source="237" target="4" type="undirected" weight="420."/> - <edge id="466" source="237" target="3" type="undirected" weight="1000."/> - <edge id="465" source="235" target="46" type="undirected" weight="250."/> - <edge id="464" source="235" target="40" type="undirected" weight="400."/> - <edge id="463" source="235" target="29" type="undirected" weight="440."/> - <edge id="462" source="235" target="26" type="undirected" weight="225."/> - <edge id="461" source="235" target="23" type="undirected" weight="50."/> - <edge id="460" source="235" target="5" type="undirected" weight="270."/> - <edge id="459" source="234" target="46" type="undirected" weight="250."/> - <edge id="458" source="234" target="29" type="undirected" weight="55."/> - <edge id="457" source="234" target="24" type="undirected" weight="70."/> - <edge id="456" source="234" target="18" type="undirected" weight="60."/> - <edge id="455" source="233" target="48" type="undirected" weight="210."/> - <edge id="454" source="233" target="40" type="undirected" weight="80."/> - <edge id="453" source="233" target="38" type="undirected" weight="800."/> - <edge id="452" source="233" target="35" type="undirected" weight="500."/> - <edge id="451" source="233" target="30" type="undirected" weight="878.75"/> - <edge id="450" source="233" target="27" type="undirected" weight="400."/> - <edge id="449" source="233" target="25" type="undirected" weight="350."/> - <edge id="448" source="233" target="24" type="undirected" weight="140."/> - <edge id="447" source="233" target="17" type="undirected" weight="100."/> - <edge id="446" source="233" target="14" type="undirected" weight="135."/> - <edge id="445" source="233" target="13" type="undirected" weight="180."/> - <edge id="444" source="233" target="10" type="undirected" weight="175."/> - <edge id="443" source="233" target="9" type="undirected" weight="80."/> - <edge id="442" source="233" target="8" type="undirected" weight="450."/> - <edge id="441" source="233" target="6" type="undirected" weight="400."/> - <edge id="440" source="233" target="4" type="undirected" weight="600."/> - <edge id="439" source="233" target="3" type="undirected" weight="1000."/> - <edge id="438" source="233" target="1" type="undirected" weight="300."/> - <edge id="437" source="232" target="46" type="undirected" weight="175."/> - <edge id="436" source="232" target="45" type="undirected" weight="40."/> - <edge id="435" source="232" target="40" type="undirected" weight="400."/> - <edge id="434" source="232" target="32" type="undirected" weight="200."/> - <edge id="433" source="232" target="29" type="undirected" weight="220."/> - <edge id="432" source="232" target="26" type="undirected" weight="450."/> - <edge id="431" source="232" target="23" type="undirected" weight="125."/> - <edge id="430" source="232" target="19" type="undirected" weight="30."/> - <edge id="429" source="232" target="18" type="undirected" weight="30."/> - <edge id="428" source="232" target="5" type="undirected" weight="150."/> - <edge id="427" source="231" target="46" type="undirected" weight="250."/> - <edge id="426" source="231" target="42" type="undirected" weight="10."/> - <edge id="425" source="231" target="38" type="undirected" weight="800."/> - <edge id="424" source="231" target="36" type="undirected" weight="400."/> - <edge id="423" source="231" target="35" type="undirected" weight="500."/> - <edge id="422" source="231" target="34" type="undirected" weight="350."/> - <edge id="421" source="231" target="30" type="undirected" weight="760."/> - <edge id="420" source="231" target="29" type="undirected" weight="275."/> - <edge id="419" source="231" target="25" type="undirected" weight="350."/> - <edge id="418" source="231" target="24" type="undirected" weight="700."/> - <edge id="417" source="231" target="17" type="undirected" weight="100."/> - <edge id="416" source="231" target="14" type="undirected" weight="45."/> - <edge id="415" source="231" target="9" type="undirected" weight="320."/> - <edge id="414" source="231" target="8" type="undirected" weight="50."/> - <edge id="413" source="231" target="3" type="undirected" weight="1000."/> - <edge id="412" source="231" target="1" type="undirected" weight="300."/> - <edge id="411" source="228" target="47" type="undirected" weight="520."/> - <edge id="410" source="228" target="44" type="undirected" weight="100."/> - <edge id="409" source="228" target="40" type="undirected" weight="160."/> - <edge id="408" source="228" target="30" type="undirected" weight="570."/> - <edge id="407" source="228" target="17" type="undirected" weight="100."/> - <edge id="406" source="228" target="13" type="undirected" weight="90."/> - <edge id="405" source="228" target="10" type="undirected" weight="150."/> - <edge id="404" source="228" target="9" type="undirected" weight="400."/> - <edge id="403" source="228" target="1" type="undirected" weight="300."/> - <edge id="402" source="227" target="40" type="undirected" weight="80."/> - <edge id="401" source="227" target="35" type="undirected" weight="500."/> - <edge id="400" source="227" target="9" type="undirected" weight="400."/> - <edge id="399" source="227" target="4" type="undirected" weight="540."/> - <edge id="398" source="226" target="45" type="undirected" weight="50."/> - <edge id="397" source="226" target="40" type="undirected" weight="40."/> - <edge id="396" source="226" target="26" type="undirected" weight="450."/> - <edge id="395" source="226" target="23" type="undirected" weight="250."/> - <edge id="394" source="226" target="14" type="undirected" weight="180."/> - <edge id="393" source="226" target="11" type="undirected" weight="250."/> - <edge id="392" source="226" target="3" type="undirected" weight="1000."/> - <edge id="391" source="225" target="22" type="undirected" weight="180."/> - <edge id="390" source="225" target="14" type="undirected" weight="450."/> - <edge id="389" source="225" target="4" type="undirected" weight="480."/> - <edge id="388" source="222" target="44" type="undirected" weight="100."/> - <edge id="387" source="222" target="33" type="undirected" weight="90."/> - <edge id="386" source="222" target="22" type="undirected" weight="180."/> - <edge id="385" source="222" target="4" type="undirected" weight="480."/> - <edge id="384" source="218" target="47" type="undirected" weight="130."/> - <edge id="383" source="218" target="25" type="undirected" weight="350."/> - <edge id="382" source="218" target="18" type="undirected" weight="180."/> - <edge id="381" source="218" target="14" type="undirected" weight="45."/> - <edge id="380" source="218" target="10" type="undirected" weight="250."/> - <edge id="379" source="218" target="4" type="undirected" weight="360."/> - <edge id="378" source="218" target="3" type="undirected" weight="1000."/> - <edge id="377" source="218" target="2" type="undirected" weight="50."/> - <edge id="376" source="217" target="45" type="undirected" weight="15."/> - <edge id="375" source="217" target="40" type="undirected" weight="200."/> - <edge id="374" source="217" target="25" type="undirected" weight="105."/> - <edge id="373" source="217" target="6" type="undirected" weight="400."/> - <edge id="372" source="217" target="5" type="undirected" weight="300."/> - <edge id="371" source="216" target="49" type="undirected" weight="720."/> - <edge id="370" source="216" target="35" type="undirected" weight="150."/> - <edge id="369" source="216" target="27" type="undirected" weight="400."/> - <edge id="368" source="215" target="49" type="undirected" weight="720."/> - <edge id="367" source="215" target="44" type="undirected" weight="50."/> - <edge id="366" source="215" target="41" type="undirected" weight="400."/> - <edge id="365" source="215" target="14" type="undirected" weight="45."/> - <edge id="364" source="215" target="13" type="undirected" weight="450."/> - <edge id="363" source="213" target="39" type="undirected" weight="350."/> - <edge id="362" source="213" target="20" type="undirected" weight="40."/> - <edge id="361" source="213" target="4" type="undirected" weight="540."/> - <edge id="360" source="210" target="39" type="undirected" weight="350."/> - <edge id="359" source="210" target="20" type="undirected" weight="50."/> - <edge id="358" source="210" target="4" type="undirected" weight="600."/> - <edge id="357" source="209" target="50" type="undirected" weight="175."/> - <edge id="356" source="209" target="41" type="undirected" weight="400."/> - <edge id="355" source="209" target="35" type="undirected" weight="250."/> - <edge id="354" source="209" target="34" type="undirected" weight="245."/> - <edge id="353" source="209" target="14" type="undirected" weight="450."/> - <edge id="352" source="209" target="13" type="undirected" weight="270."/> - <edge id="351" source="209" target="12" type="undirected" weight="10."/> - <edge id="350" source="209" target="9" type="undirected" weight="400."/> - <edge id="349" source="209" target="3" type="undirected" weight="1000."/> - <edge id="348" source="204" target="46" type="undirected" weight="50."/> - <edge id="347" source="204" target="38" type="undirected" weight="800."/> - <edge id="346" source="204" target="35" type="undirected" weight="500."/> - <edge id="345" source="204" target="30" type="undirected" weight="332.5"/> - <edge id="344" source="204" target="24" type="undirected" weight="70."/> - <edge id="343" source="204" target="21" type="undirected" weight="700."/> - <edge id="342" source="204" target="10" type="undirected" weight="250."/> - <edge id="341" source="204" target="9" type="undirected" weight="40."/> - <edge id="340" source="204" target="6" type="undirected" weight="400."/> - <edge id="339" source="204" target="4" type="undirected" weight="540."/> - <edge id="338" source="204" target="3" type="undirected" weight="1000."/> - <edge id="337" source="204" target="1" type="undirected" weight="700."/> - <edge id="336" source="203" target="20" type="undirected" weight="40."/> - <edge id="335" source="202" target="49" type="undirected" weight="800."/> - <edge id="334" source="202" target="48" type="undirected" weight="150."/> - <edge id="333" source="202" target="41" type="undirected" weight="40."/> - <edge id="332" source="202" target="40" type="undirected" weight="80."/> - <edge id="331" source="202" target="34" type="undirected" weight="350."/> - <edge id="330" source="202" target="30" type="undirected" weight="617.5"/> - <edge id="329" source="202" target="24" type="undirected" weight="630."/> - <edge id="328" source="202" target="14" type="undirected" weight="450."/> - <edge id="327" source="202" target="13" type="undirected" weight="450."/> - <edge id="326" source="202" target="3" type="undirected" weight="1000."/> - <edge id="325" source="199" target="47" type="undirected" weight="650."/> - <edge id="324" source="199" target="25" type="undirected" weight="350."/> - <edge id="323" source="199" target="14" type="undirected" weight="45."/> - <edge id="322" source="197" target="41" type="undirected" weight="80."/> - <edge id="321" source="197" target="14" type="undirected" weight="450."/> - <edge id="320" source="194" target="40" type="undirected" weight="40."/> - <edge id="319" source="194" target="14" type="undirected" weight="180."/> - <edge id="318" source="193" target="28" type="undirected" weight="420."/> - <edge id="317" source="193" target="1" type="undirected" weight="300."/> - <edge id="316" source="191" target="14" type="undirected" weight="180."/> - <edge id="315" source="189" target="38" type="undirected" weight="800."/> - <edge id="314" source="186" target="49" type="undirected" weight="720."/> - <edge id="313" source="186" target="45" type="undirected" weight="30."/> - <edge id="312" source="186" target="42" type="undirected" weight="25."/> - <edge id="311" source="186" target="40" type="undirected" weight="400."/> - <edge id="310" source="186" target="34" type="undirected" weight="350."/> - <edge id="309" source="186" target="24" type="undirected" weight="700."/> - <edge id="308" source="186" target="23" type="undirected" weight="100."/> - <edge id="307" source="186" target="18" type="undirected" weight="30."/> - <edge id="306" source="186" target="9" type="undirected" weight="40."/> - <edge id="305" source="186" target="6" type="undirected" weight="400."/> - <edge id="304" source="185" target="16" type="undirected" weight="500."/> - <edge id="303" source="184" target="35" type="undirected" weight="100."/> - <edge id="302" source="184" target="29" type="undirected" weight="495."/> - <edge id="301" source="184" target="2" type="undirected" weight="50."/> - <edge id="300" source="183" target="50" type="undirected" weight="200."/> - <edge id="299" source="183" target="48" type="undirected" weight="210."/> - <edge id="298" source="183" target="40" type="undirected" weight="160."/> - <edge id="297" source="183" target="35" type="undirected" weight="100."/> - <edge id="296" source="183" target="34" type="undirected" weight="105."/> - <edge id="295" source="183" target="26" type="undirected" weight="450."/> - <edge id="294" source="183" target="8" type="undirected" weight="100."/> - <edge id="293" source="183" target="5" type="undirected" weight="120."/> - <edge id="292" source="183" target="2" type="undirected" weight="30."/> - <edge id="291" source="183" target="1" type="undirected" weight="100."/> - <edge id="290" source="182" target="16" type="undirected" weight="500."/> - <edge id="289" source="182" target="4" type="undirected" weight="360."/> - <edge id="288" source="179" target="49" type="undirected" weight="720."/> - <edge id="287" source="179" target="34" type="undirected" weight="245."/> - <edge id="286" source="179" target="18" type="undirected" weight="60."/> - <edge id="285" source="179" target="16" type="undirected" weight="500."/> - <edge id="284" source="178" target="38" type="undirected" weight="640."/> - <edge id="283" source="177" target="50" type="undirected" weight="175."/> - <edge id="282" source="177" target="41" type="undirected" weight="400."/> - <edge id="281" source="177" target="26" type="undirected" weight="225."/> - <edge id="280" source="177" target="14" type="undirected" weight="450."/> - <edge id="279" source="173" target="34" type="undirected" weight="35."/> - <edge id="278" source="170" target="30" type="undirected" weight="285."/> - <edge id="277" source="170" target="28" type="undirected" weight="600."/> - <edge id="276" source="170" target="16" type="undirected" weight="500."/> - <edge id="275" source="170" target="9" type="undirected" weight="80."/> - <edge id="274" source="166" target="47" type="undirected" weight="650."/> - <edge id="273" source="166" target="46" type="undirected" weight="50."/> - <edge id="272" source="166" target="18" type="undirected" weight="90."/> - <edge id="271" source="166" target="14" type="undirected" weight="180."/> - <edge id="270" source="166" target="4" type="undirected" weight="360."/> - <edge id="269" source="164" target="49" type="undirected" weight="720."/> - <edge id="268" source="164" target="40" type="undirected" weight="40."/> - <edge id="267" source="164" target="30" type="undirected" weight="237.5"/> - <edge id="266" source="163" target="41" type="undirected" weight="40."/> - <edge id="265" source="163" target="24" type="undirected" weight="280."/> - <edge id="264" source="163" target="4" type="undirected" weight="480."/> - <edge id="263" source="162" target="40" type="undirected" weight="320."/> - <edge id="262" source="162" target="37" type="undirected" weight="450."/> - <edge id="261" source="162" target="32" type="undirected" weight="200."/> - <edge id="260" source="162" target="23" type="undirected" weight="150."/> - <edge id="259" source="162" target="19" type="undirected" weight="100."/> - <edge id="258" source="162" target="18" type="undirected" weight="150."/> - <edge id="257" source="162" target="11" type="undirected" weight="250."/> - <edge id="256" source="161" target="38" type="undirected" weight="560."/> - <edge id="255" source="161" target="24" type="undirected" weight="140."/> - <edge id="254" source="161" target="18" type="undirected" weight="270."/> - <edge id="253" source="161" target="16" type="undirected" weight="500."/> - <edge id="252" source="161" target="4" type="undirected" weight="540."/> - <edge id="251" source="160" target="31" type="undirected" weight="490."/> - <edge id="250" source="160" target="16" type="undirected" weight="500."/> - <edge id="249" source="159" target="46" type="undirected" weight="175."/> - <edge id="248" source="158" target="38" type="undirected" weight="800."/> - <edge id="247" source="158" target="24" type="undirected" weight="70."/> - <edge id="246" source="158" target="18" type="undirected" weight="60."/> - <edge id="245" source="158" target="4" type="undirected" weight="600."/> - <edge id="244" source="157" target="28" type="undirected" weight="420."/> - <edge id="243" source="157" target="9" type="undirected" weight="80."/> - <edge id="242" source="153" target="40" type="undirected" weight="40."/> - <edge id="241" source="152" target="49" type="undirected" weight="720."/> - <edge id="240" source="152" target="48" type="undirected" weight="210."/> - <edge id="239" source="152" target="9" type="undirected" weight="40."/> - <edge id="238" source="152" target="1" type="undirected" weight="100."/> - <edge id="237" source="149" target="40" type="undirected" weight="200."/> - <edge id="236" source="149" target="29" type="undirected" weight="495."/> - <edge id="235" source="149" target="17" type="undirected" weight="100."/> - <edge id="234" source="149" target="14" type="undirected" weight="135."/> - <edge id="233" source="149" target="7" type="undirected" weight="450."/> - <edge id="232" source="149" target="2" type="undirected" weight="45."/> - <edge id="231" source="149" target="1" type="undirected" weight="500."/> - <edge id="230" source="145" target="28" type="undirected" weight="300."/> - <edge id="229" source="145" target="16" type="undirected" weight="500."/> - <edge id="228" source="145" target="4" type="undirected" weight="360."/> - <edge id="227" source="144" target="38" type="undirected" weight="800."/> - <edge id="226" source="144" target="24" type="undirected" weight="700."/> - <edge id="225" source="143" target="16" type="undirected" weight="500."/> - <edge id="224" source="143" target="4" type="undirected" weight="360."/> - <edge id="223" source="142" target="47" type="undirected" weight="650."/> - <edge id="222" source="142" target="41" type="undirected" weight="40."/> - <edge id="221" source="142" target="38" type="undirected" weight="800."/> - <edge id="220" source="141" target="49" type="undirected" weight="800."/> - <edge id="219" source="141" target="47" type="undirected" weight="650."/> - <edge id="218" source="141" target="18" type="undirected" weight="210."/> - <edge id="217" source="141" target="14" type="undirected" weight="90."/> - <edge id="216" source="141" target="13" type="undirected" weight="135."/> - <edge id="215" source="141" target="4" type="undirected" weight="360."/> - <edge id="214" source="141" target="2" type="undirected" weight="30."/> - <edge id="213" source="138" target="38" type="undirected" weight="800."/> - <edge id="212" source="138" target="30" type="undirected" weight="285."/> - <edge id="211" source="138" target="27" type="undirected" weight="40."/> - <edge id="210" source="138" target="24" type="undirected" weight="700."/> - <edge id="209" source="137" target="36" type="undirected" weight="500."/> - <edge id="208" source="137" target="16" type="undirected" weight="500."/> - <edge id="207" source="137" target="4" type="undirected" weight="360."/> - <edge id="206" source="136" target="50" type="undirected" weight="125."/> - <edge id="205" source="136" target="49" type="undirected" weight="720."/> - <edge id="204" source="136" target="45" type="undirected" weight="30."/> - <edge id="203" source="136" target="40" type="undirected" weight="160."/> - <edge id="202" source="136" target="32" type="undirected" weight="200."/> - <edge id="201" source="136" target="23" type="undirected" weight="150."/> - <edge id="200" source="136" target="19" type="undirected" weight="80."/> - <edge id="199" source="136" target="12" type="undirected" weight="45."/> - <edge id="198" source="136" target="11" type="undirected" weight="250."/> - <edge id="197" source="136" target="10" type="undirected" weight="250."/> - <edge id="196" source="136" target="6" type="undirected" weight="400."/> - <edge id="195" source="136" target="5" type="undirected" weight="180."/> - <edge id="194" source="135" target="28" type="undirected" weight="300."/> - <edge id="193" source="135" target="9" type="undirected" weight="80."/> - <edge id="192" source="135" target="4" type="undirected" weight="360."/> - <edge id="191" source="134" target="46" type="undirected" weight="200."/> - <edge id="190" source="134" target="40" type="undirected" weight="40."/> - <edge id="189" source="132" target="49" type="undirected" weight="720."/> - <edge id="188" source="132" target="48" type="undirected" weight="210."/> - <edge id="187" source="132" target="35" type="undirected" weight="500."/> - <edge id="186" source="132" target="33" type="undirected" weight="80."/> - <edge id="185" source="132" target="32" type="undirected" weight="200."/> - <edge id="184" source="132" target="23" type="undirected" weight="75."/> - <edge id="183" source="132" target="14" type="undirected" weight="45."/> - <edge id="182" source="132" target="13" type="undirected" weight="135."/> - <edge id="181" source="132" target="12" type="undirected" weight="20."/> - <edge id="180" source="131" target="38" type="undirected" weight="640."/> - <edge id="179" source="131" target="24" type="undirected" weight="70."/> - <edge id="178" source="131" target="16" type="undirected" weight="500."/> - <edge id="177" source="131" target="4" type="undirected" weight="540."/> - <edge id="176" source="130" target="49" type="undirected" weight="800."/> - <edge id="175" source="130" target="28" type="undirected" weight="420."/> - <edge id="174" source="130" target="16" type="undirected" weight="500."/> - <edge id="173" source="129" target="37" type="undirected" weight="450."/> - <edge id="172" source="129" target="34" type="undirected" weight="175."/> - <edge id="171" source="129" target="19" type="undirected" weight="50."/> - <edge id="170" source="129" target="13" type="undirected" weight="135."/> - <edge id="169" source="129" target="6" type="undirected" weight="400."/> - <edge id="168" source="129" target="5" type="undirected" weight="210."/> - <edge id="167" source="127" target="38" type="undirected" weight="800."/> - <edge id="166" source="126" target="16" type="undirected" weight="500."/> - <edge id="165" source="125" target="9" type="undirected" weight="80."/> - <edge id="164" source="123" target="40" type="undirected" weight="40."/> - <edge id="163" source="123" target="28" type="undirected" weight="600."/> - <edge id="162" source="123" target="4" type="undirected" weight="300."/> - <edge id="161" source="123" target="1" type="undirected" weight="300."/> - <edge id="160" source="120" target="49" type="undirected" weight="720."/> - <edge id="159" source="120" target="35" type="undirected" weight="500."/> - <edge id="158" source="120" target="24" type="undirected" weight="140."/> - <edge id="157" source="120" target="17" type="undirected" weight="100."/> - <edge id="156" source="118" target="48" type="undirected" weight="210."/> - <edge id="155" source="118" target="40" type="undirected" weight="160."/> - <edge id="154" source="118" target="26" type="undirected" weight="225."/> - <edge id="153" source="118" target="8" type="undirected" weight="400."/> - <edge id="152" source="116" target="50" type="undirected" weight="25."/> - <edge id="151" source="116" target="41" type="undirected" weight="40."/> - <edge id="150" source="116" target="40" type="undirected" weight="160."/> - <edge id="149" source="116" target="38" type="undirected" weight="720."/> - <edge id="148" source="116" target="34" type="undirected" weight="350."/> - <edge id="147" source="116" target="18" type="undirected" weight="30."/> - <edge id="146" source="116" target="14" type="undirected" weight="180."/> - <edge id="145" source="116" target="13" type="undirected" weight="180."/> - <edge id="144" source="116" target="10" type="undirected" weight="250."/> - <edge id="143" source="114" target="40" type="undirected" weight="40."/> - <edge id="142" source="114" target="4" type="undirected" weight="300."/> - <edge id="141" source="112" target="49" type="undirected" weight="800."/> - <edge id="140" source="112" target="40" type="undirected" weight="40."/> - <edge id="139" source="112" target="34" type="undirected" weight="105."/> - <edge id="138" source="112" target="33" type="undirected" weight="80."/> - <edge id="137" source="112" target="31" type="undirected" weight="490."/> - <edge id="136" source="112" target="30" type="undirected" weight="532."/> - <edge id="135" source="112" target="29" type="undirected" weight="55."/> - <edge id="134" source="112" target="25" type="undirected" weight="350."/> - <edge id="133" source="112" target="24" type="undirected" weight="140."/> - <edge id="132" source="112" target="17" type="undirected" weight="100."/> - <edge id="131" source="112" target="14" type="undirected" weight="90."/> - <edge id="130" source="112" target="13" type="undirected" weight="270."/> - <edge id="129" source="112" target="1" type="undirected" weight="100."/> - <edge id="128" source="107" target="50" type="undirected" weight="75."/> - <edge id="127" source="107" target="37" type="undirected" weight="450."/> - <edge id="126" source="107" target="34" type="undirected" weight="350."/> - <edge id="125" source="107" target="32" type="undirected" weight="200."/> - <edge id="124" source="107" target="30" type="undirected" weight="532."/> - <edge id="123" source="107" target="24" type="undirected" weight="700."/> - <edge id="122" source="107" target="23" type="undirected" weight="75."/> - <edge id="121" source="107" target="6" type="undirected" weight="400."/> - <edge id="120" source="105" target="28" type="undirected" weight="600."/> - <edge id="119" source="105" target="16" type="undirected" weight="500."/> - <edge id="118" source="104" target="48" type="undirected" weight="210."/> - <edge id="117" source="103" target="16" type="undirected" weight="500."/> - <edge id="116" source="103" target="4" type="undirected" weight="480."/> - <edge id="115" source="102" target="38" type="undirected" weight="800."/> - <edge id="114" source="102" target="36" type="undirected" weight="500."/> - <edge id="113" source="102" target="30" type="undirected" weight="950."/> - <edge id="112" source="102" target="4" type="undirected" weight="360."/> - <edge id="111" source="101" target="5" type="undirected" weight="120."/> - <edge id="110" source="100" target="36" type="undirected" weight="500."/> - <edge id="109" source="100" target="30" type="undirected" weight="950."/> - <edge id="108" source="99" target="4" type="undirected" weight="420."/> - <edge id="107" source="97" target="16" type="undirected" weight="500."/> - <edge id="106" source="97" target="4" type="undirected" weight="540."/> - <edge id="105" source="96" target="41" type="undirected" weight="200."/> - <edge id="104" source="96" target="37" type="undirected" weight="450."/> - <edge id="103" source="96" target="34" type="undirected" weight="175."/> - <edge id="102" source="96" target="31" type="undirected" weight="280."/> - <edge id="101" source="96" target="17" type="undirected" weight="100."/> - <edge id="100" source="96" target="14" type="undirected" weight="225."/> - <edge id="99" source="95" target="49" type="undirected" weight="800."/> - <edge id="98" source="95" target="45" type="undirected" weight="40."/> - <edge id="97" source="95" target="40" type="undirected" weight="120."/> - <edge id="96" source="95" target="37" type="undirected" weight="450."/> - <edge id="95" source="95" target="34" type="undirected" weight="350."/> - <edge id="94" source="95" target="32" type="undirected" weight="200."/> - <edge id="93" source="95" target="31" type="undirected" weight="280."/> - <edge id="92" source="95" target="30" type="undirected" weight="902.5"/> - <edge id="91" source="95" target="24" type="undirected" weight="210."/> - <edge id="90" source="95" target="23" type="undirected" weight="200."/> - <edge id="89" source="95" target="19" type="undirected" weight="80."/> - <edge id="88" source="95" target="18" type="undirected" weight="30."/> - <edge id="87" source="95" target="11" type="undirected" weight="250."/> - <edge id="86" source="95" target="9" type="undirected" weight="40."/> - <edge id="85" source="95" target="6" type="undirected" weight="400."/> - <edge id="84" source="95" target="5" type="undirected" weight="180."/> - <edge id="83" source="91" target="4" type="undirected" weight="360."/> - <edge id="82" source="88" target="46" type="undirected" weight="175."/> - <edge id="81" source="88" target="40" type="undirected" weight="320."/> - <edge id="80" source="88" target="23" type="undirected" weight="75."/> - <edge id="79" source="88" target="19" type="undirected" weight="80."/> - <edge id="78" source="88" target="4" type="undirected" weight="360."/> - <edge id="77" source="88" target="1" type="undirected" weight="100."/> - <edge id="76" source="84" target="40" type="undirected" weight="40."/> - <edge id="75" source="83" target="40" type="undirected" weight="40."/> - <edge id="74" source="83" target="36" type="undirected" weight="500."/> - <edge id="73" source="83" target="35" type="undirected" weight="500."/> - <edge id="72" source="83" target="34" type="undirected" weight="350."/> - <edge id="71" source="83" target="28" type="undirected" weight="420."/> - <edge id="70" source="83" target="11" type="undirected" weight="200."/> - <edge id="69" source="83" target="4" type="undirected" weight="360."/> - <edge id="68" source="82" target="38" type="undirected" weight="800."/> - <edge id="67" source="82" target="34" type="undirected" weight="245."/> - <edge id="66" source="82" target="30" type="undirected" weight="817."/> - <edge id="65" source="82" target="26" type="undirected" weight="225."/> - <edge id="64" source="82" target="14" type="undirected" weight="180."/> - <edge id="63" source="82" target="13" type="undirected" weight="360."/> - <edge id="62" source="82" target="4" type="undirected" weight="480."/> - <edge id="61" source="80" target="34" type="undirected" weight="105."/> - <edge id="60" source="80" target="33" type="undirected" weight="80."/> - <edge id="59" source="80" target="30" type="undirected" weight="437."/> - <edge id="58" source="80" target="29" type="undirected" weight="55."/> - <edge id="57" source="80" target="24" type="undirected" weight="210."/> - <edge id="56" source="80" target="14" type="undirected" weight="90."/> - <edge id="55" source="79" target="30" type="undirected" weight="190."/> - <edge id="54" source="78" target="49" type="undirected" weight="800."/> - <edge id="53" source="78" target="45" type="undirected" weight="40."/> - <edge id="52" source="78" target="40" type="undirected" weight="40."/> - <edge id="51" source="78" target="32" type="undirected" weight="200."/> - <edge id="50" source="78" target="27" type="undirected" weight="40."/> - <edge id="49" source="78" target="14" type="undirected" weight="45."/> - <edge id="48" source="78" target="13" type="undirected" weight="180."/> - <edge id="47" source="78" target="12" type="undirected" weight="45."/> - <edge id="46" source="77" target="40" type="undirected" weight="240."/> - <edge id="45" source="77" target="32" type="undirected" weight="200."/> - <edge id="44" source="77" target="29" type="undirected" weight="550."/> - <edge id="43" source="77" target="23" type="undirected" weight="50."/> - <edge id="42" source="77" target="6" type="undirected" weight="400."/> - <edge id="41" source="77" target="5" type="undirected" weight="150."/> - <edge id="40" source="76" target="49" type="undirected" weight="800."/> - <edge id="39" source="76" target="34" type="undirected" weight="105."/> - <edge id="38" source="76" target="18" type="undirected" weight="300."/> - <edge id="37" source="76" target="17" type="undirected" weight="100."/> - <edge id="36" source="76" target="14" type="undirected" weight="135."/> - <edge id="35" source="76" target="1" type="undirected" weight="100."/> - <edge id="34" source="75" target="18" type="undirected" weight="300."/> - <edge id="33" source="73" target="50" type="undirected" weight="75."/> - <edge id="32" source="73" target="49" type="undirected" weight="720."/> - <edge id="31" source="73" target="48" type="undirected" weight="210."/> - <edge id="30" source="73" target="32" type="undirected" weight="200."/> - <edge id="29" source="73" target="27" type="undirected" weight="40."/> - <edge id="28" source="73" target="13" type="undirected" weight="135."/> - <edge id="27" source="73" target="12" type="undirected" weight="20."/> - <edge id="26" source="73" target="8" type="undirected" weight="500."/> - <edge id="25" source="70" target="16" type="undirected" weight="500."/> - <edge id="24" source="68" target="38" type="undirected" weight="800."/> - <edge id="23" source="68" target="36" type="undirected" weight="500."/> - <edge id="22" source="68" target="30" type="undirected" weight="532."/> - <edge id="21" source="68" target="10" type="undirected" weight="50."/> - <edge id="20" source="68" target="4" type="undirected" weight="600."/> - <edge id="19" source="66" target="16" type="undirected" weight="500."/> - <edge id="18" source="66" target="4" type="undirected" weight="540."/> - <edge id="17" source="63" target="46" type="undirected" weight="75."/> - <edge id="16" source="63" target="40" type="undirected" weight="400."/> - <edge id="15" source="63" target="32" type="undirected" weight="200."/> - <edge id="14" source="63" target="30" type="undirected" weight="760."/> - <edge id="13" source="63" target="29" type="undirected" weight="440."/> - <edge id="12" source="63" target="24" type="undirected" weight="70."/> - <edge id="11" source="63" target="19" type="undirected" weight="50."/> - <edge id="10" source="63" target="9" type="undirected" weight="400."/> - <edge id="9" source="61" target="41" type="undirected" weight="40."/> - <edge id="8" source="61" target="30" type="undirected" weight="285."/> - <edge id="7" source="57" target="40" type="undirected" weight="200."/> - <edge id="6" source="57" target="31" type="undirected" weight="560."/> - <edge id="5" source="57" target="30" type="undirected" weight="855."/> - <edge id="4" source="57" target="26" type="undirected" weight="450."/> - <edge id="3" source="57" target="23" type="undirected" weight="175."/> - <edge id="2" source="57" target="1" type="undirected" weight="500."/> - <edge id="1" source="54" target="19" type="undirected" weight="50."/> - <edge id="0" source="54" target="1" type="undirected" weight="500."/> - </edges> - </graph> -</gexf> diff --git a/script/src/dynamics.xsd b/test_format/dynamics.xsd similarity index 100% rename from script/src/dynamics.xsd rename to test_format/dynamics.xsd diff --git a/script/src/gexf.xsd b/test_format/gexf.xsd similarity index 100% rename from script/src/gexf.xsd rename to test_format/gexf.xsd diff --git a/script/src/viz.xsd b/test_format/viz.xsd similarity index 100% rename from script/src/viz.xsd rename to test_format/viz.xsd