GenericGraph.defaultIcons.model 71 KB

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