graph.js 91 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982
  1. /*
  2. * Licensed to the Apache Software Foundation (ASF) under one
  3. * or more contributor license agreements. See the NOTICE file
  4. * distributed with this work for additional information
  5. * regarding copyright ownership. The ASF licenses this file
  6. * to you under the Apache License, Version 2.0 (the
  7. * "License"); you may not use this file except in compliance
  8. * with the License. You may obtain a copy of the License at
  9. *
  10. * http://www.apache.org/licenses/LICENSE-2.0
  11. *
  12. * Unless required by applicable law or agreed to in writing,
  13. * software distributed under the License is distributed on an
  14. * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  15. * KIND, either express or implied. See the License for the
  16. * specific language governing permissions and limitations
  17. * under the License.
  18. */
  19. export default {
  20. "series": [
  21. {
  22. "name": "Les Miserables",
  23. "type": "graph",
  24. "layout": "none",
  25. "data": [
  26. {
  27. "id": "0",
  28. "name": "Myriel",
  29. "label": {
  30. "normal": {
  31. "formatter": "Myriel",
  32. "show": false
  33. }
  34. },
  35. "symbolSize": 28.685715,
  36. "x": -266.82776,
  37. "y": 299.6904,
  38. "attributes": {
  39. "modularity_class": 0
  40. },
  41. "value": 28.685715,
  42. "category": 0
  43. },
  44. {
  45. "id": "1",
  46. "name": "Napoleon",
  47. "label": {
  48. "normal": {
  49. "formatter": "Napoleon",
  50. "show": false
  51. }
  52. },
  53. "symbolSize": 4,
  54. "x": -418.08344,
  55. "y": 446.8853,
  56. "attributes": {
  57. "modularity_class": 0
  58. },
  59. "value": 4,
  60. "category": 0
  61. },
  62. {
  63. "id": "2",
  64. "name": "MlleBaptistine",
  65. "label": {
  66. "normal": {
  67. "formatter": "MlleBaptistine",
  68. "show": false
  69. }
  70. },
  71. "symbolSize": 9.485714,
  72. "x": -212.76357,
  73. "y": 245.29176,
  74. "attributes": {
  75. "modularity_class": 1
  76. },
  77. "value": 9.485714,
  78. "category": 1
  79. },
  80. {
  81. "id": "3",
  82. "name": "MmeMagloire",
  83. "label": {
  84. "normal": {
  85. "formatter": "MmeMagloire",
  86. "show": false
  87. }
  88. },
  89. "symbolSize": 9.485714,
  90. "x": -242.82404,
  91. "y": 235.26283,
  92. "attributes": {
  93. "modularity_class": 1
  94. },
  95. "value": 9.485714,
  96. "category": 1
  97. },
  98. {
  99. "id": "4",
  100. "name": "CountessDeLo",
  101. "label": {
  102. "normal": {
  103. "formatter": "CountessDeLo",
  104. "show": false
  105. }
  106. },
  107. "symbolSize": 4,
  108. "x": -379.30386,
  109. "y": 429.06424,
  110. "attributes": {
  111. "modularity_class": 0
  112. },
  113. "value": 4,
  114. "category": 0
  115. },
  116. {
  117. "id": "5",
  118. "name": "Geborand",
  119. "label": {
  120. "normal": {
  121. "formatter": "Geborand",
  122. "show": false
  123. }
  124. },
  125. "symbolSize": 4,
  126. "x": -417.26337,
  127. "y": 406.03506,
  128. "attributes": {
  129. "modularity_class": 0
  130. },
  131. "value": 4,
  132. "category": 0
  133. },
  134. {
  135. "id": "6",
  136. "name": "Champtercier",
  137. "label": {
  138. "normal": {
  139. "formatter": "Champtercier",
  140. "show": false
  141. }
  142. },
  143. "symbolSize": 4,
  144. "x": -332.6012,
  145. "y": 485.16974,
  146. "attributes": {
  147. "modularity_class": 0
  148. },
  149. "value": 4,
  150. "category": 0
  151. },
  152. {
  153. "id": "7",
  154. "name": "Cravatte",
  155. "label": {
  156. "normal": {
  157. "formatter": "Cravatte",
  158. "show": false
  159. }
  160. },
  161. "symbolSize": 4,
  162. "x": -382.69568,
  163. "y": 475.09113,
  164. "attributes": {
  165. "modularity_class": 0
  166. },
  167. "value": 4,
  168. "category": 0
  169. },
  170. {
  171. "id": "8",
  172. "name": "Count",
  173. "label": {
  174. "normal": {
  175. "formatter": "Count",
  176. "show": false
  177. }
  178. },
  179. "symbolSize": 4,
  180. "x": -320.384,
  181. "y": 387.17325,
  182. "attributes": {
  183. "modularity_class": 0
  184. },
  185. "value": 4,
  186. "category": 0
  187. },
  188. {
  189. "id": "9",
  190. "name": "OldMan",
  191. "label": {
  192. "normal": {
  193. "formatter": "OldMan",
  194. "show": false
  195. }
  196. },
  197. "symbolSize": 4,
  198. "x": -344.39832,
  199. "y": 451.16772,
  200. "attributes": {
  201. "modularity_class": 0
  202. },
  203. "value": 4,
  204. "category": 0
  205. },
  206. {
  207. "id": "10",
  208. "name": "Labarre",
  209. "label": {
  210. "normal": {
  211. "formatter": "Labarre",
  212. "show": false
  213. }
  214. },
  215. "symbolSize": 4,
  216. "x": -89.34107,
  217. "y": 234.56128,
  218. "attributes": {
  219. "modularity_class": 1
  220. },
  221. "value": 4,
  222. "category": 1
  223. },
  224. {
  225. "id": "11",
  226. "name": "Valjean",
  227. "label": {
  228. "normal": {
  229. "formatter": "Valjean",
  230. "show": false
  231. }
  232. },
  233. "symbolSize": 100,
  234. "x": -87.93029,
  235. "y": -6.8120565,
  236. "attributes": {
  237. "modularity_class": 1
  238. },
  239. "value": 100,
  240. "category": 1
  241. },
  242. {
  243. "id": "12",
  244. "name": "Marguerite",
  245. "label": {
  246. "normal": {
  247. "formatter": "Marguerite",
  248. "show": false
  249. }
  250. },
  251. "symbolSize": 6.742859,
  252. "x": -339.77908,
  253. "y": -184.69139,
  254. "attributes": {
  255. "modularity_class": 1
  256. },
  257. "value": 6.742859,
  258. "category": 1
  259. },
  260. {
  261. "id": "13",
  262. "name": "MmeDeR",
  263. "label": {
  264. "normal": {
  265. "formatter": "MmeDeR",
  266. "show": false
  267. }
  268. },
  269. "symbolSize": 4,
  270. "x": -194.31313,
  271. "y": 178.55301,
  272. "attributes": {
  273. "modularity_class": 1
  274. },
  275. "value": 4,
  276. "category": 1
  277. },
  278. {
  279. "id": "14",
  280. "name": "Isabeau",
  281. "label": {
  282. "normal": {
  283. "formatter": "Isabeau",
  284. "show": false
  285. }
  286. },
  287. "symbolSize": 4,
  288. "x": -158.05168,
  289. "y": 201.99768,
  290. "attributes": {
  291. "modularity_class": 1
  292. },
  293. "value": 4,
  294. "category": 1
  295. },
  296. {
  297. "id": "15",
  298. "name": "Gervais",
  299. "label": {
  300. "normal": {
  301. "formatter": "Gervais",
  302. "show": false
  303. }
  304. },
  305. "symbolSize": 4,
  306. "x": -127.701546,
  307. "y": 242.55057,
  308. "attributes": {
  309. "modularity_class": 1
  310. },
  311. "value": 4,
  312. "category": 1
  313. },
  314. {
  315. "id": "16",
  316. "name": "Tholomyes",
  317. "label": {
  318. "normal": {
  319. "formatter": "Tholomyes",
  320. "show": false
  321. }
  322. },
  323. "symbolSize": 25.942856,
  324. "x": -385.2226,
  325. "y": -393.5572,
  326. "attributes": {
  327. "modularity_class": 2
  328. },
  329. "value": 25.942856,
  330. "category": 2
  331. },
  332. {
  333. "id": "17",
  334. "name": "Listolier",
  335. "label": {
  336. "normal": {
  337. "formatter": "Listolier",
  338. "show": false
  339. }
  340. },
  341. "symbolSize": 20.457146,
  342. "x": -516.55884,
  343. "y": -393.98975,
  344. "attributes": {
  345. "modularity_class": 2
  346. },
  347. "value": 20.457146,
  348. "category": 2
  349. },
  350. {
  351. "id": "18",
  352. "name": "Fameuil",
  353. "label": {
  354. "normal": {
  355. "formatter": "Fameuil",
  356. "show": false
  357. }
  358. },
  359. "symbolSize": 20.457146,
  360. "x": -464.79382,
  361. "y": -493.57944,
  362. "attributes": {
  363. "modularity_class": 2
  364. },
  365. "value": 20.457146,
  366. "category": 2
  367. },
  368. {
  369. "id": "19",
  370. "name": "Blacheville",
  371. "label": {
  372. "normal": {
  373. "formatter": "Blacheville",
  374. "show": false
  375. }
  376. },
  377. "symbolSize": 20.457146,
  378. "x": -515.1624,
  379. "y": -456.9891,
  380. "attributes": {
  381. "modularity_class": 2
  382. },
  383. "value": 20.457146,
  384. "category": 2
  385. },
  386. {
  387. "id": "20",
  388. "name": "Favourite",
  389. "label": {
  390. "normal": {
  391. "formatter": "Favourite",
  392. "show": false
  393. }
  394. },
  395. "symbolSize": 20.457146,
  396. "x": -408.12122,
  397. "y": -464.5048,
  398. "attributes": {
  399. "modularity_class": 2
  400. },
  401. "value": 20.457146,
  402. "category": 2
  403. },
  404. {
  405. "id": "21",
  406. "name": "Dahlia",
  407. "label": {
  408. "normal": {
  409. "formatter": "Dahlia",
  410. "show": false
  411. }
  412. },
  413. "symbolSize": 20.457146,
  414. "x": -456.44113,
  415. "y": -425.13303,
  416. "attributes": {
  417. "modularity_class": 2
  418. },
  419. "value": 20.457146,
  420. "category": 2
  421. },
  422. {
  423. "id": "22",
  424. "name": "Zephine",
  425. "label": {
  426. "normal": {
  427. "formatter": "Zephine",
  428. "show": false
  429. }
  430. },
  431. "symbolSize": 20.457146,
  432. "x": -459.1107,
  433. "y": -362.5133,
  434. "attributes": {
  435. "modularity_class": 2
  436. },
  437. "value": 20.457146,
  438. "category": 2
  439. },
  440. {
  441. "id": "23",
  442. "name": "Fantine",
  443. "label": {
  444. "normal": {
  445. "formatter": "Fantine",
  446. "show": false
  447. }
  448. },
  449. "symbolSize": 42.4,
  450. "x": -313.42786,
  451. "y": -289.44803,
  452. "attributes": {
  453. "modularity_class": 2
  454. },
  455. "value": 42.4,
  456. "category": 2
  457. },
  458. {
  459. "id": "24",
  460. "name": "MmeThenardier",
  461. "label": {
  462. "normal": {
  463. "formatter": "MmeThenardier",
  464. "show": false
  465. }
  466. },
  467. "symbolSize": 31.428574,
  468. "x": 4.6313396,
  469. "y": -273.8517,
  470. "attributes": {
  471. "modularity_class": 7
  472. },
  473. "value": 31.428574,
  474. "category": 7
  475. },
  476. {
  477. "id": "25",
  478. "name": "Thenardier",
  479. "label": {
  480. "normal": {
  481. "formatter": "Thenardier",
  482. "show": false
  483. }
  484. },
  485. "symbolSize": 45.142853,
  486. "x": 82.80825,
  487. "y": -203.1144,
  488. "attributes": {
  489. "modularity_class": 7
  490. },
  491. "value": 45.142853,
  492. "category": 7
  493. },
  494. {
  495. "id": "26",
  496. "name": "Cosette",
  497. "label": {
  498. "normal": {
  499. "formatter": "Cosette",
  500. "show": false
  501. }
  502. },
  503. "symbolSize": 31.428574,
  504. "x": 78.64646,
  505. "y": -31.512747,
  506. "attributes": {
  507. "modularity_class": 6
  508. },
  509. "value": 31.428574,
  510. "category": 6
  511. },
  512. {
  513. "id": "27",
  514. "name": "Javert",
  515. "label": {
  516. "normal": {
  517. "formatter": "Javert",
  518. "show": false
  519. }
  520. },
  521. "symbolSize": 47.88571,
  522. "x": -81.46074,
  523. "y": -204.20204,
  524. "attributes": {
  525. "modularity_class": 7
  526. },
  527. "value": 47.88571,
  528. "category": 7
  529. },
  530. {
  531. "id": "28",
  532. "name": "Fauchelevent",
  533. "label": {
  534. "normal": {
  535. "formatter": "Fauchelevent",
  536. "show": false
  537. }
  538. },
  539. "symbolSize": 12.228573,
  540. "x": -225.73984,
  541. "y": 82.41631,
  542. "attributes": {
  543. "modularity_class": 4
  544. },
  545. "value": 12.228573,
  546. "category": 4
  547. },
  548. {
  549. "id": "29",
  550. "name": "Bamatabois",
  551. "label": {
  552. "normal": {
  553. "formatter": "Bamatabois",
  554. "show": false
  555. }
  556. },
  557. "symbolSize": 23.2,
  558. "x": -385.6842,
  559. "y": -20.206686,
  560. "attributes": {
  561. "modularity_class": 3
  562. },
  563. "value": 23.2,
  564. "category": 3
  565. },
  566. {
  567. "id": "30",
  568. "name": "Perpetue",
  569. "label": {
  570. "normal": {
  571. "formatter": "Perpetue",
  572. "show": false
  573. }
  574. },
  575. "symbolSize": 6.742859,
  576. "x": -403.92447,
  577. "y": -197.69823,
  578. "attributes": {
  579. "modularity_class": 2
  580. },
  581. "value": 6.742859,
  582. "category": 2
  583. },
  584. {
  585. "id": "31",
  586. "name": "Simplice",
  587. "label": {
  588. "normal": {
  589. "formatter": "Simplice",
  590. "show": false
  591. }
  592. },
  593. "symbolSize": 12.228573,
  594. "x": -281.4253,
  595. "y": -158.45137,
  596. "attributes": {
  597. "modularity_class": 2
  598. },
  599. "value": 12.228573,
  600. "category": 2
  601. },
  602. {
  603. "id": "32",
  604. "name": "Scaufflaire",
  605. "label": {
  606. "normal": {
  607. "formatter": "Scaufflaire",
  608. "show": false
  609. }
  610. },
  611. "symbolSize": 4,
  612. "x": -122.41348,
  613. "y": 210.37503,
  614. "attributes": {
  615. "modularity_class": 1
  616. },
  617. "value": 4,
  618. "category": 1
  619. },
  620. {
  621. "id": "33",
  622. "name": "Woman1",
  623. "label": {
  624. "normal": {
  625. "formatter": "Woman1",
  626. "show": false
  627. }
  628. },
  629. "symbolSize": 6.742859,
  630. "x": -234.6001,
  631. "y": -113.15067,
  632. "attributes": {
  633. "modularity_class": 1
  634. },
  635. "value": 6.742859,
  636. "category": 1
  637. },
  638. {
  639. "id": "34",
  640. "name": "Judge",
  641. "label": {
  642. "normal": {
  643. "formatter": "Judge",
  644. "show": false
  645. }
  646. },
  647. "symbolSize": 17.714287,
  648. "x": -387.84915,
  649. "y": 58.7059,
  650. "attributes": {
  651. "modularity_class": 3
  652. },
  653. "value": 17.714287,
  654. "category": 3
  655. },
  656. {
  657. "id": "35",
  658. "name": "Champmathieu",
  659. "label": {
  660. "normal": {
  661. "formatter": "Champmathieu",
  662. "show": false
  663. }
  664. },
  665. "symbolSize": 17.714287,
  666. "x": -338.2307,
  667. "y": 87.48405,
  668. "attributes": {
  669. "modularity_class": 3
  670. },
  671. "value": 17.714287,
  672. "category": 3
  673. },
  674. {
  675. "id": "36",
  676. "name": "Brevet",
  677. "label": {
  678. "normal": {
  679. "formatter": "Brevet",
  680. "show": false
  681. }
  682. },
  683. "symbolSize": 17.714287,
  684. "x": -453.26874,
  685. "y": 58.94648,
  686. "attributes": {
  687. "modularity_class": 3
  688. },
  689. "value": 17.714287,
  690. "category": 3
  691. },
  692. {
  693. "id": "37",
  694. "name": "Chenildieu",
  695. "label": {
  696. "normal": {
  697. "formatter": "Chenildieu",
  698. "show": false
  699. }
  700. },
  701. "symbolSize": 17.714287,
  702. "x": -386.44904,
  703. "y": 140.05937,
  704. "attributes": {
  705. "modularity_class": 3
  706. },
  707. "value": 17.714287,
  708. "category": 3
  709. },
  710. {
  711. "id": "38",
  712. "name": "Cochepaille",
  713. "label": {
  714. "normal": {
  715. "formatter": "Cochepaille",
  716. "show": false
  717. }
  718. },
  719. "symbolSize": 17.714287,
  720. "x": -446.7876,
  721. "y": 123.38005,
  722. "attributes": {
  723. "modularity_class": 3
  724. },
  725. "value": 17.714287,
  726. "category": 3
  727. },
  728. {
  729. "id": "39",
  730. "name": "Pontmercy",
  731. "label": {
  732. "normal": {
  733. "formatter": "Pontmercy",
  734. "show": false
  735. }
  736. },
  737. "symbolSize": 9.485714,
  738. "x": 336.49738,
  739. "y": -269.55914,
  740. "attributes": {
  741. "modularity_class": 6
  742. },
  743. "value": 9.485714,
  744. "category": 6
  745. },
  746. {
  747. "id": "40",
  748. "name": "Boulatruelle",
  749. "label": {
  750. "normal": {
  751. "formatter": "Boulatruelle",
  752. "show": false
  753. }
  754. },
  755. "symbolSize": 4,
  756. "x": 29.187843,
  757. "y": -460.13132,
  758. "attributes": {
  759. "modularity_class": 7
  760. },
  761. "value": 4,
  762. "category": 7
  763. },
  764. {
  765. "id": "41",
  766. "name": "Eponine",
  767. "label": {
  768. "normal": {
  769. "formatter": "Eponine",
  770. "show": false
  771. }
  772. },
  773. "symbolSize": 31.428574,
  774. "x": 238.36697,
  775. "y": -210.00926,
  776. "attributes": {
  777. "modularity_class": 7
  778. },
  779. "value": 31.428574,
  780. "category": 7
  781. },
  782. {
  783. "id": "42",
  784. "name": "Anzelma",
  785. "label": {
  786. "normal": {
  787. "formatter": "Anzelma",
  788. "show": false
  789. }
  790. },
  791. "symbolSize": 9.485714,
  792. "x": 189.69513,
  793. "y": -346.50662,
  794. "attributes": {
  795. "modularity_class": 7
  796. },
  797. "value": 9.485714,
  798. "category": 7
  799. },
  800. {
  801. "id": "43",
  802. "name": "Woman2",
  803. "label": {
  804. "normal": {
  805. "formatter": "Woman2",
  806. "show": false
  807. }
  808. },
  809. "symbolSize": 9.485714,
  810. "x": -187.00418,
  811. "y": -145.02663,
  812. "attributes": {
  813. "modularity_class": 6
  814. },
  815. "value": 9.485714,
  816. "category": 6
  817. },
  818. {
  819. "id": "44",
  820. "name": "MotherInnocent",
  821. "label": {
  822. "normal": {
  823. "formatter": "MotherInnocent",
  824. "show": false
  825. }
  826. },
  827. "symbolSize": 6.742859,
  828. "x": -252.99521,
  829. "y": 129.87549,
  830. "attributes": {
  831. "modularity_class": 4
  832. },
  833. "value": 6.742859,
  834. "category": 4
  835. },
  836. {
  837. "id": "45",
  838. "name": "Gribier",
  839. "label": {
  840. "normal": {
  841. "formatter": "Gribier",
  842. "show": false
  843. }
  844. },
  845. "symbolSize": 4,
  846. "x": -296.07935,
  847. "y": 163.11964,
  848. "attributes": {
  849. "modularity_class": 4
  850. },
  851. "value": 4,
  852. "category": 4
  853. },
  854. {
  855. "id": "46",
  856. "name": "Jondrette",
  857. "label": {
  858. "normal": {
  859. "formatter": "Jondrette",
  860. "show": false
  861. }
  862. },
  863. "symbolSize": 4,
  864. "x": 550.3201,
  865. "y": 522.4031,
  866. "attributes": {
  867. "modularity_class": 5
  868. },
  869. "value": 4,
  870. "category": 5
  871. },
  872. {
  873. "id": "47",
  874. "name": "MmeBurgon",
  875. "label": {
  876. "normal": {
  877. "formatter": "MmeBurgon",
  878. "show": false
  879. }
  880. },
  881. "symbolSize": 6.742859,
  882. "x": 488.13535,
  883. "y": 356.8573,
  884. "attributes": {
  885. "modularity_class": 5
  886. },
  887. "value": 6.742859,
  888. "category": 5
  889. },
  890. {
  891. "id": "48",
  892. "name": "Gavroche",
  893. "label": {
  894. "normal": {
  895. "formatter": "Gavroche",
  896. "show": false
  897. }
  898. },
  899. "symbolSize": 61.600006,
  900. "x": 387.89572,
  901. "y": 110.462326,
  902. "attributes": {
  903. "modularity_class": 8
  904. },
  905. "value": 61.600006,
  906. "category": 8
  907. },
  908. {
  909. "id": "49",
  910. "name": "Gillenormand",
  911. "label": {
  912. "normal": {
  913. "formatter": "Gillenormand",
  914. "show": false
  915. }
  916. },
  917. "symbolSize": 20.457146,
  918. "x": 126.4831,
  919. "y": 68.10622,
  920. "attributes": {
  921. "modularity_class": 6
  922. },
  923. "value": 20.457146,
  924. "category": 6
  925. },
  926. {
  927. "id": "50",
  928. "name": "Magnon",
  929. "label": {
  930. "normal": {
  931. "formatter": "Magnon",
  932. "show": false
  933. }
  934. },
  935. "symbolSize": 6.742859,
  936. "x": 127.07365,
  937. "y": -113.05923,
  938. "attributes": {
  939. "modularity_class": 6
  940. },
  941. "value": 6.742859,
  942. "category": 6
  943. },
  944. {
  945. "id": "51",
  946. "name": "MlleGillenormand",
  947. "label": {
  948. "normal": {
  949. "formatter": "MlleGillenormand",
  950. "show": false
  951. }
  952. },
  953. "symbolSize": 20.457146,
  954. "x": 162.63559,
  955. "y": 117.6565,
  956. "attributes": {
  957. "modularity_class": 6
  958. },
  959. "value": 20.457146,
  960. "category": 6
  961. },
  962. {
  963. "id": "52",
  964. "name": "MmePontmercy",
  965. "label": {
  966. "normal": {
  967. "formatter": "MmePontmercy",
  968. "show": false
  969. }
  970. },
  971. "symbolSize": 6.742859,
  972. "x": 353.66415,
  973. "y": -205.89165,
  974. "attributes": {
  975. "modularity_class": 6
  976. },
  977. "value": 6.742859,
  978. "category": 6
  979. },
  980. {
  981. "id": "53",
  982. "name": "MlleVaubois",
  983. "label": {
  984. "normal": {
  985. "formatter": "MlleVaubois",
  986. "show": false
  987. }
  988. },
  989. "symbolSize": 4,
  990. "x": 165.43939,
  991. "y": 339.7736,
  992. "attributes": {
  993. "modularity_class": 6
  994. },
  995. "value": 4,
  996. "category": 6
  997. },
  998. {
  999. "id": "54",
  1000. "name": "LtGillenormand",
  1001. "label": {
  1002. "normal": {
  1003. "formatter": "LtGillenormand",
  1004. "show": false
  1005. }
  1006. },
  1007. "symbolSize": 12.228573,
  1008. "x": 137.69348,
  1009. "y": 196.1069,
  1010. "attributes": {
  1011. "modularity_class": 6
  1012. },
  1013. "value": 12.228573,
  1014. "category": 6
  1015. },
  1016. {
  1017. "id": "55",
  1018. "name": "Marius",
  1019. "label": {
  1020. "normal": {
  1021. "formatter": "Marius",
  1022. "show": false
  1023. }
  1024. },
  1025. "symbolSize": 53.37143,
  1026. "x": 206.44687,
  1027. "y": -13.805411,
  1028. "attributes": {
  1029. "modularity_class": 6
  1030. },
  1031. "value": 53.37143,
  1032. "category": 6
  1033. },
  1034. {
  1035. "id": "56",
  1036. "name": "BaronessT",
  1037. "label": {
  1038. "normal": {
  1039. "formatter": "BaronessT",
  1040. "show": false
  1041. }
  1042. },
  1043. "symbolSize": 6.742859,
  1044. "x": 194.82993,
  1045. "y": 224.78036,
  1046. "attributes": {
  1047. "modularity_class": 6
  1048. },
  1049. "value": 6.742859,
  1050. "category": 6
  1051. },
  1052. {
  1053. "id": "57",
  1054. "name": "Mabeuf",
  1055. "label": {
  1056. "normal": {
  1057. "formatter": "Mabeuf",
  1058. "show": false
  1059. }
  1060. },
  1061. "symbolSize": 31.428574,
  1062. "x": 597.6618,
  1063. "y": 135.18481,
  1064. "attributes": {
  1065. "modularity_class": 8
  1066. },
  1067. "value": 31.428574,
  1068. "category": 8
  1069. },
  1070. {
  1071. "id": "58",
  1072. "name": "Enjolras",
  1073. "label": {
  1074. "normal": {
  1075. "formatter": "Enjolras",
  1076. "show": false
  1077. }
  1078. },
  1079. "symbolSize": 42.4,
  1080. "x": 355.78366,
  1081. "y": -74.882454,
  1082. "attributes": {
  1083. "modularity_class": 8
  1084. },
  1085. "value": 42.4,
  1086. "category": 8
  1087. },
  1088. {
  1089. "id": "59",
  1090. "name": "Combeferre",
  1091. "label": {
  1092. "normal": {
  1093. "formatter": "Combeferre",
  1094. "show": false
  1095. }
  1096. },
  1097. "symbolSize": 31.428574,
  1098. "x": 515.2961,
  1099. "y": -46.167564,
  1100. "attributes": {
  1101. "modularity_class": 8
  1102. },
  1103. "value": 31.428574,
  1104. "category": 8
  1105. },
  1106. {
  1107. "id": "60",
  1108. "name": "Prouvaire",
  1109. "label": {
  1110. "normal": {
  1111. "formatter": "Prouvaire",
  1112. "show": false
  1113. }
  1114. },
  1115. "symbolSize": 25.942856,
  1116. "x": 614.29285,
  1117. "y": -69.3104,
  1118. "attributes": {
  1119. "modularity_class": 8
  1120. },
  1121. "value": 25.942856,
  1122. "category": 8
  1123. },
  1124. {
  1125. "id": "61",
  1126. "name": "Feuilly",
  1127. "label": {
  1128. "normal": {
  1129. "formatter": "Feuilly",
  1130. "show": false
  1131. }
  1132. },
  1133. "symbolSize": 31.428574,
  1134. "x": 550.1917,
  1135. "y": -128.17537,
  1136. "attributes": {
  1137. "modularity_class": 8
  1138. },
  1139. "value": 31.428574,
  1140. "category": 8
  1141. },
  1142. {
  1143. "id": "62",
  1144. "name": "Courfeyrac",
  1145. "label": {
  1146. "normal": {
  1147. "formatter": "Courfeyrac",
  1148. "show": false
  1149. }
  1150. },
  1151. "symbolSize": 36.91429,
  1152. "x": 436.17184,
  1153. "y": -12.7286825,
  1154. "attributes": {
  1155. "modularity_class": 8
  1156. },
  1157. "value": 36.91429,
  1158. "category": 8
  1159. },
  1160. {
  1161. "id": "63",
  1162. "name": "Bahorel",
  1163. "label": {
  1164. "normal": {
  1165. "formatter": "Bahorel",
  1166. "show": false
  1167. }
  1168. },
  1169. "symbolSize": 34.17143,
  1170. "x": 602.55225,
  1171. "y": 16.421427,
  1172. "attributes": {
  1173. "modularity_class": 8
  1174. },
  1175. "value": 34.17143,
  1176. "category": 8
  1177. },
  1178. {
  1179. "id": "64",
  1180. "name": "Bossuet",
  1181. "label": {
  1182. "normal": {
  1183. "formatter": "Bossuet",
  1184. "show": false
  1185. }
  1186. },
  1187. "symbolSize": 36.91429,
  1188. "x": 455.81955,
  1189. "y": -115.45826,
  1190. "attributes": {
  1191. "modularity_class": 8
  1192. },
  1193. "value": 36.91429,
  1194. "category": 8
  1195. },
  1196. {
  1197. "id": "65",
  1198. "name": "Joly",
  1199. "label": {
  1200. "normal": {
  1201. "formatter": "Joly",
  1202. "show": false
  1203. }
  1204. },
  1205. "symbolSize": 34.17143,
  1206. "x": 516.40784,
  1207. "y": 47.242233,
  1208. "attributes": {
  1209. "modularity_class": 8
  1210. },
  1211. "value": 34.17143,
  1212. "category": 8
  1213. },
  1214. {
  1215. "id": "66",
  1216. "name": "Grantaire",
  1217. "label": {
  1218. "normal": {
  1219. "formatter": "Grantaire",
  1220. "show": false
  1221. }
  1222. },
  1223. "symbolSize": 28.685715,
  1224. "x": 646.4313,
  1225. "y": -151.06331,
  1226. "attributes": {
  1227. "modularity_class": 8
  1228. },
  1229. "value": 28.685715,
  1230. "category": 8
  1231. },
  1232. {
  1233. "id": "67",
  1234. "name": "MotherPlutarch",
  1235. "label": {
  1236. "normal": {
  1237. "formatter": "MotherPlutarch",
  1238. "show": false
  1239. }
  1240. },
  1241. "symbolSize": 4,
  1242. "x": 668.9568,
  1243. "y": 204.65488,
  1244. "attributes": {
  1245. "modularity_class": 8
  1246. },
  1247. "value": 4,
  1248. "category": 8
  1249. },
  1250. {
  1251. "id": "68",
  1252. "name": "Gueulemer",
  1253. "label": {
  1254. "normal": {
  1255. "formatter": "Gueulemer",
  1256. "show": false
  1257. }
  1258. },
  1259. "symbolSize": 28.685715,
  1260. "x": 78.4799,
  1261. "y": -347.15146,
  1262. "attributes": {
  1263. "modularity_class": 7
  1264. },
  1265. "value": 28.685715,
  1266. "category": 7
  1267. },
  1268. {
  1269. "id": "69",
  1270. "name": "Babet",
  1271. "label": {
  1272. "normal": {
  1273. "formatter": "Babet",
  1274. "show": false
  1275. }
  1276. },
  1277. "symbolSize": 28.685715,
  1278. "x": 150.35959,
  1279. "y": -298.50797,
  1280. "attributes": {
  1281. "modularity_class": 7
  1282. },
  1283. "value": 28.685715,
  1284. "category": 7
  1285. },
  1286. {
  1287. "id": "70",
  1288. "name": "Claquesous",
  1289. "label": {
  1290. "normal": {
  1291. "formatter": "Claquesous",
  1292. "show": false
  1293. }
  1294. },
  1295. "symbolSize": 28.685715,
  1296. "x": 137.3717,
  1297. "y": -410.2809,
  1298. "attributes": {
  1299. "modularity_class": 7
  1300. },
  1301. "value": 28.685715,
  1302. "category": 7
  1303. },
  1304. {
  1305. "id": "71",
  1306. "name": "Montparnasse",
  1307. "label": {
  1308. "normal": {
  1309. "formatter": "Montparnasse",
  1310. "show": false
  1311. }
  1312. },
  1313. "symbolSize": 25.942856,
  1314. "x": 234.87747,
  1315. "y": -400.85983,
  1316. "attributes": {
  1317. "modularity_class": 7
  1318. },
  1319. "value": 25.942856,
  1320. "category": 7
  1321. },
  1322. {
  1323. "id": "72",
  1324. "name": "Toussaint",
  1325. "label": {
  1326. "normal": {
  1327. "formatter": "Toussaint",
  1328. "show": false
  1329. }
  1330. },
  1331. "symbolSize": 9.485714,
  1332. "x": 40.942253,
  1333. "y": 113.78272,
  1334. "attributes": {
  1335. "modularity_class": 1
  1336. },
  1337. "value": 9.485714,
  1338. "category": 1
  1339. },
  1340. {
  1341. "id": "73",
  1342. "name": "Child1",
  1343. "label": {
  1344. "normal": {
  1345. "formatter": "Child1",
  1346. "show": false
  1347. }
  1348. },
  1349. "symbolSize": 6.742859,
  1350. "x": 437.939,
  1351. "y": 291.58234,
  1352. "attributes": {
  1353. "modularity_class": 8
  1354. },
  1355. "value": 6.742859,
  1356. "category": 8
  1357. },
  1358. {
  1359. "id": "74",
  1360. "name": "Child2",
  1361. "label": {
  1362. "normal": {
  1363. "formatter": "Child2",
  1364. "show": false
  1365. }
  1366. },
  1367. "symbolSize": 6.742859,
  1368. "x": 466.04922,
  1369. "y": 283.3606,
  1370. "attributes": {
  1371. "modularity_class": 8
  1372. },
  1373. "value": 6.742859,
  1374. "category": 8
  1375. },
  1376. {
  1377. "id": "75",
  1378. "name": "Brujon",
  1379. "label": {
  1380. "normal": {
  1381. "formatter": "Brujon",
  1382. "show": false
  1383. }
  1384. },
  1385. "symbolSize": 20.457146,
  1386. "x": 238.79364,
  1387. "y": -314.06345,
  1388. "attributes": {
  1389. "modularity_class": 7
  1390. },
  1391. "value": 20.457146,
  1392. "category": 7
  1393. },
  1394. {
  1395. "id": "76",
  1396. "name": "MmeHucheloup",
  1397. "label": {
  1398. "normal": {
  1399. "formatter": "MmeHucheloup",
  1400. "show": false
  1401. }
  1402. },
  1403. "symbolSize": 20.457146,
  1404. "x": 712.18353,
  1405. "y": 4.8131495,
  1406. "attributes": {
  1407. "modularity_class": 8
  1408. },
  1409. "value": 20.457146,
  1410. "category": 8
  1411. }
  1412. ],
  1413. "links": [
  1414. {
  1415. "id": "0",
  1416. "name": null,
  1417. "source": "1",
  1418. "target": "0"
  1419. },
  1420. {
  1421. "id": "1",
  1422. "name": null,
  1423. "source": "2",
  1424. "target": "0"
  1425. },
  1426. {
  1427. "id": "2",
  1428. "name": null,
  1429. "source": "3",
  1430. "target": "0"
  1431. },
  1432. {
  1433. "id": "3",
  1434. "name": null,
  1435. "source": "3",
  1436. "target": "2"
  1437. },
  1438. {
  1439. "id": "4",
  1440. "name": null,
  1441. "source": "4",
  1442. "target": "0"
  1443. },
  1444. {
  1445. "id": "5",
  1446. "name": null,
  1447. "source": "5",
  1448. "target": "0"
  1449. },
  1450. {
  1451. "id": "6",
  1452. "name": null,
  1453. "source": "6",
  1454. "target": "0"
  1455. },
  1456. {
  1457. "id": "7",
  1458. "name": null,
  1459. "source": "7",
  1460. "target": "0"
  1461. },
  1462. {
  1463. "id": "8",
  1464. "name": null,
  1465. "source": "8",
  1466. "target": "0"
  1467. },
  1468. {
  1469. "id": "9",
  1470. "name": null,
  1471. "source": "9",
  1472. "target": "0"
  1473. },
  1474. {
  1475. "id": "13",
  1476. "name": null,
  1477. "source": "11",
  1478. "target": "0"
  1479. },
  1480. {
  1481. "id": null,
  1482. "name": null,
  1483. "source": "11",
  1484. "target": "2"
  1485. },
  1486. {
  1487. "id": "11",
  1488. "name": null,
  1489. "source": "11",
  1490. "target": "3"
  1491. },
  1492. {
  1493. "id": "10",
  1494. "name": null,
  1495. "source": "11",
  1496. "target": "10"
  1497. },
  1498. {
  1499. "id": "14",
  1500. "name": null,
  1501. "source": "12",
  1502. "target": "11"
  1503. },
  1504. {
  1505. "id": "15",
  1506. "name": null,
  1507. "source": "13",
  1508. "target": "11"
  1509. },
  1510. {
  1511. "id": "16",
  1512. "name": null,
  1513. "source": "14",
  1514. "target": "11"
  1515. },
  1516. {
  1517. "id": "17",
  1518. "name": null,
  1519. "source": "15",
  1520. "target": "11"
  1521. },
  1522. {
  1523. "id": "18",
  1524. "name": null,
  1525. "source": "17",
  1526. "target": "16"
  1527. },
  1528. {
  1529. "id": "19",
  1530. "name": null,
  1531. "source": "18",
  1532. "target": "16"
  1533. },
  1534. {
  1535. "id": "20",
  1536. "name": null,
  1537. "source": "18",
  1538. "target": "17"
  1539. },
  1540. {
  1541. "id": "21",
  1542. "name": null,
  1543. "source": "19",
  1544. "target": "16"
  1545. },
  1546. {
  1547. "id": "22",
  1548. "name": null,
  1549. "source": "19",
  1550. "target": "17"
  1551. },
  1552. {
  1553. "id": "23",
  1554. "name": null,
  1555. "source": "19",
  1556. "target": "18"
  1557. },
  1558. {
  1559. "id": "24",
  1560. "name": null,
  1561. "source": "20",
  1562. "target": "16"
  1563. },
  1564. {
  1565. "id": "25",
  1566. "name": null,
  1567. "source": "20",
  1568. "target": "17"
  1569. },
  1570. {
  1571. "id": "26",
  1572. "name": null,
  1573. "source": "20",
  1574. "target": "18"
  1575. },
  1576. {
  1577. "id": "27",
  1578. "name": null,
  1579. "source": "20",
  1580. "target": "19"
  1581. },
  1582. {
  1583. "id": "28",
  1584. "name": null,
  1585. "source": "21",
  1586. "target": "16"
  1587. },
  1588. {
  1589. "id": "29",
  1590. "name": null,
  1591. "source": "21",
  1592. "target": "17"
  1593. },
  1594. {
  1595. "id": "30",
  1596. "name": null,
  1597. "source": "21",
  1598. "target": "18"
  1599. },
  1600. {
  1601. "id": "31",
  1602. "name": null,
  1603. "source": "21",
  1604. "target": "19"
  1605. },
  1606. {
  1607. "id": "32",
  1608. "name": null,
  1609. "source": "21",
  1610. "target": "20"
  1611. },
  1612. {
  1613. "id": "33",
  1614. "name": null,
  1615. "source": "22",
  1616. "target": "16"
  1617. },
  1618. {
  1619. "id": "34",
  1620. "name": null,
  1621. "source": "22",
  1622. "target": "17"
  1623. },
  1624. {
  1625. "id": "35",
  1626. "name": null,
  1627. "source": "22",
  1628. "target": "18"
  1629. },
  1630. {
  1631. "id": "36",
  1632. "name": null,
  1633. "source": "22",
  1634. "target": "19"
  1635. },
  1636. {
  1637. "id": "37",
  1638. "name": null,
  1639. "source": "22",
  1640. "target": "20"
  1641. },
  1642. {
  1643. "id": "38",
  1644. "name": null,
  1645. "source": "22",
  1646. "target": "21"
  1647. },
  1648. {
  1649. "id": "47",
  1650. "name": null,
  1651. "source": "23",
  1652. "target": "11"
  1653. },
  1654. {
  1655. "id": "46",
  1656. "name": null,
  1657. "source": "23",
  1658. "target": "12"
  1659. },
  1660. {
  1661. "id": "39",
  1662. "name": null,
  1663. "source": "23",
  1664. "target": "16"
  1665. },
  1666. {
  1667. "id": "40",
  1668. "name": null,
  1669. "source": "23",
  1670. "target": "17"
  1671. },
  1672. {
  1673. "id": "41",
  1674. "name": null,
  1675. "source": "23",
  1676. "target": "18"
  1677. },
  1678. {
  1679. "id": "42",
  1680. "name": null,
  1681. "source": "23",
  1682. "target": "19"
  1683. },
  1684. {
  1685. "id": "43",
  1686. "name": null,
  1687. "source": "23",
  1688. "target": "20"
  1689. },
  1690. {
  1691. "id": "44",
  1692. "name": null,
  1693. "source": "23",
  1694. "target": "21"
  1695. },
  1696. {
  1697. "id": "45",
  1698. "name": null,
  1699. "source": "23",
  1700. "target": "22"
  1701. },
  1702. {
  1703. "id": null,
  1704. "name": null,
  1705. "source": "24",
  1706. "target": "11"
  1707. },
  1708. {
  1709. "id": "48",
  1710. "name": null,
  1711. "source": "24",
  1712. "target": "23"
  1713. },
  1714. {
  1715. "id": "52",
  1716. "name": null,
  1717. "source": "25",
  1718. "target": "11"
  1719. },
  1720. {
  1721. "id": "51",
  1722. "name": null,
  1723. "source": "25",
  1724. "target": "23"
  1725. },
  1726. {
  1727. "id": "50",
  1728. "name": null,
  1729. "source": "25",
  1730. "target": "24"
  1731. },
  1732. {
  1733. "id": null,
  1734. "name": null,
  1735. "source": "26",
  1736. "target": "11"
  1737. },
  1738. {
  1739. "id": null,
  1740. "name": null,
  1741. "source": "26",
  1742. "target": "16"
  1743. },
  1744. {
  1745. "id": "53",
  1746. "name": null,
  1747. "source": "26",
  1748. "target": "24"
  1749. },
  1750. {
  1751. "id": "56",
  1752. "name": null,
  1753. "source": "26",
  1754. "target": "25"
  1755. },
  1756. {
  1757. "id": "57",
  1758. "name": null,
  1759. "source": "27",
  1760. "target": "11"
  1761. },
  1762. {
  1763. "id": "58",
  1764. "name": null,
  1765. "source": "27",
  1766. "target": "23"
  1767. },
  1768. {
  1769. "id": null,
  1770. "name": null,
  1771. "source": "27",
  1772. "target": "24"
  1773. },
  1774. {
  1775. "id": "59",
  1776. "name": null,
  1777. "source": "27",
  1778. "target": "25"
  1779. },
  1780. {
  1781. "id": "61",
  1782. "name": null,
  1783. "source": "27",
  1784. "target": "26"
  1785. },
  1786. {
  1787. "id": "62",
  1788. "name": null,
  1789. "source": "28",
  1790. "target": "11"
  1791. },
  1792. {
  1793. "id": "63",
  1794. "name": null,
  1795. "source": "28",
  1796. "target": "27"
  1797. },
  1798. {
  1799. "id": "66",
  1800. "name": null,
  1801. "source": "29",
  1802. "target": "11"
  1803. },
  1804. {
  1805. "id": "64",
  1806. "name": null,
  1807. "source": "29",
  1808. "target": "23"
  1809. },
  1810. {
  1811. "id": "65",
  1812. "name": null,
  1813. "source": "29",
  1814. "target": "27"
  1815. },
  1816. {
  1817. "id": "67",
  1818. "name": null,
  1819. "source": "30",
  1820. "target": "23"
  1821. },
  1822. {
  1823. "id": null,
  1824. "name": null,
  1825. "source": "31",
  1826. "target": "11"
  1827. },
  1828. {
  1829. "id": null,
  1830. "name": null,
  1831. "source": "31",
  1832. "target": "23"
  1833. },
  1834. {
  1835. "id": null,
  1836. "name": null,
  1837. "source": "31",
  1838. "target": "27"
  1839. },
  1840. {
  1841. "id": "68",
  1842. "name": null,
  1843. "source": "31",
  1844. "target": "30"
  1845. },
  1846. {
  1847. "id": "72",
  1848. "name": null,
  1849. "source": "32",
  1850. "target": "11"
  1851. },
  1852. {
  1853. "id": "73",
  1854. "name": null,
  1855. "source": "33",
  1856. "target": "11"
  1857. },
  1858. {
  1859. "id": "74",
  1860. "name": null,
  1861. "source": "33",
  1862. "target": "27"
  1863. },
  1864. {
  1865. "id": "75",
  1866. "name": null,
  1867. "source": "34",
  1868. "target": "11"
  1869. },
  1870. {
  1871. "id": "76",
  1872. "name": null,
  1873. "source": "34",
  1874. "target": "29"
  1875. },
  1876. {
  1877. "id": "77",
  1878. "name": null,
  1879. "source": "35",
  1880. "target": "11"
  1881. },
  1882. {
  1883. "id": null,
  1884. "name": null,
  1885. "source": "35",
  1886. "target": "29"
  1887. },
  1888. {
  1889. "id": "78",
  1890. "name": null,
  1891. "source": "35",
  1892. "target": "34"
  1893. },
  1894. {
  1895. "id": "82",
  1896. "name": null,
  1897. "source": "36",
  1898. "target": "11"
  1899. },
  1900. {
  1901. "id": "83",
  1902. "name": null,
  1903. "source": "36",
  1904. "target": "29"
  1905. },
  1906. {
  1907. "id": "80",
  1908. "name": null,
  1909. "source": "36",
  1910. "target": "34"
  1911. },
  1912. {
  1913. "id": "81",
  1914. "name": null,
  1915. "source": "36",
  1916. "target": "35"
  1917. },
  1918. {
  1919. "id": "87",
  1920. "name": null,
  1921. "source": "37",
  1922. "target": "11"
  1923. },
  1924. {
  1925. "id": "88",
  1926. "name": null,
  1927. "source": "37",
  1928. "target": "29"
  1929. },
  1930. {
  1931. "id": "84",
  1932. "name": null,
  1933. "source": "37",
  1934. "target": "34"
  1935. },
  1936. {
  1937. "id": "85",
  1938. "name": null,
  1939. "source": "37",
  1940. "target": "35"
  1941. },
  1942. {
  1943. "id": "86",
  1944. "name": null,
  1945. "source": "37",
  1946. "target": "36"
  1947. },
  1948. {
  1949. "id": "93",
  1950. "name": null,
  1951. "source": "38",
  1952. "target": "11"
  1953. },
  1954. {
  1955. "id": "94",
  1956. "name": null,
  1957. "source": "38",
  1958. "target": "29"
  1959. },
  1960. {
  1961. "id": "89",
  1962. "name": null,
  1963. "source": "38",
  1964. "target": "34"
  1965. },
  1966. {
  1967. "id": "90",
  1968. "name": null,
  1969. "source": "38",
  1970. "target": "35"
  1971. },
  1972. {
  1973. "id": "91",
  1974. "name": null,
  1975. "source": "38",
  1976. "target": "36"
  1977. },
  1978. {
  1979. "id": "92",
  1980. "name": null,
  1981. "source": "38",
  1982. "target": "37"
  1983. },
  1984. {
  1985. "id": "95",
  1986. "name": null,
  1987. "source": "39",
  1988. "target": "25"
  1989. },
  1990. {
  1991. "id": "96",
  1992. "name": null,
  1993. "source": "40",
  1994. "target": "25"
  1995. },
  1996. {
  1997. "id": "97",
  1998. "name": null,
  1999. "source": "41",
  2000. "target": "24"
  2001. },
  2002. {
  2003. "id": "98",
  2004. "name": null,
  2005. "source": "41",
  2006. "target": "25"
  2007. },
  2008. {
  2009. "id": "101",
  2010. "name": null,
  2011. "source": "42",
  2012. "target": "24"
  2013. },
  2014. {
  2015. "id": "100",
  2016. "name": null,
  2017. "source": "42",
  2018. "target": "25"
  2019. },
  2020. {
  2021. "id": "99",
  2022. "name": null,
  2023. "source": "42",
  2024. "target": "41"
  2025. },
  2026. {
  2027. "id": "102",
  2028. "name": null,
  2029. "source": "43",
  2030. "target": "11"
  2031. },
  2032. {
  2033. "id": "103",
  2034. "name": null,
  2035. "source": "43",
  2036. "target": "26"
  2037. },
  2038. {
  2039. "id": "104",
  2040. "name": null,
  2041. "source": "43",
  2042. "target": "27"
  2043. },
  2044. {
  2045. "id": null,
  2046. "name": null,
  2047. "source": "44",
  2048. "target": "11"
  2049. },
  2050. {
  2051. "id": "105",
  2052. "name": null,
  2053. "source": "44",
  2054. "target": "28"
  2055. },
  2056. {
  2057. "id": "107",
  2058. "name": null,
  2059. "source": "45",
  2060. "target": "28"
  2061. },
  2062. {
  2063. "id": "108",
  2064. "name": null,
  2065. "source": "47",
  2066. "target": "46"
  2067. },
  2068. {
  2069. "id": "112",
  2070. "name": null,
  2071. "source": "48",
  2072. "target": "11"
  2073. },
  2074. {
  2075. "id": "110",
  2076. "name": null,
  2077. "source": "48",
  2078. "target": "25"
  2079. },
  2080. {
  2081. "id": "111",
  2082. "name": null,
  2083. "source": "48",
  2084. "target": "27"
  2085. },
  2086. {
  2087. "id": "109",
  2088. "name": null,
  2089. "source": "48",
  2090. "target": "47"
  2091. },
  2092. {
  2093. "id": null,
  2094. "name": null,
  2095. "source": "49",
  2096. "target": "11"
  2097. },
  2098. {
  2099. "id": "113",
  2100. "name": null,
  2101. "source": "49",
  2102. "target": "26"
  2103. },
  2104. {
  2105. "id": null,
  2106. "name": null,
  2107. "source": "50",
  2108. "target": "24"
  2109. },
  2110. {
  2111. "id": "115",
  2112. "name": null,
  2113. "source": "50",
  2114. "target": "49"
  2115. },
  2116. {
  2117. "id": "119",
  2118. "name": null,
  2119. "source": "51",
  2120. "target": "11"
  2121. },
  2122. {
  2123. "id": "118",
  2124. "name": null,
  2125. "source": "51",
  2126. "target": "26"
  2127. },
  2128. {
  2129. "id": "117",
  2130. "name": null,
  2131. "source": "51",
  2132. "target": "49"
  2133. },
  2134. {
  2135. "id": null,
  2136. "name": null,
  2137. "source": "52",
  2138. "target": "39"
  2139. },
  2140. {
  2141. "id": "120",
  2142. "name": null,
  2143. "source": "52",
  2144. "target": "51"
  2145. },
  2146. {
  2147. "id": "122",
  2148. "name": null,
  2149. "source": "53",
  2150. "target": "51"
  2151. },
  2152. {
  2153. "id": "125",
  2154. "name": null,
  2155. "source": "54",
  2156. "target": "26"
  2157. },
  2158. {
  2159. "id": "124",
  2160. "name": null,
  2161. "source": "54",
  2162. "target": "49"
  2163. },
  2164. {
  2165. "id": "123",
  2166. "name": null,
  2167. "source": "54",
  2168. "target": "51"
  2169. },
  2170. {
  2171. "id": "131",
  2172. "name": null,
  2173. "source": "55",
  2174. "target": "11"
  2175. },
  2176. {
  2177. "id": "132",
  2178. "name": null,
  2179. "source": "55",
  2180. "target": "16"
  2181. },
  2182. {
  2183. "id": "133",
  2184. "name": null,
  2185. "source": "55",
  2186. "target": "25"
  2187. },
  2188. {
  2189. "id": null,
  2190. "name": null,
  2191. "source": "55",
  2192. "target": "26"
  2193. },
  2194. {
  2195. "id": "128",
  2196. "name": null,
  2197. "source": "55",
  2198. "target": "39"
  2199. },
  2200. {
  2201. "id": "134",
  2202. "name": null,
  2203. "source": "55",
  2204. "target": "41"
  2205. },
  2206. {
  2207. "id": "135",
  2208. "name": null,
  2209. "source": "55",
  2210. "target": "48"
  2211. },
  2212. {
  2213. "id": "127",
  2214. "name": null,
  2215. "source": "55",
  2216. "target": "49"
  2217. },
  2218. {
  2219. "id": "126",
  2220. "name": null,
  2221. "source": "55",
  2222. "target": "51"
  2223. },
  2224. {
  2225. "id": "129",
  2226. "name": null,
  2227. "source": "55",
  2228. "target": "54"
  2229. },
  2230. {
  2231. "id": "136",
  2232. "name": null,
  2233. "source": "56",
  2234. "target": "49"
  2235. },
  2236. {
  2237. "id": "137",
  2238. "name": null,
  2239. "source": "56",
  2240. "target": "55"
  2241. },
  2242. {
  2243. "id": null,
  2244. "name": null,
  2245. "source": "57",
  2246. "target": "41"
  2247. },
  2248. {
  2249. "id": null,
  2250. "name": null,
  2251. "source": "57",
  2252. "target": "48"
  2253. },
  2254. {
  2255. "id": "138",
  2256. "name": null,
  2257. "source": "57",
  2258. "target": "55"
  2259. },
  2260. {
  2261. "id": "145",
  2262. "name": null,
  2263. "source": "58",
  2264. "target": "11"
  2265. },
  2266. {
  2267. "id": null,
  2268. "name": null,
  2269. "source": "58",
  2270. "target": "27"
  2271. },
  2272. {
  2273. "id": "142",
  2274. "name": null,
  2275. "source": "58",
  2276. "target": "48"
  2277. },
  2278. {
  2279. "id": "141",
  2280. "name": null,
  2281. "source": "58",
  2282. "target": "55"
  2283. },
  2284. {
  2285. "id": "144",
  2286. "name": null,
  2287. "source": "58",
  2288. "target": "57"
  2289. },
  2290. {
  2291. "id": "148",
  2292. "name": null,
  2293. "source": "59",
  2294. "target": "48"
  2295. },
  2296. {
  2297. "id": "147",
  2298. "name": null,
  2299. "source": "59",
  2300. "target": "55"
  2301. },
  2302. {
  2303. "id": null,
  2304. "name": null,
  2305. "source": "59",
  2306. "target": "57"
  2307. },
  2308. {
  2309. "id": "146",
  2310. "name": null,
  2311. "source": "59",
  2312. "target": "58"
  2313. },
  2314. {
  2315. "id": "150",
  2316. "name": null,
  2317. "source": "60",
  2318. "target": "48"
  2319. },
  2320. {
  2321. "id": "151",
  2322. "name": null,
  2323. "source": "60",
  2324. "target": "58"
  2325. },
  2326. {
  2327. "id": "152",
  2328. "name": null,
  2329. "source": "60",
  2330. "target": "59"
  2331. },
  2332. {
  2333. "id": "153",
  2334. "name": null,
  2335. "source": "61",
  2336. "target": "48"
  2337. },
  2338. {
  2339. "id": "158",
  2340. "name": null,
  2341. "source": "61",
  2342. "target": "55"
  2343. },
  2344. {
  2345. "id": "157",
  2346. "name": null,
  2347. "source": "61",
  2348. "target": "57"
  2349. },
  2350. {
  2351. "id": "154",
  2352. "name": null,
  2353. "source": "61",
  2354. "target": "58"
  2355. },
  2356. {
  2357. "id": "156",
  2358. "name": null,
  2359. "source": "61",
  2360. "target": "59"
  2361. },
  2362. {
  2363. "id": "155",
  2364. "name": null,
  2365. "source": "61",
  2366. "target": "60"
  2367. },
  2368. {
  2369. "id": "164",
  2370. "name": null,
  2371. "source": "62",
  2372. "target": "41"
  2373. },
  2374. {
  2375. "id": "162",
  2376. "name": null,
  2377. "source": "62",
  2378. "target": "48"
  2379. },
  2380. {
  2381. "id": "159",
  2382. "name": null,
  2383. "source": "62",
  2384. "target": "55"
  2385. },
  2386. {
  2387. "id": null,
  2388. "name": null,
  2389. "source": "62",
  2390. "target": "57"
  2391. },
  2392. {
  2393. "id": "160",
  2394. "name": null,
  2395. "source": "62",
  2396. "target": "58"
  2397. },
  2398. {
  2399. "id": "161",
  2400. "name": null,
  2401. "source": "62",
  2402. "target": "59"
  2403. },
  2404. {
  2405. "id": null,
  2406. "name": null,
  2407. "source": "62",
  2408. "target": "60"
  2409. },
  2410. {
  2411. "id": "165",
  2412. "name": null,
  2413. "source": "62",
  2414. "target": "61"
  2415. },
  2416. {
  2417. "id": null,
  2418. "name": null,
  2419. "source": "63",
  2420. "target": "48"
  2421. },
  2422. {
  2423. "id": "174",
  2424. "name": null,
  2425. "source": "63",
  2426. "target": "55"
  2427. },
  2428. {
  2429. "id": null,
  2430. "name": null,
  2431. "source": "63",
  2432. "target": "57"
  2433. },
  2434. {
  2435. "id": null,
  2436. "name": null,
  2437. "source": "63",
  2438. "target": "58"
  2439. },
  2440. {
  2441. "id": "167",
  2442. "name": null,
  2443. "source": "63",
  2444. "target": "59"
  2445. },
  2446. {
  2447. "id": null,
  2448. "name": null,
  2449. "source": "63",
  2450. "target": "60"
  2451. },
  2452. {
  2453. "id": "172",
  2454. "name": null,
  2455. "source": "63",
  2456. "target": "61"
  2457. },
  2458. {
  2459. "id": "169",
  2460. "name": null,
  2461. "source": "63",
  2462. "target": "62"
  2463. },
  2464. {
  2465. "id": "184",
  2466. "name": null,
  2467. "source": "64",
  2468. "target": "11"
  2469. },
  2470. {
  2471. "id": null,
  2472. "name": null,
  2473. "source": "64",
  2474. "target": "48"
  2475. },
  2476. {
  2477. "id": "175",
  2478. "name": null,
  2479. "source": "64",
  2480. "target": "55"
  2481. },
  2482. {
  2483. "id": "183",
  2484. "name": null,
  2485. "source": "64",
  2486. "target": "57"
  2487. },
  2488. {
  2489. "id": "179",
  2490. "name": null,
  2491. "source": "64",
  2492. "target": "58"
  2493. },
  2494. {
  2495. "id": "182",
  2496. "name": null,
  2497. "source": "64",
  2498. "target": "59"
  2499. },
  2500. {
  2501. "id": "181",
  2502. "name": null,
  2503. "source": "64",
  2504. "target": "60"
  2505. },
  2506. {
  2507. "id": "180",
  2508. "name": null,
  2509. "source": "64",
  2510. "target": "61"
  2511. },
  2512. {
  2513. "id": "176",
  2514. "name": null,
  2515. "source": "64",
  2516. "target": "62"
  2517. },
  2518. {
  2519. "id": "178",
  2520. "name": null,
  2521. "source": "64",
  2522. "target": "63"
  2523. },
  2524. {
  2525. "id": "187",
  2526. "name": null,
  2527. "source": "65",
  2528. "target": "48"
  2529. },
  2530. {
  2531. "id": "194",
  2532. "name": null,
  2533. "source": "65",
  2534. "target": "55"
  2535. },
  2536. {
  2537. "id": "193",
  2538. "name": null,
  2539. "source": "65",
  2540. "target": "57"
  2541. },
  2542. {
  2543. "id": null,
  2544. "name": null,
  2545. "source": "65",
  2546. "target": "58"
  2547. },
  2548. {
  2549. "id": "192",
  2550. "name": null,
  2551. "source": "65",
  2552. "target": "59"
  2553. },
  2554. {
  2555. "id": null,
  2556. "name": null,
  2557. "source": "65",
  2558. "target": "60"
  2559. },
  2560. {
  2561. "id": "190",
  2562. "name": null,
  2563. "source": "65",
  2564. "target": "61"
  2565. },
  2566. {
  2567. "id": "188",
  2568. "name": null,
  2569. "source": "65",
  2570. "target": "62"
  2571. },
  2572. {
  2573. "id": "185",
  2574. "name": null,
  2575. "source": "65",
  2576. "target": "63"
  2577. },
  2578. {
  2579. "id": "186",
  2580. "name": null,
  2581. "source": "65",
  2582. "target": "64"
  2583. },
  2584. {
  2585. "id": "200",
  2586. "name": null,
  2587. "source": "66",
  2588. "target": "48"
  2589. },
  2590. {
  2591. "id": "196",
  2592. "name": null,
  2593. "source": "66",
  2594. "target": "58"
  2595. },
  2596. {
  2597. "id": "197",
  2598. "name": null,
  2599. "source": "66",
  2600. "target": "59"
  2601. },
  2602. {
  2603. "id": "203",
  2604. "name": null,
  2605. "source": "66",
  2606. "target": "60"
  2607. },
  2608. {
  2609. "id": "202",
  2610. "name": null,
  2611. "source": "66",
  2612. "target": "61"
  2613. },
  2614. {
  2615. "id": "198",
  2616. "name": null,
  2617. "source": "66",
  2618. "target": "62"
  2619. },
  2620. {
  2621. "id": "201",
  2622. "name": null,
  2623. "source": "66",
  2624. "target": "63"
  2625. },
  2626. {
  2627. "id": "195",
  2628. "name": null,
  2629. "source": "66",
  2630. "target": "64"
  2631. },
  2632. {
  2633. "id": "199",
  2634. "name": null,
  2635. "source": "66",
  2636. "target": "65"
  2637. },
  2638. {
  2639. "id": "204",
  2640. "name": null,
  2641. "source": "67",
  2642. "target": "57"
  2643. },
  2644. {
  2645. "id": null,
  2646. "name": null,
  2647. "source": "68",
  2648. "target": "11"
  2649. },
  2650. {
  2651. "id": null,
  2652. "name": null,
  2653. "source": "68",
  2654. "target": "24"
  2655. },
  2656. {
  2657. "id": "205",
  2658. "name": null,
  2659. "source": "68",
  2660. "target": "25"
  2661. },
  2662. {
  2663. "id": "208",
  2664. "name": null,
  2665. "source": "68",
  2666. "target": "27"
  2667. },
  2668. {
  2669. "id": null,
  2670. "name": null,
  2671. "source": "68",
  2672. "target": "41"
  2673. },
  2674. {
  2675. "id": "209",
  2676. "name": null,
  2677. "source": "68",
  2678. "target": "48"
  2679. },
  2680. {
  2681. "id": "213",
  2682. "name": null,
  2683. "source": "69",
  2684. "target": "11"
  2685. },
  2686. {
  2687. "id": "214",
  2688. "name": null,
  2689. "source": "69",
  2690. "target": "24"
  2691. },
  2692. {
  2693. "id": "211",
  2694. "name": null,
  2695. "source": "69",
  2696. "target": "25"
  2697. },
  2698. {
  2699. "id": null,
  2700. "name": null,
  2701. "source": "69",
  2702. "target": "27"
  2703. },
  2704. {
  2705. "id": "217",
  2706. "name": null,
  2707. "source": "69",
  2708. "target": "41"
  2709. },
  2710. {
  2711. "id": "216",
  2712. "name": null,
  2713. "source": "69",
  2714. "target": "48"
  2715. },
  2716. {
  2717. "id": "212",
  2718. "name": null,
  2719. "source": "69",
  2720. "target": "68"
  2721. },
  2722. {
  2723. "id": "221",
  2724. "name": null,
  2725. "source": "70",
  2726. "target": "11"
  2727. },
  2728. {
  2729. "id": "222",
  2730. "name": null,
  2731. "source": "70",
  2732. "target": "24"
  2733. },
  2734. {
  2735. "id": "218",
  2736. "name": null,
  2737. "source": "70",
  2738. "target": "25"
  2739. },
  2740. {
  2741. "id": "223",
  2742. "name": null,
  2743. "source": "70",
  2744. "target": "27"
  2745. },
  2746. {
  2747. "id": "224",
  2748. "name": null,
  2749. "source": "70",
  2750. "target": "41"
  2751. },
  2752. {
  2753. "id": "225",
  2754. "name": null,
  2755. "source": "70",
  2756. "target": "58"
  2757. },
  2758. {
  2759. "id": "220",
  2760. "name": null,
  2761. "source": "70",
  2762. "target": "68"
  2763. },
  2764. {
  2765. "id": "219",
  2766. "name": null,
  2767. "source": "70",
  2768. "target": "69"
  2769. },
  2770. {
  2771. "id": "230",
  2772. "name": null,
  2773. "source": "71",
  2774. "target": "11"
  2775. },
  2776. {
  2777. "id": "233",
  2778. "name": null,
  2779. "source": "71",
  2780. "target": "25"
  2781. },
  2782. {
  2783. "id": "226",
  2784. "name": null,
  2785. "source": "71",
  2786. "target": "27"
  2787. },
  2788. {
  2789. "id": "232",
  2790. "name": null,
  2791. "source": "71",
  2792. "target": "41"
  2793. },
  2794. {
  2795. "id": null,
  2796. "name": null,
  2797. "source": "71",
  2798. "target": "48"
  2799. },
  2800. {
  2801. "id": "228",
  2802. "name": null,
  2803. "source": "71",
  2804. "target": "68"
  2805. },
  2806. {
  2807. "id": "227",
  2808. "name": null,
  2809. "source": "71",
  2810. "target": "69"
  2811. },
  2812. {
  2813. "id": "229",
  2814. "name": null,
  2815. "source": "71",
  2816. "target": "70"
  2817. },
  2818. {
  2819. "id": "236",
  2820. "name": null,
  2821. "source": "72",
  2822. "target": "11"
  2823. },
  2824. {
  2825. "id": "234",
  2826. "name": null,
  2827. "source": "72",
  2828. "target": "26"
  2829. },
  2830. {
  2831. "id": "235",
  2832. "name": null,
  2833. "source": "72",
  2834. "target": "27"
  2835. },
  2836. {
  2837. "id": "237",
  2838. "name": null,
  2839. "source": "73",
  2840. "target": "48"
  2841. },
  2842. {
  2843. "id": "238",
  2844. "name": null,
  2845. "source": "74",
  2846. "target": "48"
  2847. },
  2848. {
  2849. "id": "239",
  2850. "name": null,
  2851. "source": "74",
  2852. "target": "73"
  2853. },
  2854. {
  2855. "id": "242",
  2856. "name": null,
  2857. "source": "75",
  2858. "target": "25"
  2859. },
  2860. {
  2861. "id": "244",
  2862. "name": null,
  2863. "source": "75",
  2864. "target": "41"
  2865. },
  2866. {
  2867. "id": null,
  2868. "name": null,
  2869. "source": "75",
  2870. "target": "48"
  2871. },
  2872. {
  2873. "id": "241",
  2874. "name": null,
  2875. "source": "75",
  2876. "target": "68"
  2877. },
  2878. {
  2879. "id": "240",
  2880. "name": null,
  2881. "source": "75",
  2882. "target": "69"
  2883. },
  2884. {
  2885. "id": "245",
  2886. "name": null,
  2887. "source": "75",
  2888. "target": "70"
  2889. },
  2890. {
  2891. "id": "246",
  2892. "name": null,
  2893. "source": "75",
  2894. "target": "71"
  2895. },
  2896. {
  2897. "id": "252",
  2898. "name": null,
  2899. "source": "76",
  2900. "target": "48"
  2901. },
  2902. {
  2903. "id": "253",
  2904. "name": null,
  2905. "source": "76",
  2906. "target": "58"
  2907. },
  2908. {
  2909. "id": "251",
  2910. "name": null,
  2911. "source": "76",
  2912. "target": "62"
  2913. },
  2914. {
  2915. "id": "250",
  2916. "name": null,
  2917. "source": "76",
  2918. "target": "63"
  2919. },
  2920. {
  2921. "id": "247",
  2922. "name": null,
  2923. "source": "76",
  2924. "target": "64"
  2925. },
  2926. {
  2927. "id": "248",
  2928. "name": null,
  2929. "source": "76",
  2930. "target": "65"
  2931. },
  2932. {
  2933. "id": "249",
  2934. "name": null,
  2935. "source": "76",
  2936. "target": "66"
  2937. }
  2938. ],
  2939. "categories": [
  2940. {
  2941. "name": "类目0"
  2942. },
  2943. {
  2944. "name": "类目1"
  2945. },
  2946. {
  2947. "name": "类目2"
  2948. },
  2949. {
  2950. "name": "类目3"
  2951. },
  2952. {
  2953. "name": "类目4"
  2954. },
  2955. {
  2956. "name": "类目5"
  2957. },
  2958. {
  2959. "name": "类目6"
  2960. },
  2961. {
  2962. "name": "类目7"
  2963. },
  2964. {
  2965. "name": "类目8"
  2966. }
  2967. ],
  2968. "roam": true,
  2969. "label": {
  2970. "normal": {
  2971. "position": "right"
  2972. }
  2973. },
  2974. "lineStyle": {
  2975. "normal": {
  2976. "curveness": 0.3
  2977. }
  2978. }
  2979. }
  2980. ]
  2981. };