sample1.model 148 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919
  1. {
  2. "csm": {
  3. "nodes": {
  4. "1": {
  5. "typename": {
  6. "type": "string",
  7. "value": "NodeIcon"
  8. },
  9. "position": {
  10. "type": "list<double>",
  11. "value": [
  12. 654,
  13. 79
  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": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  30. },
  31. "parser": {
  32. "type": "code",
  33. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  34. },
  35. "$contents": {
  36. "type": "map<string,*>",
  37. "value": {
  38. "nodes": {
  39. "1": {
  40. "r": {
  41. "type": "double",
  42. "value": 30
  43. },
  44. "style": {
  45. "type": "map<string,string>",
  46. "value": {
  47. "fill": "#FFFFFF",
  48. "stroke": "#000000",
  49. "fill-opacity": 0.75,
  50. "font-size": "20px",
  51. "stroke-width": 5
  52. }
  53. },
  54. "mapper": {
  55. "type": "code",
  56. "value": "if(getAttr('highlight')!='no'){\n({style:{\"fill\": getAttr('highlight'),\"stroke\": \"#000000\",\"fill-opacity\": 0.75,\"font-size\": \"20px\",\"stroke-width\": 5}});\n} else if(getAttr('input')=='first' ||getAttr('input')=='second' || getAttr('input')=='true'){\n({style:{\"fill\": \"#C0C0C0\",\"stroke\": \"#000000\",\"fill-opacity\": 0.75,\"font-size\": \"20px\",\"stroke-width\": 5}});\n} else {\n({style:{\"fill\": \"#FFFFFF\",\"stroke\": \"#000000\",\"fill-opacity\": 0.75,\"font-size\": \"20px\",\"stroke-width\": 5}});\n}\n"
  57. },
  58. "parser": {
  59. "type": "code",
  60. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  61. },
  62. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  63. "position": {
  64. "type": "list<double>",
  65. "value": [
  66. 5,
  67. 4
  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. "3": {
  83. "textContent": {
  84. "type": "string",
  85. "value": "A"
  86. },
  87. "style": {
  88. "type": "map<string,string>",
  89. "value": {
  90. "stroke": "#000000",
  91. "fill": "#000000",
  92. "fill-opacity": 0.75,
  93. "font-size": "20px",
  94. "stroke-width": 1,
  95. "arrow-start": "none",
  96. "arrow-end": "none",
  97. "text-anchor": "middle"
  98. }
  99. },
  100. "mapper": {
  101. "type": "code",
  102. "value": "({'textContent':getAttr('id')})"
  103. },
  104. "parser": {
  105. "type": "code",
  106. "value": "({'id':getAttr('textContent')})"
  107. },
  108. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  109. "position": {
  110. "type": "list<double>",
  111. "value": [
  112. 35,
  113. 23
  114. ]
  115. },
  116. "orientation": {
  117. "type": "double",
  118. "value": 0
  119. },
  120. "scale": {
  121. "type": "list<double>",
  122. "value": [
  123. 1,
  124. 1
  125. ]
  126. }
  127. },
  128. "8": {
  129. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  130. "position": {
  131. "type": "list<double>",
  132. "value": [
  133. 24.096510792336232,
  134. 19.345311948423017
  135. ]
  136. },
  137. "orientation": {
  138. "type": "double",
  139. "value": 0
  140. },
  141. "scale": {
  142. "type": "list<double>",
  143. "value": [
  144. 1,
  145. 1
  146. ]
  147. },
  148. "link-style": {
  149. "type": "map<string,string>",
  150. "value": {
  151. "stroke": "#00ffff",
  152. "stroke-dasharray": "",
  153. "stroke-opacity": 0.1,
  154. "stroke-width": 1
  155. }
  156. }
  157. }
  158. },
  159. "edges": [
  160. {
  161. "src": "1",
  162. "dest": "8"
  163. },
  164. {
  165. "src": "8",
  166. "dest": "3"
  167. }
  168. ]
  169. }
  170. },
  171. "$asuri": {
  172. "type": "string",
  173. "value": "/Formalisms/LCA-new/LCA/Node/1.instance"
  174. },
  175. "$type": "/Formalisms/LCA-new/LCA.defaultIcons/NodeIcon"
  176. },
  177. "2": {
  178. "typename": {
  179. "type": "string",
  180. "value": "NodeIcon"
  181. },
  182. "position": {
  183. "type": "list<double>",
  184. "value": [
  185. 531,
  186. 200
  187. ]
  188. },
  189. "orientation": {
  190. "type": "double",
  191. "value": 0
  192. },
  193. "scale": {
  194. "type": "list<double>",
  195. "value": [
  196. 1,
  197. 1
  198. ]
  199. },
  200. "mapper": {
  201. "type": "code",
  202. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  203. },
  204. "parser": {
  205. "type": "code",
  206. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  207. },
  208. "$contents": {
  209. "type": "map<string,*>",
  210. "value": {
  211. "nodes": {
  212. "1": {
  213. "r": {
  214. "type": "double",
  215. "value": 30
  216. },
  217. "style": {
  218. "type": "map<string,string>",
  219. "value": {
  220. "fill": "#FFFFFF",
  221. "stroke": "#000000",
  222. "fill-opacity": 0.75,
  223. "font-size": "20px",
  224. "stroke-width": 5
  225. }
  226. },
  227. "mapper": {
  228. "type": "code",
  229. "value": "if(getAttr('highlight')!='no'){\n({style:{\"fill\": getAttr('highlight'),\"stroke\": \"#000000\",\"fill-opacity\": 0.75,\"font-size\": \"20px\",\"stroke-width\": 5}});\n} else if(getAttr('input')=='first' ||getAttr('input')=='second' || getAttr('input')=='true'){\n({style:{\"fill\": \"#C0C0C0\",\"stroke\": \"#000000\",\"fill-opacity\": 0.75,\"font-size\": \"20px\",\"stroke-width\": 5}});\n} else {\n({style:{\"fill\": \"#FFFFFF\",\"stroke\": \"#000000\",\"fill-opacity\": 0.75,\"font-size\": \"20px\",\"stroke-width\": 5}});\n}\n"
  230. },
  231. "parser": {
  232. "type": "code",
  233. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  234. },
  235. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  236. "position": {
  237. "type": "list<double>",
  238. "value": [
  239. 5,
  240. 4
  241. ]
  242. },
  243. "orientation": {
  244. "type": "double",
  245. "value": 0
  246. },
  247. "scale": {
  248. "type": "list<double>",
  249. "value": [
  250. 1,
  251. 1
  252. ]
  253. }
  254. },
  255. "3": {
  256. "textContent": {
  257. "type": "string",
  258. "value": "B"
  259. },
  260. "style": {
  261. "type": "map<string,string>",
  262. "value": {
  263. "stroke": "#000000",
  264. "fill": "#000000",
  265. "fill-opacity": 0.75,
  266. "font-size": "20px",
  267. "stroke-width": 1,
  268. "arrow-start": "none",
  269. "arrow-end": "none",
  270. "text-anchor": "middle"
  271. }
  272. },
  273. "mapper": {
  274. "type": "code",
  275. "value": "({'textContent':getAttr('id')})"
  276. },
  277. "parser": {
  278. "type": "code",
  279. "value": "({'id':getAttr('textContent')})"
  280. },
  281. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  282. "position": {
  283. "type": "list<double>",
  284. "value": [
  285. 35,
  286. 23
  287. ]
  288. },
  289. "orientation": {
  290. "type": "double",
  291. "value": 0
  292. },
  293. "scale": {
  294. "type": "list<double>",
  295. "value": [
  296. 1,
  297. 1
  298. ]
  299. }
  300. },
  301. "8": {
  302. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  303. "position": {
  304. "type": "list<double>",
  305. "value": [
  306. 24.096510792336232,
  307. 19.345311948423017
  308. ]
  309. },
  310. "orientation": {
  311. "type": "double",
  312. "value": 0
  313. },
  314. "scale": {
  315. "type": "list<double>",
  316. "value": [
  317. 1,
  318. 1
  319. ]
  320. },
  321. "link-style": {
  322. "type": "map<string,string>",
  323. "value": {
  324. "stroke": "#00ffff",
  325. "stroke-dasharray": "",
  326. "stroke-opacity": 0.1,
  327. "stroke-width": 1
  328. }
  329. }
  330. }
  331. },
  332. "edges": [
  333. {
  334. "src": "1",
  335. "dest": "8"
  336. },
  337. {
  338. "src": "8",
  339. "dest": "3"
  340. }
  341. ]
  342. }
  343. },
  344. "$asuri": {
  345. "type": "string",
  346. "value": "/Formalisms/LCA-new/LCA/Node/2.instance"
  347. },
  348. "$type": "/Formalisms/LCA-new/LCA.defaultIcons/NodeIcon"
  349. },
  350. "8": {
  351. "typename": {
  352. "type": "string",
  353. "value": "NodeIcon"
  354. },
  355. "position": {
  356. "type": "list<double>",
  357. "value": [
  358. 806,
  359. 196
  360. ]
  361. },
  362. "orientation": {
  363. "type": "double",
  364. "value": 0
  365. },
  366. "scale": {
  367. "type": "list<double>",
  368. "value": [
  369. 1,
  370. 1
  371. ]
  372. },
  373. "mapper": {
  374. "type": "code",
  375. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  376. },
  377. "parser": {
  378. "type": "code",
  379. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  380. },
  381. "$contents": {
  382. "type": "map<string,*>",
  383. "value": {
  384. "nodes": {
  385. "1": {
  386. "r": {
  387. "type": "double",
  388. "value": 30
  389. },
  390. "style": {
  391. "type": "map<string,string>",
  392. "value": {
  393. "fill": "#FFFFFF",
  394. "stroke": "#000000",
  395. "fill-opacity": 0.75,
  396. "font-size": "20px",
  397. "stroke-width": 5
  398. }
  399. },
  400. "mapper": {
  401. "type": "code",
  402. "value": "if(getAttr('highlight')!='no'){\n({style:{\"fill\": getAttr('highlight'),\"stroke\": \"#000000\",\"fill-opacity\": 0.75,\"font-size\": \"20px\",\"stroke-width\": 5}});\n} else if(getAttr('input')=='first' ||getAttr('input')=='second' || getAttr('input')=='true'){\n({style:{\"fill\": \"#C0C0C0\",\"stroke\": \"#000000\",\"fill-opacity\": 0.75,\"font-size\": \"20px\",\"stroke-width\": 5}});\n} else {\n({style:{\"fill\": \"#FFFFFF\",\"stroke\": \"#000000\",\"fill-opacity\": 0.75,\"font-size\": \"20px\",\"stroke-width\": 5}});\n}\n"
  403. },
  404. "parser": {
  405. "type": "code",
  406. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  407. },
  408. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  409. "position": {
  410. "type": "list<double>",
  411. "value": [
  412. 5,
  413. 4
  414. ]
  415. },
  416. "orientation": {
  417. "type": "double",
  418. "value": 0
  419. },
  420. "scale": {
  421. "type": "list<double>",
  422. "value": [
  423. 1,
  424. 1
  425. ]
  426. }
  427. },
  428. "3": {
  429. "textContent": {
  430. "type": "string",
  431. "value": "I"
  432. },
  433. "style": {
  434. "type": "map<string,string>",
  435. "value": {
  436. "stroke": "#000000",
  437. "fill": "#000000",
  438. "fill-opacity": 0.75,
  439. "font-size": "20px",
  440. "stroke-width": 1,
  441. "arrow-start": "none",
  442. "arrow-end": "none",
  443. "text-anchor": "middle"
  444. }
  445. },
  446. "mapper": {
  447. "type": "code",
  448. "value": "({'textContent':getAttr('id')})"
  449. },
  450. "parser": {
  451. "type": "code",
  452. "value": "({'id':getAttr('textContent')})"
  453. },
  454. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  455. "position": {
  456. "type": "list<double>",
  457. "value": [
  458. 35,
  459. 23
  460. ]
  461. },
  462. "orientation": {
  463. "type": "double",
  464. "value": 0
  465. },
  466. "scale": {
  467. "type": "list<double>",
  468. "value": [
  469. 1,
  470. 1
  471. ]
  472. }
  473. },
  474. "8": {
  475. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  476. "position": {
  477. "type": "list<double>",
  478. "value": [
  479. 24.096510792336232,
  480. 19.345311948423017
  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. "link-style": {
  495. "type": "map<string,string>",
  496. "value": {
  497. "stroke": "#00ffff",
  498. "stroke-dasharray": "",
  499. "stroke-opacity": 0.1,
  500. "stroke-width": 1
  501. }
  502. }
  503. }
  504. },
  505. "edges": [
  506. {
  507. "src": "1",
  508. "dest": "8"
  509. },
  510. {
  511. "src": "8",
  512. "dest": "3"
  513. }
  514. ]
  515. }
  516. },
  517. "$asuri": {
  518. "type": "string",
  519. "value": "/Formalisms/LCA-new/LCA/Node/8.instance"
  520. },
  521. "$type": "/Formalisms/LCA-new/LCA.defaultIcons/NodeIcon"
  522. },
  523. "13": {
  524. "link-style": {
  525. "type": "map<string,string>",
  526. "value": {
  527. "stroke": "#000000",
  528. "stroke-dasharray": "",
  529. "stroke-opacity": 1,
  530. "stroke-width": 2
  531. }
  532. },
  533. "arrowHead": {
  534. "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)",
  535. "value": "custom"
  536. },
  537. "arrowTail": {
  538. "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)",
  539. "value": "arrow-black"
  540. },
  541. "typename": {
  542. "type": "string",
  543. "value": "parentLink"
  544. },
  545. "position": {
  546. "type": "list<double>",
  547. "value": [
  548. 765.382954635021,
  549. 166.90454552758996
  550. ]
  551. },
  552. "orientation": {
  553. "type": "double",
  554. "value": 0
  555. },
  556. "scale": {
  557. "type": "list<double>",
  558. "value": [
  559. 1,
  560. 1
  561. ]
  562. },
  563. "mapper": {
  564. "type": "code",
  565. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  566. },
  567. "parser": {
  568. "type": "code",
  569. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  570. },
  571. "$contents": {
  572. "type": "map<string,*>",
  573. "value": {
  574. "nodes": {
  575. "267": {
  576. "segments": {
  577. "type": "string",
  578. "value": "m0,0 l10,4 l-10,4 l3,-4 z"
  579. },
  580. "style": {
  581. "type": "map<string,string>",
  582. "value": {
  583. "stroke": "#000000",
  584. "fill": "#000000",
  585. "opacity": 1,
  586. "stroke-width": 1
  587. }
  588. },
  589. "mapper": {
  590. "type": "code",
  591. "value": ""
  592. },
  593. "parser": {
  594. "type": "code",
  595. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  596. },
  597. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  598. "position": {
  599. "type": "list<double>",
  600. "value": [
  601. "0;-53.91027734211684,-77.49619933523661%",
  602. "0;-38.804119626139766,-63.20078392388242%"
  603. ]
  604. },
  605. "orientation": {
  606. "type": "double",
  607. "value": "0;-140.80158688764695"
  608. },
  609. "scale": {
  610. "type": "list<double>",
  611. "value": [
  612. 1,
  613. 1
  614. ]
  615. },
  616. "arrow": "arrowTail",
  617. "arrowType": "arrow-black",
  618. "$linkDecoratorInfo": {
  619. "type": "map<string,double>",
  620. "value": {
  621. "xratio": 1,
  622. "yoffset": -4
  623. }
  624. }
  625. },
  626. "268": {
  627. "segments": {
  628. "type": "string",
  629. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  630. },
  631. "style": {
  632. "type": "map<string,string>",
  633. "value": {
  634. "stroke": "#000000",
  635. "fill": "#000000",
  636. "opacity": 0,
  637. "stroke-width": 1
  638. }
  639. },
  640. "mapper": {
  641. "type": "code",
  642. "value": ""
  643. },
  644. "parser": {
  645. "type": "code",
  646. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  647. },
  648. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  649. "position": {
  650. "type": "list<double>",
  651. "value": [
  652. "0;-57.70232437754976,-77.49619933523661%",
  653. "0;-34.15434766602556,-63.20078392388242%"
  654. ]
  655. },
  656. "orientation": {
  657. "type": "double",
  658. "value": "0;-140.80158688764695"
  659. },
  660. "scale": {
  661. "type": "list<double>",
  662. "value": [
  663. 1,
  664. 1
  665. ]
  666. },
  667. "arrow": "arrowTail",
  668. "arrowType": "diamond-black-large",
  669. "$linkDecoratorInfo": {
  670. "type": "map<string,double>",
  671. "value": {
  672. "xratio": 1,
  673. "yoffset": -10
  674. }
  675. }
  676. },
  677. "269": {
  678. "r": {
  679. "type": "double",
  680. "value": 10
  681. },
  682. "style": {
  683. "type": "map<string,string>",
  684. "value": {
  685. "stroke": "#000000",
  686. "fill": "#000000",
  687. "opacity": 0,
  688. "stroke-width": 1
  689. }
  690. },
  691. "mapper": {
  692. "type": "code",
  693. "value": ""
  694. },
  695. "parser": {
  696. "type": "code",
  697. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  698. },
  699. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  700. "position": {
  701. "type": "list<double>",
  702. "value": [
  703. "0;-57.70232437754976,-77.49619933523661%",
  704. "0;-34.15434766602556,-63.20078392388242%"
  705. ]
  706. },
  707. "orientation": {
  708. "type": "double",
  709. "value": "0;-140.80158688764695"
  710. },
  711. "scale": {
  712. "type": "list<double>",
  713. "value": [
  714. 1,
  715. 1
  716. ]
  717. },
  718. "arrow": "arrowTail",
  719. "arrowType": "circle-black-large",
  720. "$linkDecoratorInfo": {
  721. "type": "map<string,double>",
  722. "value": {
  723. "xratio": 1,
  724. "yoffset": -10
  725. }
  726. }
  727. },
  728. "270": {
  729. "r": {
  730. "type": "double",
  731. "value": 10
  732. },
  733. "style": {
  734. "type": "map<string,string>",
  735. "value": {
  736. "stroke": "#000000",
  737. "fill": "#ffffff",
  738. "opacity": 0,
  739. "stroke-width": 1
  740. }
  741. },
  742. "mapper": {
  743. "type": "code",
  744. "value": ""
  745. },
  746. "parser": {
  747. "type": "code",
  748. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  749. },
  750. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  751. "position": {
  752. "type": "list<double>",
  753. "value": [
  754. "0;-57.70232437754976,-77.49619933523661%",
  755. "0;-34.15434766602556,-63.20078392388242%"
  756. ]
  757. },
  758. "orientation": {
  759. "type": "double",
  760. "value": "0;-140.80158688764695"
  761. },
  762. "scale": {
  763. "type": "list<double>",
  764. "value": [
  765. 1,
  766. 1
  767. ]
  768. },
  769. "arrow": "arrowTail",
  770. "arrowType": "circle-white-large",
  771. "$linkDecoratorInfo": {
  772. "type": "map<string,double>",
  773. "value": {
  774. "xratio": 1,
  775. "yoffset": -10
  776. }
  777. }
  778. },
  779. "271": {
  780. "r": {
  781. "type": "double",
  782. "value": 5
  783. },
  784. "style": {
  785. "type": "map<string,string>",
  786. "value": {
  787. "stroke": "#000000",
  788. "fill": "#000000",
  789. "opacity": 0,
  790. "stroke-width": 1
  791. }
  792. },
  793. "mapper": {
  794. "type": "code",
  795. "value": ""
  796. },
  797. "parser": {
  798. "type": "code",
  799. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  800. },
  801. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  802. "position": {
  803. "type": "list<double>",
  804. "value": [
  805. "0;-54.54228518135562,-77.49619933523661%",
  806. "0;-38.02915763278739,-63.20078392388242%"
  807. ]
  808. },
  809. "orientation": {
  810. "type": "double",
  811. "value": "0;-140.80158688764695"
  812. },
  813. "scale": {
  814. "type": "list<double>",
  815. "value": [
  816. 1,
  817. 1
  818. ]
  819. },
  820. "arrow": "arrowTail",
  821. "arrowType": "circle-black",
  822. "$linkDecoratorInfo": {
  823. "type": "map<string,double>",
  824. "value": {
  825. "xratio": 1,
  826. "yoffset": -5
  827. }
  828. }
  829. },
  830. "272": {
  831. "segments": {
  832. "type": "string",
  833. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  834. },
  835. "style": {
  836. "type": "map<string,string>",
  837. "value": {
  838. "stroke": "#000000",
  839. "fill": "#000000",
  840. "opacity": 0,
  841. "stroke-width": 1
  842. }
  843. },
  844. "mapper": {
  845. "type": "code",
  846. "value": ""
  847. },
  848. "parser": {
  849. "type": "code",
  850. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  851. },
  852. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  853. "position": {
  854. "type": "list<double>",
  855. "value": [
  856. "0;-54.54228518135562,-77.49619933523661%",
  857. "0;-38.02915763278739,-63.20078392388242%"
  858. ]
  859. },
  860. "orientation": {
  861. "type": "double",
  862. "value": "0;-140.80158688764695"
  863. },
  864. "scale": {
  865. "type": "list<double>",
  866. "value": [
  867. 1,
  868. 1
  869. ]
  870. },
  871. "arrow": "arrowTail",
  872. "arrowType": "diamond-black",
  873. "$linkDecoratorInfo": {
  874. "type": "map<string,double>",
  875. "value": {
  876. "xratio": 1,
  877. "yoffset": -5
  878. }
  879. }
  880. },
  881. "273": {
  882. "segments": {
  883. "type": "string",
  884. "value": "m0,0 l20,10 l-20,10 z"
  885. },
  886. "style": {
  887. "type": "map<string,string>",
  888. "value": {
  889. "stroke": "#000000",
  890. "fill": "#000000",
  891. "opacity": 0,
  892. "stroke-width": 1
  893. }
  894. },
  895. "mapper": {
  896. "type": "code",
  897. "value": ""
  898. },
  899. "parser": {
  900. "type": "code",
  901. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  902. },
  903. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  904. "position": {
  905. "type": "list<double>",
  906. "value": [
  907. "0;-57.70232437754976,-77.49619933523661%",
  908. "0;-34.15434766602556,-63.20078392388242%"
  909. ]
  910. },
  911. "orientation": {
  912. "type": "double",
  913. "value": "0;-140.80158688764695"
  914. },
  915. "scale": {
  916. "type": "list<double>",
  917. "value": [
  918. 1,
  919. 1
  920. ]
  921. },
  922. "arrow": "arrowTail",
  923. "arrowType": "triangle-black-large",
  924. "$linkDecoratorInfo": {
  925. "type": "map<string,double>",
  926. "value": {
  927. "xratio": 1,
  928. "yoffset": -10
  929. }
  930. }
  931. },
  932. "274": {
  933. "segments": {
  934. "type": "string",
  935. "value": "m0,0 l10,4 l-10,4 z"
  936. },
  937. "style": {
  938. "type": "map<string,string>",
  939. "value": {
  940. "stroke": "#000000",
  941. "fill": "#000000",
  942. "opacity": 0,
  943. "stroke-width": 1
  944. }
  945. },
  946. "mapper": {
  947. "type": "code",
  948. "value": ""
  949. },
  950. "parser": {
  951. "type": "code",
  952. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  953. },
  954. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  955. "position": {
  956. "type": "list<double>",
  957. "value": [
  958. "0;-53.91027734211684,-77.49619933523661%",
  959. "0;-38.804119626139766,-63.20078392388242%"
  960. ]
  961. },
  962. "orientation": {
  963. "type": "double",
  964. "value": "0;-140.80158688764695"
  965. },
  966. "scale": {
  967. "type": "list<double>",
  968. "value": [
  969. 1,
  970. 1
  971. ]
  972. },
  973. "arrow": "arrowTail",
  974. "arrowType": "triangle-black",
  975. "$linkDecoratorInfo": {
  976. "type": "map<string,double>",
  977. "value": {
  978. "xratio": 1,
  979. "yoffset": -4
  980. }
  981. }
  982. },
  983. "275": {
  984. "segments": {
  985. "type": "string",
  986. "value": "m0,0 l20,8 l-20,8 l6,-8 z"
  987. },
  988. "style": {
  989. "type": "map<string,string>",
  990. "value": {
  991. "stroke": "#000000",
  992. "fill": "#000000",
  993. "opacity": 0,
  994. "stroke-width": 1
  995. }
  996. },
  997. "mapper": {
  998. "type": "code",
  999. "value": ""
  1000. },
  1001. "parser": {
  1002. "type": "code",
  1003. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1004. },
  1005. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1006. "position": {
  1007. "type": "list<double>",
  1008. "value": [
  1009. "0;-56.43830869907208,-77.49619933523661%",
  1010. "0;-35.704271652730284,-63.20078392388242%"
  1011. ]
  1012. },
  1013. "orientation": {
  1014. "type": "double",
  1015. "value": "0;-140.80158688764695"
  1016. },
  1017. "scale": {
  1018. "type": "list<double>",
  1019. "value": [
  1020. 1,
  1021. 1
  1022. ]
  1023. },
  1024. "arrow": "arrowTail",
  1025. "arrowType": "arrow-black-large",
  1026. "$linkDecoratorInfo": {
  1027. "type": "map<string,double>",
  1028. "value": {
  1029. "xratio": 1,
  1030. "yoffset": -8
  1031. }
  1032. }
  1033. },
  1034. "276": {
  1035. "segments": {
  1036. "type": "string",
  1037. "value": "m0,0 l20,10 l-20,10 z"
  1038. },
  1039. "style": {
  1040. "type": "map<string,string>",
  1041. "value": {
  1042. "stroke": "#000000",
  1043. "fill": "#ffffff",
  1044. "opacity": 0,
  1045. "stroke-width": 1
  1046. }
  1047. },
  1048. "mapper": {
  1049. "type": "code",
  1050. "value": ""
  1051. },
  1052. "parser": {
  1053. "type": "code",
  1054. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1055. },
  1056. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1057. "position": {
  1058. "type": "list<double>",
  1059. "value": [
  1060. "0;-57.70232437754976,-77.49619933523661%",
  1061. "0;-34.15434766602556,-63.20078392388242%"
  1062. ]
  1063. },
  1064. "orientation": {
  1065. "type": "double",
  1066. "value": "0;-140.80158688764695"
  1067. },
  1068. "scale": {
  1069. "type": "list<double>",
  1070. "value": [
  1071. 1,
  1072. 1
  1073. ]
  1074. },
  1075. "arrow": "arrowTail",
  1076. "arrowType": "triangle-white-large",
  1077. "$linkDecoratorInfo": {
  1078. "type": "map<string,double>",
  1079. "value": {
  1080. "xratio": 1,
  1081. "yoffset": -10
  1082. }
  1083. }
  1084. },
  1085. "277": {
  1086. "segments": {
  1087. "type": "string",
  1088. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  1089. },
  1090. "style": {
  1091. "type": "map<string,string>",
  1092. "value": {
  1093. "stroke": "#000000",
  1094. "fill": "#ffffff",
  1095. "opacity": 0,
  1096. "stroke-width": 1
  1097. }
  1098. },
  1099. "mapper": {
  1100. "type": "code",
  1101. "value": ""
  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. "0;-54.54228518135562,-77.49619933523661%",
  1112. "0;-38.02915763278739,-63.20078392388242%"
  1113. ]
  1114. },
  1115. "orientation": {
  1116. "type": "double",
  1117. "value": "0;-140.80158688764695"
  1118. },
  1119. "scale": {
  1120. "type": "list<double>",
  1121. "value": [
  1122. 1,
  1123. 1
  1124. ]
  1125. },
  1126. "arrow": "arrowTail",
  1127. "arrowType": "diamond-white",
  1128. "$linkDecoratorInfo": {
  1129. "type": "map<string,double>",
  1130. "value": {
  1131. "xratio": 1,
  1132. "yoffset": -5
  1133. }
  1134. }
  1135. },
  1136. "278": {
  1137. "segments": {
  1138. "type": "string",
  1139. "value": "m0,0 l20,8 l-20,8"
  1140. },
  1141. "style": {
  1142. "type": "map<string,string>",
  1143. "value": {
  1144. "stroke": "#000000",
  1145. "fill": "#000000",
  1146. "fill-opacity": 0,
  1147. "stroke-width": 1,
  1148. "opacity": 0
  1149. }
  1150. },
  1151. "mapper": {
  1152. "type": "code",
  1153. "value": ""
  1154. },
  1155. "parser": {
  1156. "type": "code",
  1157. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1158. },
  1159. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1160. "position": {
  1161. "type": "list<double>",
  1162. "value": [
  1163. "0;-56.43830869907208,-77.49619933523661%",
  1164. "0;-35.704271652730284,-63.20078392388242%"
  1165. ]
  1166. },
  1167. "orientation": {
  1168. "type": "double",
  1169. "value": "0;-140.80158688764695"
  1170. },
  1171. "scale": {
  1172. "type": "list<double>",
  1173. "value": [
  1174. 1,
  1175. 1
  1176. ]
  1177. },
  1178. "arrow": "arrowTail",
  1179. "arrowType": "arrow-empty-large",
  1180. "$linkDecoratorInfo": {
  1181. "type": "map<string,double>",
  1182. "value": {
  1183. "xratio": 1,
  1184. "yoffset": -8
  1185. }
  1186. }
  1187. },
  1188. "279": {
  1189. "r": {
  1190. "type": "double",
  1191. "value": 5
  1192. },
  1193. "style": {
  1194. "type": "map<string,string>",
  1195. "value": {
  1196. "stroke": "#000000",
  1197. "fill": "#ffffff",
  1198. "opacity": 0,
  1199. "stroke-width": 1
  1200. }
  1201. },
  1202. "mapper": {
  1203. "type": "code",
  1204. "value": ""
  1205. },
  1206. "parser": {
  1207. "type": "code",
  1208. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1209. },
  1210. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  1211. "position": {
  1212. "type": "list<double>",
  1213. "value": [
  1214. "0;-54.54228518135562,-77.49619933523661%",
  1215. "0;-38.02915763278739,-63.20078392388242%"
  1216. ]
  1217. },
  1218. "orientation": {
  1219. "type": "double",
  1220. "value": "0;-140.80158688764695"
  1221. },
  1222. "scale": {
  1223. "type": "list<double>",
  1224. "value": [
  1225. 1,
  1226. 1
  1227. ]
  1228. },
  1229. "arrow": "arrowTail",
  1230. "arrowType": "circle-white",
  1231. "$linkDecoratorInfo": {
  1232. "type": "map<string,double>",
  1233. "value": {
  1234. "xratio": 1,
  1235. "yoffset": -5
  1236. }
  1237. }
  1238. },
  1239. "280": {
  1240. "segments": {
  1241. "type": "string",
  1242. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  1243. },
  1244. "style": {
  1245. "type": "map<string,string>",
  1246. "value": {
  1247. "stroke": "#000000",
  1248. "fill": "#ffffff",
  1249. "opacity": 0,
  1250. "stroke-width": 1
  1251. }
  1252. },
  1253. "mapper": {
  1254. "type": "code",
  1255. "value": ""
  1256. },
  1257. "parser": {
  1258. "type": "code",
  1259. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1260. },
  1261. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1262. "position": {
  1263. "type": "list<double>",
  1264. "value": [
  1265. "0;-57.70232437754976,-77.49619933523661%",
  1266. "0;-34.15434766602556,-63.20078392388242%"
  1267. ]
  1268. },
  1269. "orientation": {
  1270. "type": "double",
  1271. "value": "0;-140.80158688764695"
  1272. },
  1273. "scale": {
  1274. "type": "list<double>",
  1275. "value": [
  1276. 1,
  1277. 1
  1278. ]
  1279. },
  1280. "arrow": "arrowTail",
  1281. "arrowType": "diamond-white-large",
  1282. "$linkDecoratorInfo": {
  1283. "type": "map<string,double>",
  1284. "value": {
  1285. "xratio": 1,
  1286. "yoffset": -10
  1287. }
  1288. }
  1289. },
  1290. "281": {
  1291. "segments": {
  1292. "type": "string",
  1293. "value": "m0,0 l10,4 l-10,4"
  1294. },
  1295. "style": {
  1296. "type": "map<string,string>",
  1297. "value": {
  1298. "stroke": "#000000",
  1299. "fill": "#000000",
  1300. "fill-opacity": 0,
  1301. "stroke-width": 1,
  1302. "opacity": 0
  1303. }
  1304. },
  1305. "mapper": {
  1306. "type": "code",
  1307. "value": ""
  1308. },
  1309. "parser": {
  1310. "type": "code",
  1311. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1312. },
  1313. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1314. "position": {
  1315. "type": "list<double>",
  1316. "value": [
  1317. "0;-53.91027734211684,-77.49619933523661%",
  1318. "0;-38.804119626139766,-63.20078392388242%"
  1319. ]
  1320. },
  1321. "orientation": {
  1322. "type": "double",
  1323. "value": "0;-140.80158688764695"
  1324. },
  1325. "scale": {
  1326. "type": "list<double>",
  1327. "value": [
  1328. 1,
  1329. 1
  1330. ]
  1331. },
  1332. "arrow": "arrowTail",
  1333. "arrowType": "arrow-empty",
  1334. "$linkDecoratorInfo": {
  1335. "type": "map<string,double>",
  1336. "value": {
  1337. "xratio": 1,
  1338. "yoffset": -4
  1339. }
  1340. }
  1341. },
  1342. "282": {
  1343. "segments": {
  1344. "type": "string",
  1345. "value": "m0,0 l10,5 l-10,5 z"
  1346. },
  1347. "style": {
  1348. "type": "map<string,string>",
  1349. "value": {
  1350. "stroke": "#000000",
  1351. "fill": "#ffffff",
  1352. "opacity": 0,
  1353. "stroke-width": 1
  1354. }
  1355. },
  1356. "mapper": {
  1357. "type": "code",
  1358. "value": ""
  1359. },
  1360. "parser": {
  1361. "type": "code",
  1362. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1363. },
  1364. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1365. "position": {
  1366. "type": "list<double>",
  1367. "value": [
  1368. "0;-54.54228518135562,-77.49619933523661%",
  1369. "0;-38.02915763278739,-63.20078392388242%"
  1370. ]
  1371. },
  1372. "orientation": {
  1373. "type": "double",
  1374. "value": "0;-140.80158688764695"
  1375. },
  1376. "scale": {
  1377. "type": "list<double>",
  1378. "value": [
  1379. 1,
  1380. 1
  1381. ]
  1382. },
  1383. "arrow": "arrowTail",
  1384. "arrowType": "triangle-white",
  1385. "$linkDecoratorInfo": {
  1386. "type": "map<string,double>",
  1387. "value": {
  1388. "xratio": 1,
  1389. "yoffset": -5
  1390. }
  1391. }
  1392. },
  1393. "283": {
  1394. "segments": {
  1395. "type": "string",
  1396. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  1397. },
  1398. "style": {
  1399. "type": "map<string,string>",
  1400. "value": {
  1401. "stroke": "#000000",
  1402. "fill": "#ffffff",
  1403. "opacity": 0,
  1404. "stroke-width": 1
  1405. }
  1406. },
  1407. "mapper": {
  1408. "type": "code",
  1409. "value": ""
  1410. },
  1411. "parser": {
  1412. "type": "code",
  1413. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1414. },
  1415. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1416. "position": {
  1417. "type": "list<double>",
  1418. "value": [
  1419. "0;48.457006168784915,0%",
  1420. "0;45.97026443917187,0%"
  1421. ]
  1422. },
  1423. "orientation": {
  1424. "type": "double",
  1425. "value": "0;-140.80158688764706"
  1426. },
  1427. "scale": {
  1428. "type": "list<double>",
  1429. "value": [
  1430. 1,
  1431. 1
  1432. ]
  1433. },
  1434. "arrow": "arrowHead",
  1435. "arrowType": "diamond-white",
  1436. "$linkDecoratorInfo": {
  1437. "type": "map<string,double>",
  1438. "value": {
  1439. "xratio": -1,
  1440. "yoffset": -5
  1441. }
  1442. }
  1443. },
  1444. "284": {
  1445. "segments": {
  1446. "type": "string",
  1447. "value": "m0,0 l-10,5 l10,5 z"
  1448. },
  1449. "style": {
  1450. "type": "map<string,string>",
  1451. "value": {
  1452. "stroke": "#000000",
  1453. "fill": "#ffffff",
  1454. "opacity": 0,
  1455. "stroke-width": 1
  1456. }
  1457. },
  1458. "mapper": {
  1459. "type": "code",
  1460. "value": ""
  1461. },
  1462. "parser": {
  1463. "type": "code",
  1464. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1465. },
  1466. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1467. "position": {
  1468. "type": "list<double>",
  1469. "value": [
  1470. "0;48.457006168784915,0%",
  1471. "0;45.97026443917187,0%"
  1472. ]
  1473. },
  1474. "orientation": {
  1475. "type": "double",
  1476. "value": "0;-140.80158688764706"
  1477. },
  1478. "scale": {
  1479. "type": "list<double>",
  1480. "value": [
  1481. 1,
  1482. 1
  1483. ]
  1484. },
  1485. "arrow": "arrowHead",
  1486. "arrowType": "triangle-white",
  1487. "$linkDecoratorInfo": {
  1488. "type": "map<string,double>",
  1489. "value": {
  1490. "xratio": -1,
  1491. "yoffset": -5
  1492. }
  1493. }
  1494. },
  1495. "285": {
  1496. "segments": {
  1497. "type": "string",
  1498. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  1499. },
  1500. "style": {
  1501. "type": "map<string,string>",
  1502. "value": {
  1503. "stroke": "#000000",
  1504. "fill": "#000000",
  1505. "opacity": 0,
  1506. "stroke-width": 1
  1507. }
  1508. },
  1509. "mapper": {
  1510. "type": "code",
  1511. "value": ""
  1512. },
  1513. "parser": {
  1514. "type": "code",
  1515. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1516. },
  1517. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1518. "position": {
  1519. "type": "list<double>",
  1520. "value": [
  1521. "0;48.457006168784915,0%",
  1522. "0;45.97026443917187,0%"
  1523. ]
  1524. },
  1525. "orientation": {
  1526. "type": "double",
  1527. "value": "0;-140.80158688764706"
  1528. },
  1529. "scale": {
  1530. "type": "list<double>",
  1531. "value": [
  1532. 1,
  1533. 1
  1534. ]
  1535. },
  1536. "arrow": "arrowHead",
  1537. "arrowType": "diamond-black",
  1538. "$linkDecoratorInfo": {
  1539. "type": "map<string,double>",
  1540. "value": {
  1541. "xratio": -1,
  1542. "yoffset": -5
  1543. }
  1544. }
  1545. },
  1546. "286": {
  1547. "r": {
  1548. "type": "double",
  1549. "value": 10
  1550. },
  1551. "style": {
  1552. "type": "map<string,string>",
  1553. "value": {
  1554. "stroke": "#000000",
  1555. "fill": "#000000",
  1556. "opacity": 0,
  1557. "stroke-width": 1
  1558. }
  1559. },
  1560. "mapper": {
  1561. "type": "code",
  1562. "value": ""
  1563. },
  1564. "parser": {
  1565. "type": "code",
  1566. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1567. },
  1568. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  1569. "position": {
  1570. "type": "list<double>",
  1571. "value": [
  1572. "0;45.29696697259078,0%",
  1573. "0;49.8450744059337,0%"
  1574. ]
  1575. },
  1576. "orientation": {
  1577. "type": "double",
  1578. "value": "0;-140.80158688764706"
  1579. },
  1580. "scale": {
  1581. "type": "list<double>",
  1582. "value": [
  1583. 1,
  1584. 1
  1585. ]
  1586. },
  1587. "arrow": "arrowHead",
  1588. "arrowType": "circle-black-large",
  1589. "$linkDecoratorInfo": {
  1590. "type": "map<string,double>",
  1591. "value": {
  1592. "xratio": -1,
  1593. "yoffset": -10
  1594. }
  1595. }
  1596. },
  1597. "287": {
  1598. "segments": {
  1599. "type": "string",
  1600. "value": "m0,0 l-20,8 l20,8 l-6,-8 z"
  1601. },
  1602. "style": {
  1603. "type": "map<string,string>",
  1604. "value": {
  1605. "stroke": "#000000",
  1606. "fill": "#000000",
  1607. "opacity": 0,
  1608. "stroke-width": 1
  1609. }
  1610. },
  1611. "mapper": {
  1612. "type": "code",
  1613. "value": ""
  1614. },
  1615. "parser": {
  1616. "type": "code",
  1617. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1618. },
  1619. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1620. "position": {
  1621. "type": "list<double>",
  1622. "value": [
  1623. "0;46.56098265106846,0%",
  1624. "0;48.295150419228975,0%"
  1625. ]
  1626. },
  1627. "orientation": {
  1628. "type": "double",
  1629. "value": "0;-140.80158688764706"
  1630. },
  1631. "scale": {
  1632. "type": "list<double>",
  1633. "value": [
  1634. 1,
  1635. 1
  1636. ]
  1637. },
  1638. "arrow": "arrowHead",
  1639. "arrowType": "arrow-black-large",
  1640. "$linkDecoratorInfo": {
  1641. "type": "map<string,double>",
  1642. "value": {
  1643. "xratio": -1,
  1644. "yoffset": -8
  1645. }
  1646. }
  1647. },
  1648. "288": {
  1649. "segments": {
  1650. "type": "string",
  1651. "value": "m0,0 l-10,4 l10,4 l-3,-4 z"
  1652. },
  1653. "style": {
  1654. "type": "map<string,string>",
  1655. "value": {
  1656. "stroke": "#000000",
  1657. "fill": "#000000",
  1658. "opacity": 0,
  1659. "stroke-width": 1
  1660. }
  1661. },
  1662. "mapper": {
  1663. "type": "code",
  1664. "value": ""
  1665. },
  1666. "parser": {
  1667. "type": "code",
  1668. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1669. },
  1670. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1671. "position": {
  1672. "type": "list<double>",
  1673. "value": [
  1674. "0;49.08901400802381,0%",
  1675. "0;45.19530244581952,0%"
  1676. ]
  1677. },
  1678. "orientation": {
  1679. "type": "double",
  1680. "value": "0;-140.80158688764706"
  1681. },
  1682. "scale": {
  1683. "type": "list<double>",
  1684. "value": [
  1685. 1,
  1686. 1
  1687. ]
  1688. },
  1689. "arrow": "arrowHead",
  1690. "arrowType": "arrow-black",
  1691. "$linkDecoratorInfo": {
  1692. "type": "map<string,double>",
  1693. "value": {
  1694. "xratio": -1,
  1695. "yoffset": -4
  1696. }
  1697. }
  1698. },
  1699. "289": {
  1700. "segments": {
  1701. "type": "string",
  1702. "value": "m0,0 l-20,10 l20,10 z"
  1703. },
  1704. "style": {
  1705. "type": "map<string,string>",
  1706. "value": {
  1707. "stroke": "#000000",
  1708. "fill": "#ffffff",
  1709. "opacity": 0,
  1710. "stroke-width": 1
  1711. }
  1712. },
  1713. "mapper": {
  1714. "type": "code",
  1715. "value": ""
  1716. },
  1717. "parser": {
  1718. "type": "code",
  1719. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1720. },
  1721. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1722. "position": {
  1723. "type": "list<double>",
  1724. "value": [
  1725. "0;45.29696697259078,0%",
  1726. "0;49.8450744059337,0%"
  1727. ]
  1728. },
  1729. "orientation": {
  1730. "type": "double",
  1731. "value": "0;-140.80158688764706"
  1732. },
  1733. "scale": {
  1734. "type": "list<double>",
  1735. "value": [
  1736. 1,
  1737. 1
  1738. ]
  1739. },
  1740. "arrow": "arrowHead",
  1741. "arrowType": "triangle-white-large",
  1742. "$linkDecoratorInfo": {
  1743. "type": "map<string,double>",
  1744. "value": {
  1745. "xratio": -1,
  1746. "yoffset": -10
  1747. }
  1748. }
  1749. },
  1750. "290": {
  1751. "segments": {
  1752. "type": "string",
  1753. "value": "m0,0 l-20,10 l20,10 z"
  1754. },
  1755. "style": {
  1756. "type": "map<string,string>",
  1757. "value": {
  1758. "stroke": "#000000",
  1759. "fill": "#000000",
  1760. "opacity": 0,
  1761. "stroke-width": 1
  1762. }
  1763. },
  1764. "mapper": {
  1765. "type": "code",
  1766. "value": ""
  1767. },
  1768. "parser": {
  1769. "type": "code",
  1770. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1771. },
  1772. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1773. "position": {
  1774. "type": "list<double>",
  1775. "value": [
  1776. "0;45.29696697259078,0%",
  1777. "0;49.8450744059337,0%"
  1778. ]
  1779. },
  1780. "orientation": {
  1781. "type": "double",
  1782. "value": "0;-140.80158688764706"
  1783. },
  1784. "scale": {
  1785. "type": "list<double>",
  1786. "value": [
  1787. 1,
  1788. 1
  1789. ]
  1790. },
  1791. "arrow": "arrowHead",
  1792. "arrowType": "triangle-black-large",
  1793. "$linkDecoratorInfo": {
  1794. "type": "map<string,double>",
  1795. "value": {
  1796. "xratio": -1,
  1797. "yoffset": -10
  1798. }
  1799. }
  1800. },
  1801. "291": {
  1802. "r": {
  1803. "type": "double",
  1804. "value": 5
  1805. },
  1806. "style": {
  1807. "type": "map<string,string>",
  1808. "value": {
  1809. "stroke": "#000000",
  1810. "fill": "#000000",
  1811. "opacity": 0,
  1812. "stroke-width": 1
  1813. }
  1814. },
  1815. "mapper": {
  1816. "type": "code",
  1817. "value": ""
  1818. },
  1819. "parser": {
  1820. "type": "code",
  1821. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1822. },
  1823. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  1824. "position": {
  1825. "type": "list<double>",
  1826. "value": [
  1827. "0;48.457006168784915,0%",
  1828. "0;45.97026443917187,0%"
  1829. ]
  1830. },
  1831. "orientation": {
  1832. "type": "double",
  1833. "value": "0;-140.80158688764706"
  1834. },
  1835. "scale": {
  1836. "type": "list<double>",
  1837. "value": [
  1838. 1,
  1839. 1
  1840. ]
  1841. },
  1842. "arrow": "arrowHead",
  1843. "arrowType": "circle-black",
  1844. "$linkDecoratorInfo": {
  1845. "type": "map<string,double>",
  1846. "value": {
  1847. "xratio": -1,
  1848. "yoffset": -5
  1849. }
  1850. }
  1851. },
  1852. "292": {
  1853. "r": {
  1854. "type": "double",
  1855. "value": 5
  1856. },
  1857. "style": {
  1858. "type": "map<string,string>",
  1859. "value": {
  1860. "stroke": "#000000",
  1861. "fill": "#ffffff",
  1862. "opacity": 0,
  1863. "stroke-width": 1
  1864. }
  1865. },
  1866. "mapper": {
  1867. "type": "code",
  1868. "value": ""
  1869. },
  1870. "parser": {
  1871. "type": "code",
  1872. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1873. },
  1874. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  1875. "position": {
  1876. "type": "list<double>",
  1877. "value": [
  1878. "0;48.457006168784915,0%",
  1879. "0;45.97026443917187,0%"
  1880. ]
  1881. },
  1882. "orientation": {
  1883. "type": "double",
  1884. "value": "0;-140.80158688764706"
  1885. },
  1886. "scale": {
  1887. "type": "list<double>",
  1888. "value": [
  1889. 1,
  1890. 1
  1891. ]
  1892. },
  1893. "arrow": "arrowHead",
  1894. "arrowType": "circle-white",
  1895. "$linkDecoratorInfo": {
  1896. "type": "map<string,double>",
  1897. "value": {
  1898. "xratio": -1,
  1899. "yoffset": -5
  1900. }
  1901. }
  1902. },
  1903. "293": {
  1904. "r": {
  1905. "type": "double",
  1906. "value": 10
  1907. },
  1908. "style": {
  1909. "type": "map<string,string>",
  1910. "value": {
  1911. "stroke": "#000000",
  1912. "fill": "#ffffff",
  1913. "opacity": 0,
  1914. "stroke-width": 1
  1915. }
  1916. },
  1917. "mapper": {
  1918. "type": "code",
  1919. "value": ""
  1920. },
  1921. "parser": {
  1922. "type": "code",
  1923. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1924. },
  1925. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  1926. "position": {
  1927. "type": "list<double>",
  1928. "value": [
  1929. "0;45.29696697259078,0%",
  1930. "0;49.8450744059337,0%"
  1931. ]
  1932. },
  1933. "orientation": {
  1934. "type": "double",
  1935. "value": "0;-140.80158688764706"
  1936. },
  1937. "scale": {
  1938. "type": "list<double>",
  1939. "value": [
  1940. 1,
  1941. 1
  1942. ]
  1943. },
  1944. "arrow": "arrowHead",
  1945. "arrowType": "circle-white-large",
  1946. "$linkDecoratorInfo": {
  1947. "type": "map<string,double>",
  1948. "value": {
  1949. "xratio": -1,
  1950. "yoffset": -10
  1951. }
  1952. }
  1953. },
  1954. "294": {
  1955. "segments": {
  1956. "type": "string",
  1957. "value": "m0,0 l-20,8 l20,8"
  1958. },
  1959. "style": {
  1960. "type": "map<string,string>",
  1961. "value": {
  1962. "stroke": "#000000",
  1963. "fill": "#000000",
  1964. "fill-opacity": 0,
  1965. "stroke-width": 1,
  1966. "opacity": 0
  1967. }
  1968. },
  1969. "mapper": {
  1970. "type": "code",
  1971. "value": ""
  1972. },
  1973. "parser": {
  1974. "type": "code",
  1975. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1976. },
  1977. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1978. "position": {
  1979. "type": "list<double>",
  1980. "value": [
  1981. "0;46.56098265106846,0%",
  1982. "0;48.295150419228975,0%"
  1983. ]
  1984. },
  1985. "orientation": {
  1986. "type": "double",
  1987. "value": "0;-140.80158688764706"
  1988. },
  1989. "scale": {
  1990. "type": "list<double>",
  1991. "value": [
  1992. 1,
  1993. 1
  1994. ]
  1995. },
  1996. "arrow": "arrowHead",
  1997. "arrowType": "arrow-empty-large",
  1998. "$linkDecoratorInfo": {
  1999. "type": "map<string,double>",
  2000. "value": {
  2001. "xratio": -1,
  2002. "yoffset": -8
  2003. }
  2004. }
  2005. },
  2006. "295": {
  2007. "segments": {
  2008. "type": "string",
  2009. "value": "m0,0 l-10,4 l10,4"
  2010. },
  2011. "style": {
  2012. "type": "map<string,string>",
  2013. "value": {
  2014. "stroke": "#000000",
  2015. "fill": "#000000",
  2016. "fill-opacity": 0,
  2017. "stroke-width": 1,
  2018. "opacity": 0
  2019. }
  2020. },
  2021. "mapper": {
  2022. "type": "code",
  2023. "value": ""
  2024. },
  2025. "parser": {
  2026. "type": "code",
  2027. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2028. },
  2029. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2030. "position": {
  2031. "type": "list<double>",
  2032. "value": [
  2033. "0;49.08901400802381,0%",
  2034. "0;45.19530244581952,0%"
  2035. ]
  2036. },
  2037. "orientation": {
  2038. "type": "double",
  2039. "value": "0;-140.80158688764706"
  2040. },
  2041. "scale": {
  2042. "type": "list<double>",
  2043. "value": [
  2044. 1,
  2045. 1
  2046. ]
  2047. },
  2048. "arrow": "arrowHead",
  2049. "arrowType": "arrow-empty",
  2050. "$linkDecoratorInfo": {
  2051. "type": "map<string,double>",
  2052. "value": {
  2053. "xratio": -1,
  2054. "yoffset": -4
  2055. }
  2056. }
  2057. },
  2058. "296": {
  2059. "segments": {
  2060. "type": "string",
  2061. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  2062. },
  2063. "style": {
  2064. "type": "map<string,string>",
  2065. "value": {
  2066. "stroke": "#000000",
  2067. "fill": "#000000",
  2068. "opacity": 0,
  2069. "stroke-width": 1
  2070. }
  2071. },
  2072. "mapper": {
  2073. "type": "code",
  2074. "value": ""
  2075. },
  2076. "parser": {
  2077. "type": "code",
  2078. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2079. },
  2080. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2081. "position": {
  2082. "type": "list<double>",
  2083. "value": [
  2084. "0;45.29696697259078,0%",
  2085. "0;49.8450744059337,0%"
  2086. ]
  2087. },
  2088. "orientation": {
  2089. "type": "double",
  2090. "value": "0;-140.80158688764706"
  2091. },
  2092. "scale": {
  2093. "type": "list<double>",
  2094. "value": [
  2095. 1,
  2096. 1
  2097. ]
  2098. },
  2099. "arrow": "arrowHead",
  2100. "arrowType": "diamond-black-large",
  2101. "$linkDecoratorInfo": {
  2102. "type": "map<string,double>",
  2103. "value": {
  2104. "xratio": -1,
  2105. "yoffset": -10
  2106. }
  2107. }
  2108. },
  2109. "297": {
  2110. "segments": {
  2111. "type": "string",
  2112. "value": "m0,0 l-10,4 l10,4 z"
  2113. },
  2114. "style": {
  2115. "type": "map<string,string>",
  2116. "value": {
  2117. "stroke": "#000000",
  2118. "fill": "#000000",
  2119. "opacity": 0,
  2120. "stroke-width": 1
  2121. }
  2122. },
  2123. "mapper": {
  2124. "type": "code",
  2125. "value": ""
  2126. },
  2127. "parser": {
  2128. "type": "code",
  2129. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2130. },
  2131. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2132. "position": {
  2133. "type": "list<double>",
  2134. "value": [
  2135. "0;49.08901400802381,0%",
  2136. "0;45.19530244581952,0%"
  2137. ]
  2138. },
  2139. "orientation": {
  2140. "type": "double",
  2141. "value": "0;-140.80158688764706"
  2142. },
  2143. "scale": {
  2144. "type": "list<double>",
  2145. "value": [
  2146. 1,
  2147. 1
  2148. ]
  2149. },
  2150. "arrow": "arrowHead",
  2151. "arrowType": "triangle-black",
  2152. "$linkDecoratorInfo": {
  2153. "type": "map<string,double>",
  2154. "value": {
  2155. "xratio": -1,
  2156. "yoffset": -4
  2157. }
  2158. }
  2159. },
  2160. "298": {
  2161. "segments": {
  2162. "type": "string",
  2163. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  2164. },
  2165. "style": {
  2166. "type": "map<string,string>",
  2167. "value": {
  2168. "stroke": "#000000",
  2169. "fill": "#ffffff",
  2170. "opacity": 0,
  2171. "stroke-width": 1
  2172. }
  2173. },
  2174. "mapper": {
  2175. "type": "code",
  2176. "value": ""
  2177. },
  2178. "parser": {
  2179. "type": "code",
  2180. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2181. },
  2182. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2183. "position": {
  2184. "type": "list<double>",
  2185. "value": [
  2186. "0;45.29696697259078,0%",
  2187. "0;49.8450744059337,0%"
  2188. ]
  2189. },
  2190. "orientation": {
  2191. "type": "double",
  2192. "value": "0;-140.80158688764706"
  2193. },
  2194. "scale": {
  2195. "type": "list<double>",
  2196. "value": [
  2197. 1,
  2198. 1
  2199. ]
  2200. },
  2201. "arrow": "arrowHead",
  2202. "arrowType": "diamond-white-large",
  2203. "$linkDecoratorInfo": {
  2204. "type": "map<string,double>",
  2205. "value": {
  2206. "xratio": -1,
  2207. "yoffset": -10
  2208. }
  2209. }
  2210. }
  2211. },
  2212. "edges": []
  2213. }
  2214. },
  2215. "$asuri": {
  2216. "type": "string",
  2217. "value": "/Formalisms/LCA-new/LCA/parent/13.instance"
  2218. },
  2219. "$segments": {
  2220. "type": "map<string,list<string>>",
  2221. "value": {
  2222. "/Formalisms/LCA-new/LCA.defaultIcons/NodeIcon/8.instance--/Formalisms/LCA-new/LCA.defaultIcons/parentLink/13.instance": "M817,209L765.382954635021,166.90454552758996",
  2223. "/Formalisms/LCA-new/LCA.defaultIcons/parentLink/13.instance--/Formalisms/LCA-new/LCA.defaultIcons/NodeIcon/1.instance": "M765.3833093174048,166.90483478312626L714.0007086498595,125.00057792804074"
  2224. }
  2225. },
  2226. "$type": "/Formalisms/LCA-new/LCA.defaultIcons/parentLink"
  2227. },
  2228. "14": {
  2229. "link-style": {
  2230. "type": "map<string,string>",
  2231. "value": {
  2232. "stroke": "#000000",
  2233. "stroke-dasharray": "",
  2234. "stroke-opacity": 1,
  2235. "stroke-width": 2
  2236. }
  2237. },
  2238. "arrowHead": {
  2239. "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)",
  2240. "value": "custom"
  2241. },
  2242. "arrowTail": {
  2243. "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)",
  2244. "value": "arrow-black"
  2245. },
  2246. "typename": {
  2247. "type": "string",
  2248. "value": "parentLink"
  2249. },
  2250. "position": {
  2251. "type": "list<double>",
  2252. "value": [
  2253. 623.1090907888805,
  2254. 169.8963637505635
  2255. ]
  2256. },
  2257. "orientation": {
  2258. "type": "double",
  2259. "value": 0
  2260. },
  2261. "scale": {
  2262. "type": "list<double>",
  2263. "value": [
  2264. 1,
  2265. 1
  2266. ]
  2267. },
  2268. "mapper": {
  2269. "type": "code",
  2270. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  2271. },
  2272. "parser": {
  2273. "type": "code",
  2274. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2275. },
  2276. "$contents": {
  2277. "type": "map<string,*>",
  2278. "value": {
  2279. "nodes": {
  2280. "267": {
  2281. "segments": {
  2282. "type": "string",
  2283. "value": "m0,0 l10,4 l-10,4 l3,-4 z"
  2284. },
  2285. "style": {
  2286. "type": "map<string,string>",
  2287. "value": {
  2288. "stroke": "#000000",
  2289. "fill": "#000000",
  2290. "opacity": 1,
  2291. "stroke-width": 1
  2292. }
  2293. },
  2294. "mapper": {
  2295. "type": "code",
  2296. "value": ""
  2297. },
  2298. "parser": {
  2299. "type": "code",
  2300. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2301. },
  2302. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2303. "position": {
  2304. "type": "list<double>",
  2305. "value": [
  2306. "0;37.135713136563595,72.4999433594413%",
  2307. "0;-40.796173169388936,-68.87494619146938%"
  2308. ]
  2309. },
  2310. "orientation": {
  2311. "type": "double",
  2312. "value": "0;-43.531199285614235"
  2313. },
  2314. "scale": {
  2315. "type": "list<double>",
  2316. "value": [
  2317. 1,
  2318. 1
  2319. ]
  2320. },
  2321. "arrow": "arrowTail",
  2322. "arrowType": "arrow-black",
  2323. "$linkDecoratorInfo": {
  2324. "type": "map<string,double>",
  2325. "value": {
  2326. "xratio": 1,
  2327. "yoffset": -4
  2328. }
  2329. }
  2330. },
  2331. "268": {
  2332. "segments": {
  2333. "type": "string",
  2334. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  2335. },
  2336. "style": {
  2337. "type": "map<string,string>",
  2338. "value": {
  2339. "stroke": "#000000",
  2340. "fill": "#000000",
  2341. "opacity": 0,
  2342. "stroke-width": 1
  2343. }
  2344. },
  2345. "mapper": {
  2346. "type": "code",
  2347. "value": ""
  2348. },
  2349. "parser": {
  2350. "type": "code",
  2351. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2352. },
  2353. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2354. "position": {
  2355. "type": "list<double>",
  2356. "value": [
  2357. "0;33.00321636507533,72.4999433594413%",
  2358. "0;-45.146169770955424,-68.87494619146938%"
  2359. ]
  2360. },
  2361. "orientation": {
  2362. "type": "double",
  2363. "value": "0;-43.531199285614235"
  2364. },
  2365. "scale": {
  2366. "type": "list<double>",
  2367. "value": [
  2368. 1,
  2369. 1
  2370. ]
  2371. },
  2372. "arrow": "arrowTail",
  2373. "arrowType": "diamond-black-large",
  2374. "$linkDecoratorInfo": {
  2375. "type": "map<string,double>",
  2376. "value": {
  2377. "xratio": 1,
  2378. "yoffset": -10
  2379. }
  2380. }
  2381. },
  2382. "269": {
  2383. "r": {
  2384. "type": "double",
  2385. "value": 10
  2386. },
  2387. "style": {
  2388. "type": "map<string,string>",
  2389. "value": {
  2390. "stroke": "#000000",
  2391. "fill": "#000000",
  2392. "opacity": 0,
  2393. "stroke-width": 1
  2394. }
  2395. },
  2396. "mapper": {
  2397. "type": "code",
  2398. "value": ""
  2399. },
  2400. "parser": {
  2401. "type": "code",
  2402. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2403. },
  2404. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  2405. "position": {
  2406. "type": "list<double>",
  2407. "value": [
  2408. "0;33.00321636507533,72.4999433594413%",
  2409. "0;-45.146169770955424,-68.87494619146938%"
  2410. ]
  2411. },
  2412. "orientation": {
  2413. "type": "double",
  2414. "value": "0;-43.531199285614235"
  2415. },
  2416. "scale": {
  2417. "type": "list<double>",
  2418. "value": [
  2419. 1,
  2420. 1
  2421. ]
  2422. },
  2423. "arrow": "arrowTail",
  2424. "arrowType": "circle-black-large",
  2425. "$linkDecoratorInfo": {
  2426. "type": "map<string,double>",
  2427. "value": {
  2428. "xratio": 1,
  2429. "yoffset": -10
  2430. }
  2431. }
  2432. },
  2433. "270": {
  2434. "r": {
  2435. "type": "double",
  2436. "value": 10
  2437. },
  2438. "style": {
  2439. "type": "map<string,string>",
  2440. "value": {
  2441. "stroke": "#000000",
  2442. "fill": "#ffffff",
  2443. "opacity": 0,
  2444. "stroke-width": 1
  2445. }
  2446. },
  2447. "mapper": {
  2448. "type": "code",
  2449. "value": ""
  2450. },
  2451. "parser": {
  2452. "type": "code",
  2453. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2454. },
  2455. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  2456. "position": {
  2457. "type": "list<double>",
  2458. "value": [
  2459. "0;33.00321636507533,72.4999433594413%",
  2460. "0;-45.146169770955424,-68.87494619146938%"
  2461. ]
  2462. },
  2463. "orientation": {
  2464. "type": "double",
  2465. "value": "0;-43.531199285614235"
  2466. },
  2467. "scale": {
  2468. "type": "list<double>",
  2469. "value": [
  2470. 1,
  2471. 1
  2472. ]
  2473. },
  2474. "arrow": "arrowTail",
  2475. "arrowType": "circle-white-large",
  2476. "$linkDecoratorInfo": {
  2477. "type": "map<string,double>",
  2478. "value": {
  2479. "xratio": 1,
  2480. "yoffset": -10
  2481. }
  2482. }
  2483. },
  2484. "271": {
  2485. "r": {
  2486. "type": "double",
  2487. "value": 5
  2488. },
  2489. "style": {
  2490. "type": "map<string,string>",
  2491. "value": {
  2492. "stroke": "#000000",
  2493. "fill": "#000000",
  2494. "opacity": 0,
  2495. "stroke-width": 1
  2496. }
  2497. },
  2498. "mapper": {
  2499. "type": "code",
  2500. "value": ""
  2501. },
  2502. "parser": {
  2503. "type": "code",
  2504. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2505. },
  2506. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  2507. "position": {
  2508. "type": "list<double>",
  2509. "value": [
  2510. "0;36.44696367464883,72.4999433594413%",
  2511. "0;-41.52117260298334,-68.87494619146938%"
  2512. ]
  2513. },
  2514. "orientation": {
  2515. "type": "double",
  2516. "value": "0;-43.531199285614235"
  2517. },
  2518. "scale": {
  2519. "type": "list<double>",
  2520. "value": [
  2521. 1,
  2522. 1
  2523. ]
  2524. },
  2525. "arrow": "arrowTail",
  2526. "arrowType": "circle-black",
  2527. "$linkDecoratorInfo": {
  2528. "type": "map<string,double>",
  2529. "value": {
  2530. "xratio": 1,
  2531. "yoffset": -5
  2532. }
  2533. }
  2534. },
  2535. "272": {
  2536. "segments": {
  2537. "type": "string",
  2538. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  2539. },
  2540. "style": {
  2541. "type": "map<string,string>",
  2542. "value": {
  2543. "stroke": "#000000",
  2544. "fill": "#000000",
  2545. "opacity": 0,
  2546. "stroke-width": 1
  2547. }
  2548. },
  2549. "mapper": {
  2550. "type": "code",
  2551. "value": ""
  2552. },
  2553. "parser": {
  2554. "type": "code",
  2555. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2556. },
  2557. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2558. "position": {
  2559. "type": "list<double>",
  2560. "value": [
  2561. "0;36.44696367464883,72.4999433594413%",
  2562. "0;-41.52117260298334,-68.87494619146938%"
  2563. ]
  2564. },
  2565. "orientation": {
  2566. "type": "double",
  2567. "value": "0;-43.531199285614235"
  2568. },
  2569. "scale": {
  2570. "type": "list<double>",
  2571. "value": [
  2572. 1,
  2573. 1
  2574. ]
  2575. },
  2576. "arrow": "arrowTail",
  2577. "arrowType": "diamond-black",
  2578. "$linkDecoratorInfo": {
  2579. "type": "map<string,double>",
  2580. "value": {
  2581. "xratio": 1,
  2582. "yoffset": -5
  2583. }
  2584. }
  2585. },
  2586. "273": {
  2587. "segments": {
  2588. "type": "string",
  2589. "value": "m0,0 l20,10 l-20,10 z"
  2590. },
  2591. "style": {
  2592. "type": "map<string,string>",
  2593. "value": {
  2594. "stroke": "#000000",
  2595. "fill": "#000000",
  2596. "opacity": 0,
  2597. "stroke-width": 1
  2598. }
  2599. },
  2600. "mapper": {
  2601. "type": "code",
  2602. "value": ""
  2603. },
  2604. "parser": {
  2605. "type": "code",
  2606. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2607. },
  2608. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2609. "position": {
  2610. "type": "list<double>",
  2611. "value": [
  2612. "0;33.00321636507533,72.4999433594413%",
  2613. "0;-45.146169770955424,-68.87494619146938%"
  2614. ]
  2615. },
  2616. "orientation": {
  2617. "type": "double",
  2618. "value": "0;-43.531199285614235"
  2619. },
  2620. "scale": {
  2621. "type": "list<double>",
  2622. "value": [
  2623. 1,
  2624. 1
  2625. ]
  2626. },
  2627. "arrow": "arrowTail",
  2628. "arrowType": "triangle-black-large",
  2629. "$linkDecoratorInfo": {
  2630. "type": "map<string,double>",
  2631. "value": {
  2632. "xratio": 1,
  2633. "yoffset": -10
  2634. }
  2635. }
  2636. },
  2637. "274": {
  2638. "segments": {
  2639. "type": "string",
  2640. "value": "m0,0 l10,4 l-10,4 z"
  2641. },
  2642. "style": {
  2643. "type": "map<string,string>",
  2644. "value": {
  2645. "stroke": "#000000",
  2646. "fill": "#000000",
  2647. "opacity": 0,
  2648. "stroke-width": 1
  2649. }
  2650. },
  2651. "mapper": {
  2652. "type": "code",
  2653. "value": ""
  2654. },
  2655. "parser": {
  2656. "type": "code",
  2657. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2658. },
  2659. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2660. "position": {
  2661. "type": "list<double>",
  2662. "value": [
  2663. "0;37.135713136563595,72.4999433594413%",
  2664. "0;-40.796173169388936,-68.87494619146938%"
  2665. ]
  2666. },
  2667. "orientation": {
  2668. "type": "double",
  2669. "value": "0;-43.531199285614235"
  2670. },
  2671. "scale": {
  2672. "type": "list<double>",
  2673. "value": [
  2674. 1,
  2675. 1
  2676. ]
  2677. },
  2678. "arrow": "arrowTail",
  2679. "arrowType": "triangle-black",
  2680. "$linkDecoratorInfo": {
  2681. "type": "map<string,double>",
  2682. "value": {
  2683. "xratio": 1,
  2684. "yoffset": -4
  2685. }
  2686. }
  2687. },
  2688. "275": {
  2689. "segments": {
  2690. "type": "string",
  2691. "value": "m0,0 l20,8 l-20,8 l6,-8 z"
  2692. },
  2693. "style": {
  2694. "type": "map<string,string>",
  2695. "value": {
  2696. "stroke": "#000000",
  2697. "fill": "#000000",
  2698. "opacity": 0,
  2699. "stroke-width": 1
  2700. }
  2701. },
  2702. "mapper": {
  2703. "type": "code",
  2704. "value": ""
  2705. },
  2706. "parser": {
  2707. "type": "code",
  2708. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2709. },
  2710. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2711. "position": {
  2712. "type": "list<double>",
  2713. "value": [
  2714. "0;34.38071528890475,72.4999433594413%",
  2715. "0;-43.696170903766586,-68.87494619146938%"
  2716. ]
  2717. },
  2718. "orientation": {
  2719. "type": "double",
  2720. "value": "0;-43.531199285614235"
  2721. },
  2722. "scale": {
  2723. "type": "list<double>",
  2724. "value": [
  2725. 1,
  2726. 1
  2727. ]
  2728. },
  2729. "arrow": "arrowTail",
  2730. "arrowType": "arrow-black-large",
  2731. "$linkDecoratorInfo": {
  2732. "type": "map<string,double>",
  2733. "value": {
  2734. "xratio": 1,
  2735. "yoffset": -8
  2736. }
  2737. }
  2738. },
  2739. "276": {
  2740. "segments": {
  2741. "type": "string",
  2742. "value": "m0,0 l20,10 l-20,10 z"
  2743. },
  2744. "style": {
  2745. "type": "map<string,string>",
  2746. "value": {
  2747. "stroke": "#000000",
  2748. "fill": "#ffffff",
  2749. "opacity": 0,
  2750. "stroke-width": 1
  2751. }
  2752. },
  2753. "mapper": {
  2754. "type": "code",
  2755. "value": ""
  2756. },
  2757. "parser": {
  2758. "type": "code",
  2759. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2760. },
  2761. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2762. "position": {
  2763. "type": "list<double>",
  2764. "value": [
  2765. "0;33.00321636507533,72.4999433594413%",
  2766. "0;-45.146169770955424,-68.87494619146938%"
  2767. ]
  2768. },
  2769. "orientation": {
  2770. "type": "double",
  2771. "value": "0;-43.531199285614235"
  2772. },
  2773. "scale": {
  2774. "type": "list<double>",
  2775. "value": [
  2776. 1,
  2777. 1
  2778. ]
  2779. },
  2780. "arrow": "arrowTail",
  2781. "arrowType": "triangle-white-large",
  2782. "$linkDecoratorInfo": {
  2783. "type": "map<string,double>",
  2784. "value": {
  2785. "xratio": 1,
  2786. "yoffset": -10
  2787. }
  2788. }
  2789. },
  2790. "277": {
  2791. "segments": {
  2792. "type": "string",
  2793. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  2794. },
  2795. "style": {
  2796. "type": "map<string,string>",
  2797. "value": {
  2798. "stroke": "#000000",
  2799. "fill": "#ffffff",
  2800. "opacity": 0,
  2801. "stroke-width": 1
  2802. }
  2803. },
  2804. "mapper": {
  2805. "type": "code",
  2806. "value": ""
  2807. },
  2808. "parser": {
  2809. "type": "code",
  2810. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2811. },
  2812. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2813. "position": {
  2814. "type": "list<double>",
  2815. "value": [
  2816. "0;36.44696367464883,72.4999433594413%",
  2817. "0;-41.52117260298334,-68.87494619146938%"
  2818. ]
  2819. },
  2820. "orientation": {
  2821. "type": "double",
  2822. "value": "0;-43.531199285614235"
  2823. },
  2824. "scale": {
  2825. "type": "list<double>",
  2826. "value": [
  2827. 1,
  2828. 1
  2829. ]
  2830. },
  2831. "arrow": "arrowTail",
  2832. "arrowType": "diamond-white",
  2833. "$linkDecoratorInfo": {
  2834. "type": "map<string,double>",
  2835. "value": {
  2836. "xratio": 1,
  2837. "yoffset": -5
  2838. }
  2839. }
  2840. },
  2841. "278": {
  2842. "segments": {
  2843. "type": "string",
  2844. "value": "m0,0 l20,8 l-20,8"
  2845. },
  2846. "style": {
  2847. "type": "map<string,string>",
  2848. "value": {
  2849. "stroke": "#000000",
  2850. "fill": "#000000",
  2851. "fill-opacity": 0,
  2852. "stroke-width": 1,
  2853. "opacity": 0
  2854. }
  2855. },
  2856. "mapper": {
  2857. "type": "code",
  2858. "value": ""
  2859. },
  2860. "parser": {
  2861. "type": "code",
  2862. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2863. },
  2864. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2865. "position": {
  2866. "type": "list<double>",
  2867. "value": [
  2868. "0;34.38071528890475,72.4999433594413%",
  2869. "0;-43.696170903766586,-68.87494619146938%"
  2870. ]
  2871. },
  2872. "orientation": {
  2873. "type": "double",
  2874. "value": "0;-43.531199285614235"
  2875. },
  2876. "scale": {
  2877. "type": "list<double>",
  2878. "value": [
  2879. 1,
  2880. 1
  2881. ]
  2882. },
  2883. "arrow": "arrowTail",
  2884. "arrowType": "arrow-empty-large",
  2885. "$linkDecoratorInfo": {
  2886. "type": "map<string,double>",
  2887. "value": {
  2888. "xratio": 1,
  2889. "yoffset": -8
  2890. }
  2891. }
  2892. },
  2893. "279": {
  2894. "r": {
  2895. "type": "double",
  2896. "value": 5
  2897. },
  2898. "style": {
  2899. "type": "map<string,string>",
  2900. "value": {
  2901. "stroke": "#000000",
  2902. "fill": "#ffffff",
  2903. "opacity": 0,
  2904. "stroke-width": 1
  2905. }
  2906. },
  2907. "mapper": {
  2908. "type": "code",
  2909. "value": ""
  2910. },
  2911. "parser": {
  2912. "type": "code",
  2913. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2914. },
  2915. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  2916. "position": {
  2917. "type": "list<double>",
  2918. "value": [
  2919. "0;36.44696367464883,72.4999433594413%",
  2920. "0;-41.52117260298334,-68.87494619146938%"
  2921. ]
  2922. },
  2923. "orientation": {
  2924. "type": "double",
  2925. "value": "0;-43.531199285614235"
  2926. },
  2927. "scale": {
  2928. "type": "list<double>",
  2929. "value": [
  2930. 1,
  2931. 1
  2932. ]
  2933. },
  2934. "arrow": "arrowTail",
  2935. "arrowType": "circle-white",
  2936. "$linkDecoratorInfo": {
  2937. "type": "map<string,double>",
  2938. "value": {
  2939. "xratio": 1,
  2940. "yoffset": -5
  2941. }
  2942. }
  2943. },
  2944. "280": {
  2945. "segments": {
  2946. "type": "string",
  2947. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  2948. },
  2949. "style": {
  2950. "type": "map<string,string>",
  2951. "value": {
  2952. "stroke": "#000000",
  2953. "fill": "#ffffff",
  2954. "opacity": 0,
  2955. "stroke-width": 1
  2956. }
  2957. },
  2958. "mapper": {
  2959. "type": "code",
  2960. "value": ""
  2961. },
  2962. "parser": {
  2963. "type": "code",
  2964. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2965. },
  2966. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2967. "position": {
  2968. "type": "list<double>",
  2969. "value": [
  2970. "0;33.00321636507533,72.4999433594413%",
  2971. "0;-45.146169770955424,-68.87494619146938%"
  2972. ]
  2973. },
  2974. "orientation": {
  2975. "type": "double",
  2976. "value": "0;-43.531199285614235"
  2977. },
  2978. "scale": {
  2979. "type": "list<double>",
  2980. "value": [
  2981. 1,
  2982. 1
  2983. ]
  2984. },
  2985. "arrow": "arrowTail",
  2986. "arrowType": "diamond-white-large",
  2987. "$linkDecoratorInfo": {
  2988. "type": "map<string,double>",
  2989. "value": {
  2990. "xratio": 1,
  2991. "yoffset": -10
  2992. }
  2993. }
  2994. },
  2995. "281": {
  2996. "segments": {
  2997. "type": "string",
  2998. "value": "m0,0 l10,4 l-10,4"
  2999. },
  3000. "style": {
  3001. "type": "map<string,string>",
  3002. "value": {
  3003. "stroke": "#000000",
  3004. "fill": "#000000",
  3005. "fill-opacity": 0,
  3006. "stroke-width": 1,
  3007. "opacity": 0
  3008. }
  3009. },
  3010. "mapper": {
  3011. "type": "code",
  3012. "value": ""
  3013. },
  3014. "parser": {
  3015. "type": "code",
  3016. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3017. },
  3018. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3019. "position": {
  3020. "type": "list<double>",
  3021. "value": [
  3022. "0;37.135713136563595,72.4999433594413%",
  3023. "0;-40.796173169388936,-68.87494619146938%"
  3024. ]
  3025. },
  3026. "orientation": {
  3027. "type": "double",
  3028. "value": "0;-43.531199285614235"
  3029. },
  3030. "scale": {
  3031. "type": "list<double>",
  3032. "value": [
  3033. 1,
  3034. 1
  3035. ]
  3036. },
  3037. "arrow": "arrowTail",
  3038. "arrowType": "arrow-empty",
  3039. "$linkDecoratorInfo": {
  3040. "type": "map<string,double>",
  3041. "value": {
  3042. "xratio": 1,
  3043. "yoffset": -4
  3044. }
  3045. }
  3046. },
  3047. "282": {
  3048. "segments": {
  3049. "type": "string",
  3050. "value": "m0,0 l10,5 l-10,5 z"
  3051. },
  3052. "style": {
  3053. "type": "map<string,string>",
  3054. "value": {
  3055. "stroke": "#000000",
  3056. "fill": "#ffffff",
  3057. "opacity": 0,
  3058. "stroke-width": 1
  3059. }
  3060. },
  3061. "mapper": {
  3062. "type": "code",
  3063. "value": ""
  3064. },
  3065. "parser": {
  3066. "type": "code",
  3067. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3068. },
  3069. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3070. "position": {
  3071. "type": "list<double>",
  3072. "value": [
  3073. "0;36.44696367464883,72.4999433594413%",
  3074. "0;-41.52117260298334,-68.87494619146938%"
  3075. ]
  3076. },
  3077. "orientation": {
  3078. "type": "double",
  3079. "value": "0;-43.531199285614235"
  3080. },
  3081. "scale": {
  3082. "type": "list<double>",
  3083. "value": [
  3084. 1,
  3085. 1
  3086. ]
  3087. },
  3088. "arrow": "arrowTail",
  3089. "arrowType": "triangle-white",
  3090. "$linkDecoratorInfo": {
  3091. "type": "map<string,double>",
  3092. "value": {
  3093. "xratio": 1,
  3094. "yoffset": -5
  3095. }
  3096. }
  3097. },
  3098. "283": {
  3099. "segments": {
  3100. "type": "string",
  3101. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  3102. },
  3103. "style": {
  3104. "type": "map<string,string>",
  3105. "value": {
  3106. "stroke": "#000000",
  3107. "fill": "#ffffff",
  3108. "opacity": 0,
  3109. "stroke-width": 1
  3110. }
  3111. },
  3112. "mapper": {
  3113. "type": "code",
  3114. "value": ""
  3115. },
  3116. "parser": {
  3117. "type": "code",
  3118. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3119. },
  3120. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3121. "position": {
  3122. "type": "list<double>",
  3123. "value": [
  3124. "0;-43.552838098454004,0%",
  3125. "0;34.47863908146445,0%"
  3126. ]
  3127. },
  3128. "orientation": {
  3129. "type": "double",
  3130. "value": "0;-43.53119928561419"
  3131. },
  3132. "scale": {
  3133. "type": "list<double>",
  3134. "value": [
  3135. 1,
  3136. 1
  3137. ]
  3138. },
  3139. "arrow": "arrowHead",
  3140. "arrowType": "diamond-white",
  3141. "$linkDecoratorInfo": {
  3142. "type": "map<string,double>",
  3143. "value": {
  3144. "xratio": -1,
  3145. "yoffset": -5
  3146. }
  3147. }
  3148. },
  3149. "284": {
  3150. "segments": {
  3151. "type": "string",
  3152. "value": "m0,0 l-10,5 l10,5 z"
  3153. },
  3154. "style": {
  3155. "type": "map<string,string>",
  3156. "value": {
  3157. "stroke": "#000000",
  3158. "fill": "#ffffff",
  3159. "opacity": 0,
  3160. "stroke-width": 1
  3161. }
  3162. },
  3163. "mapper": {
  3164. "type": "code",
  3165. "value": ""
  3166. },
  3167. "parser": {
  3168. "type": "code",
  3169. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3170. },
  3171. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3172. "position": {
  3173. "type": "list<double>",
  3174. "value": [
  3175. "0;-43.552838098454004,0%",
  3176. "0;34.47863908146445,0%"
  3177. ]
  3178. },
  3179. "orientation": {
  3180. "type": "double",
  3181. "value": "0;-43.53119928561419"
  3182. },
  3183. "scale": {
  3184. "type": "list<double>",
  3185. "value": [
  3186. 1,
  3187. 1
  3188. ]
  3189. },
  3190. "arrow": "arrowHead",
  3191. "arrowType": "triangle-white",
  3192. "$linkDecoratorInfo": {
  3193. "type": "map<string,double>",
  3194. "value": {
  3195. "xratio": -1,
  3196. "yoffset": -5
  3197. }
  3198. }
  3199. },
  3200. "285": {
  3201. "segments": {
  3202. "type": "string",
  3203. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  3204. },
  3205. "style": {
  3206. "type": "map<string,string>",
  3207. "value": {
  3208. "stroke": "#000000",
  3209. "fill": "#000000",
  3210. "opacity": 0,
  3211. "stroke-width": 1
  3212. }
  3213. },
  3214. "mapper": {
  3215. "type": "code",
  3216. "value": ""
  3217. },
  3218. "parser": {
  3219. "type": "code",
  3220. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3221. },
  3222. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3223. "position": {
  3224. "type": "list<double>",
  3225. "value": [
  3226. "0;-43.552838098454004,0%",
  3227. "0;34.47863908146445,0%"
  3228. ]
  3229. },
  3230. "orientation": {
  3231. "type": "double",
  3232. "value": "0;-43.53119928561419"
  3233. },
  3234. "scale": {
  3235. "type": "list<double>",
  3236. "value": [
  3237. 1,
  3238. 1
  3239. ]
  3240. },
  3241. "arrow": "arrowHead",
  3242. "arrowType": "diamond-black",
  3243. "$linkDecoratorInfo": {
  3244. "type": "map<string,double>",
  3245. "value": {
  3246. "xratio": -1,
  3247. "yoffset": -5
  3248. }
  3249. }
  3250. },
  3251. "286": {
  3252. "r": {
  3253. "type": "double",
  3254. "value": 10
  3255. },
  3256. "style": {
  3257. "type": "map<string,string>",
  3258. "value": {
  3259. "stroke": "#000000",
  3260. "fill": "#000000",
  3261. "opacity": 0,
  3262. "stroke-width": 1
  3263. }
  3264. },
  3265. "mapper": {
  3266. "type": "code",
  3267. "value": ""
  3268. },
  3269. "parser": {
  3270. "type": "code",
  3271. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3272. },
  3273. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  3274. "position": {
  3275. "type": "list<double>",
  3276. "value": [
  3277. "0;-46.996585408027386,0%",
  3278. "0;30.853641913492368,0%"
  3279. ]
  3280. },
  3281. "orientation": {
  3282. "type": "double",
  3283. "value": "0;-43.53119928561419"
  3284. },
  3285. "scale": {
  3286. "type": "list<double>",
  3287. "value": [
  3288. 1,
  3289. 1
  3290. ]
  3291. },
  3292. "arrow": "arrowHead",
  3293. "arrowType": "circle-black-large",
  3294. "$linkDecoratorInfo": {
  3295. "type": "map<string,double>",
  3296. "value": {
  3297. "xratio": -1,
  3298. "yoffset": -10
  3299. }
  3300. }
  3301. },
  3302. "287": {
  3303. "segments": {
  3304. "type": "string",
  3305. "value": "m0,0 l-20,8 l20,8 l-6,-8 z"
  3306. },
  3307. "style": {
  3308. "type": "map<string,string>",
  3309. "value": {
  3310. "stroke": "#000000",
  3311. "fill": "#000000",
  3312. "opacity": 0,
  3313. "stroke-width": 1
  3314. }
  3315. },
  3316. "mapper": {
  3317. "type": "code",
  3318. "value": ""
  3319. },
  3320. "parser": {
  3321. "type": "code",
  3322. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3323. },
  3324. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3325. "position": {
  3326. "type": "list<double>",
  3327. "value": [
  3328. "0;-45.61908648419808,0%",
  3329. "0;32.30364078068121,0%"
  3330. ]
  3331. },
  3332. "orientation": {
  3333. "type": "double",
  3334. "value": "0;-43.53119928561419"
  3335. },
  3336. "scale": {
  3337. "type": "list<double>",
  3338. "value": [
  3339. 1,
  3340. 1
  3341. ]
  3342. },
  3343. "arrow": "arrowHead",
  3344. "arrowType": "arrow-black-large",
  3345. "$linkDecoratorInfo": {
  3346. "type": "map<string,double>",
  3347. "value": {
  3348. "xratio": -1,
  3349. "yoffset": -8
  3350. }
  3351. }
  3352. },
  3353. "288": {
  3354. "segments": {
  3355. "type": "string",
  3356. "value": "m0,0 l-10,4 l10,4 l-3,-4 z"
  3357. },
  3358. "style": {
  3359. "type": "map<string,string>",
  3360. "value": {
  3361. "stroke": "#000000",
  3362. "fill": "#000000",
  3363. "opacity": 0,
  3364. "stroke-width": 1
  3365. }
  3366. },
  3367. "mapper": {
  3368. "type": "code",
  3369. "value": ""
  3370. },
  3371. "parser": {
  3372. "type": "code",
  3373. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3374. },
  3375. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3376. "position": {
  3377. "type": "list<double>",
  3378. "value": [
  3379. "0;-42.864088636539236,0%",
  3380. "0;35.203638515058856,0%"
  3381. ]
  3382. },
  3383. "orientation": {
  3384. "type": "double",
  3385. "value": "0;-43.53119928561419"
  3386. },
  3387. "scale": {
  3388. "type": "list<double>",
  3389. "value": [
  3390. 1,
  3391. 1
  3392. ]
  3393. },
  3394. "arrow": "arrowHead",
  3395. "arrowType": "arrow-black",
  3396. "$linkDecoratorInfo": {
  3397. "type": "map<string,double>",
  3398. "value": {
  3399. "xratio": -1,
  3400. "yoffset": -4
  3401. }
  3402. }
  3403. },
  3404. "289": {
  3405. "segments": {
  3406. "type": "string",
  3407. "value": "m0,0 l-20,10 l20,10 z"
  3408. },
  3409. "style": {
  3410. "type": "map<string,string>",
  3411. "value": {
  3412. "stroke": "#000000",
  3413. "fill": "#ffffff",
  3414. "opacity": 0,
  3415. "stroke-width": 1
  3416. }
  3417. },
  3418. "mapper": {
  3419. "type": "code",
  3420. "value": ""
  3421. },
  3422. "parser": {
  3423. "type": "code",
  3424. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3425. },
  3426. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3427. "position": {
  3428. "type": "list<double>",
  3429. "value": [
  3430. "0;-46.996585408027386,0%",
  3431. "0;30.853641913492368,0%"
  3432. ]
  3433. },
  3434. "orientation": {
  3435. "type": "double",
  3436. "value": "0;-43.53119928561419"
  3437. },
  3438. "scale": {
  3439. "type": "list<double>",
  3440. "value": [
  3441. 1,
  3442. 1
  3443. ]
  3444. },
  3445. "arrow": "arrowHead",
  3446. "arrowType": "triangle-white-large",
  3447. "$linkDecoratorInfo": {
  3448. "type": "map<string,double>",
  3449. "value": {
  3450. "xratio": -1,
  3451. "yoffset": -10
  3452. }
  3453. }
  3454. },
  3455. "290": {
  3456. "segments": {
  3457. "type": "string",
  3458. "value": "m0,0 l-20,10 l20,10 z"
  3459. },
  3460. "style": {
  3461. "type": "map<string,string>",
  3462. "value": {
  3463. "stroke": "#000000",
  3464. "fill": "#000000",
  3465. "opacity": 0,
  3466. "stroke-width": 1
  3467. }
  3468. },
  3469. "mapper": {
  3470. "type": "code",
  3471. "value": ""
  3472. },
  3473. "parser": {
  3474. "type": "code",
  3475. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3476. },
  3477. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3478. "position": {
  3479. "type": "list<double>",
  3480. "value": [
  3481. "0;-46.996585408027386,0%",
  3482. "0;30.853641913492368,0%"
  3483. ]
  3484. },
  3485. "orientation": {
  3486. "type": "double",
  3487. "value": "0;-43.53119928561419"
  3488. },
  3489. "scale": {
  3490. "type": "list<double>",
  3491. "value": [
  3492. 1,
  3493. 1
  3494. ]
  3495. },
  3496. "arrow": "arrowHead",
  3497. "arrowType": "triangle-black-large",
  3498. "$linkDecoratorInfo": {
  3499. "type": "map<string,double>",
  3500. "value": {
  3501. "xratio": -1,
  3502. "yoffset": -10
  3503. }
  3504. }
  3505. },
  3506. "291": {
  3507. "r": {
  3508. "type": "double",
  3509. "value": 5
  3510. },
  3511. "style": {
  3512. "type": "map<string,string>",
  3513. "value": {
  3514. "stroke": "#000000",
  3515. "fill": "#000000",
  3516. "opacity": 0,
  3517. "stroke-width": 1
  3518. }
  3519. },
  3520. "mapper": {
  3521. "type": "code",
  3522. "value": ""
  3523. },
  3524. "parser": {
  3525. "type": "code",
  3526. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3527. },
  3528. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  3529. "position": {
  3530. "type": "list<double>",
  3531. "value": [
  3532. "0;-43.552838098454004,0%",
  3533. "0;34.47863908146445,0%"
  3534. ]
  3535. },
  3536. "orientation": {
  3537. "type": "double",
  3538. "value": "0;-43.53119928561419"
  3539. },
  3540. "scale": {
  3541. "type": "list<double>",
  3542. "value": [
  3543. 1,
  3544. 1
  3545. ]
  3546. },
  3547. "arrow": "arrowHead",
  3548. "arrowType": "circle-black",
  3549. "$linkDecoratorInfo": {
  3550. "type": "map<string,double>",
  3551. "value": {
  3552. "xratio": -1,
  3553. "yoffset": -5
  3554. }
  3555. }
  3556. },
  3557. "292": {
  3558. "r": {
  3559. "type": "double",
  3560. "value": 5
  3561. },
  3562. "style": {
  3563. "type": "map<string,string>",
  3564. "value": {
  3565. "stroke": "#000000",
  3566. "fill": "#ffffff",
  3567. "opacity": 0,
  3568. "stroke-width": 1
  3569. }
  3570. },
  3571. "mapper": {
  3572. "type": "code",
  3573. "value": ""
  3574. },
  3575. "parser": {
  3576. "type": "code",
  3577. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3578. },
  3579. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  3580. "position": {
  3581. "type": "list<double>",
  3582. "value": [
  3583. "0;-43.552838098454004,0%",
  3584. "0;34.47863908146445,0%"
  3585. ]
  3586. },
  3587. "orientation": {
  3588. "type": "double",
  3589. "value": "0;-43.53119928561419"
  3590. },
  3591. "scale": {
  3592. "type": "list<double>",
  3593. "value": [
  3594. 1,
  3595. 1
  3596. ]
  3597. },
  3598. "arrow": "arrowHead",
  3599. "arrowType": "circle-white",
  3600. "$linkDecoratorInfo": {
  3601. "type": "map<string,double>",
  3602. "value": {
  3603. "xratio": -1,
  3604. "yoffset": -5
  3605. }
  3606. }
  3607. },
  3608. "293": {
  3609. "r": {
  3610. "type": "double",
  3611. "value": 10
  3612. },
  3613. "style": {
  3614. "type": "map<string,string>",
  3615. "value": {
  3616. "stroke": "#000000",
  3617. "fill": "#ffffff",
  3618. "opacity": 0,
  3619. "stroke-width": 1
  3620. }
  3621. },
  3622. "mapper": {
  3623. "type": "code",
  3624. "value": ""
  3625. },
  3626. "parser": {
  3627. "type": "code",
  3628. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3629. },
  3630. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  3631. "position": {
  3632. "type": "list<double>",
  3633. "value": [
  3634. "0;-46.996585408027386,0%",
  3635. "0;30.853641913492368,0%"
  3636. ]
  3637. },
  3638. "orientation": {
  3639. "type": "double",
  3640. "value": "0;-43.53119928561419"
  3641. },
  3642. "scale": {
  3643. "type": "list<double>",
  3644. "value": [
  3645. 1,
  3646. 1
  3647. ]
  3648. },
  3649. "arrow": "arrowHead",
  3650. "arrowType": "circle-white-large",
  3651. "$linkDecoratorInfo": {
  3652. "type": "map<string,double>",
  3653. "value": {
  3654. "xratio": -1,
  3655. "yoffset": -10
  3656. }
  3657. }
  3658. },
  3659. "294": {
  3660. "segments": {
  3661. "type": "string",
  3662. "value": "m0,0 l-20,8 l20,8"
  3663. },
  3664. "style": {
  3665. "type": "map<string,string>",
  3666. "value": {
  3667. "stroke": "#000000",
  3668. "fill": "#000000",
  3669. "fill-opacity": 0,
  3670. "stroke-width": 1,
  3671. "opacity": 0
  3672. }
  3673. },
  3674. "mapper": {
  3675. "type": "code",
  3676. "value": ""
  3677. },
  3678. "parser": {
  3679. "type": "code",
  3680. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3681. },
  3682. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3683. "position": {
  3684. "type": "list<double>",
  3685. "value": [
  3686. "0;-45.61908648419808,0%",
  3687. "0;32.30364078068121,0%"
  3688. ]
  3689. },
  3690. "orientation": {
  3691. "type": "double",
  3692. "value": "0;-43.53119928561419"
  3693. },
  3694. "scale": {
  3695. "type": "list<double>",
  3696. "value": [
  3697. 1,
  3698. 1
  3699. ]
  3700. },
  3701. "arrow": "arrowHead",
  3702. "arrowType": "arrow-empty-large",
  3703. "$linkDecoratorInfo": {
  3704. "type": "map<string,double>",
  3705. "value": {
  3706. "xratio": -1,
  3707. "yoffset": -8
  3708. }
  3709. }
  3710. },
  3711. "295": {
  3712. "segments": {
  3713. "type": "string",
  3714. "value": "m0,0 l-10,4 l10,4"
  3715. },
  3716. "style": {
  3717. "type": "map<string,string>",
  3718. "value": {
  3719. "stroke": "#000000",
  3720. "fill": "#000000",
  3721. "fill-opacity": 0,
  3722. "stroke-width": 1,
  3723. "opacity": 0
  3724. }
  3725. },
  3726. "mapper": {
  3727. "type": "code",
  3728. "value": ""
  3729. },
  3730. "parser": {
  3731. "type": "code",
  3732. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3733. },
  3734. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3735. "position": {
  3736. "type": "list<double>",
  3737. "value": [
  3738. "0;-42.864088636539236,0%",
  3739. "0;35.203638515058856,0%"
  3740. ]
  3741. },
  3742. "orientation": {
  3743. "type": "double",
  3744. "value": "0;-43.53119928561419"
  3745. },
  3746. "scale": {
  3747. "type": "list<double>",
  3748. "value": [
  3749. 1,
  3750. 1
  3751. ]
  3752. },
  3753. "arrow": "arrowHead",
  3754. "arrowType": "arrow-empty",
  3755. "$linkDecoratorInfo": {
  3756. "type": "map<string,double>",
  3757. "value": {
  3758. "xratio": -1,
  3759. "yoffset": -4
  3760. }
  3761. }
  3762. },
  3763. "296": {
  3764. "segments": {
  3765. "type": "string",
  3766. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  3767. },
  3768. "style": {
  3769. "type": "map<string,string>",
  3770. "value": {
  3771. "stroke": "#000000",
  3772. "fill": "#000000",
  3773. "opacity": 0,
  3774. "stroke-width": 1
  3775. }
  3776. },
  3777. "mapper": {
  3778. "type": "code",
  3779. "value": ""
  3780. },
  3781. "parser": {
  3782. "type": "code",
  3783. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3784. },
  3785. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3786. "position": {
  3787. "type": "list<double>",
  3788. "value": [
  3789. "0;-46.996585408027386,0%",
  3790. "0;30.853641913492368,0%"
  3791. ]
  3792. },
  3793. "orientation": {
  3794. "type": "double",
  3795. "value": "0;-43.53119928561419"
  3796. },
  3797. "scale": {
  3798. "type": "list<double>",
  3799. "value": [
  3800. 1,
  3801. 1
  3802. ]
  3803. },
  3804. "arrow": "arrowHead",
  3805. "arrowType": "diamond-black-large",
  3806. "$linkDecoratorInfo": {
  3807. "type": "map<string,double>",
  3808. "value": {
  3809. "xratio": -1,
  3810. "yoffset": -10
  3811. }
  3812. }
  3813. },
  3814. "297": {
  3815. "segments": {
  3816. "type": "string",
  3817. "value": "m0,0 l-10,4 l10,4 z"
  3818. },
  3819. "style": {
  3820. "type": "map<string,string>",
  3821. "value": {
  3822. "stroke": "#000000",
  3823. "fill": "#000000",
  3824. "opacity": 0,
  3825. "stroke-width": 1
  3826. }
  3827. },
  3828. "mapper": {
  3829. "type": "code",
  3830. "value": ""
  3831. },
  3832. "parser": {
  3833. "type": "code",
  3834. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3835. },
  3836. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3837. "position": {
  3838. "type": "list<double>",
  3839. "value": [
  3840. "0;-42.864088636539236,0%",
  3841. "0;35.203638515058856,0%"
  3842. ]
  3843. },
  3844. "orientation": {
  3845. "type": "double",
  3846. "value": "0;-43.53119928561419"
  3847. },
  3848. "scale": {
  3849. "type": "list<double>",
  3850. "value": [
  3851. 1,
  3852. 1
  3853. ]
  3854. },
  3855. "arrow": "arrowHead",
  3856. "arrowType": "triangle-black",
  3857. "$linkDecoratorInfo": {
  3858. "type": "map<string,double>",
  3859. "value": {
  3860. "xratio": -1,
  3861. "yoffset": -4
  3862. }
  3863. }
  3864. },
  3865. "298": {
  3866. "segments": {
  3867. "type": "string",
  3868. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  3869. },
  3870. "style": {
  3871. "type": "map<string,string>",
  3872. "value": {
  3873. "stroke": "#000000",
  3874. "fill": "#ffffff",
  3875. "opacity": 0,
  3876. "stroke-width": 1
  3877. }
  3878. },
  3879. "mapper": {
  3880. "type": "code",
  3881. "value": ""
  3882. },
  3883. "parser": {
  3884. "type": "code",
  3885. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3886. },
  3887. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3888. "position": {
  3889. "type": "list<double>",
  3890. "value": [
  3891. "0;-46.996585408027386,0%",
  3892. "0;30.853641913492368,0%"
  3893. ]
  3894. },
  3895. "orientation": {
  3896. "type": "double",
  3897. "value": "0;-43.53119928561419"
  3898. },
  3899. "scale": {
  3900. "type": "list<double>",
  3901. "value": [
  3902. 1,
  3903. 1
  3904. ]
  3905. },
  3906. "arrow": "arrowHead",
  3907. "arrowType": "diamond-white-large",
  3908. "$linkDecoratorInfo": {
  3909. "type": "map<string,double>",
  3910. "value": {
  3911. "xratio": -1,
  3912. "yoffset": -10
  3913. }
  3914. }
  3915. }
  3916. },
  3917. "edges": []
  3918. }
  3919. },
  3920. "$asuri": {
  3921. "type": "string",
  3922. "value": "/Formalisms/LCA-new/LCA/parent/14.instance"
  3923. },
  3924. "$segments": {
  3925. "type": "map<string,list<string>>",
  3926. "value": {
  3927. "/Formalisms/LCA-new/LCA.defaultIcons/NodeIcon/2.instance--/Formalisms/LCA-new/LCA.defaultIcons/parentLink/14.instance": "M583,208L623.1090907888805,169.8963637505635",
  3928. "/Formalisms/LCA-new/LCA.defaultIcons/parentLink/14.instance--/Formalisms/LCA-new/LCA.defaultIcons/NodeIcon/1.instance": "M623.0544462660473,169.94827604725512L662.9998017731028,132.0001883155522"
  3929. }
  3930. },
  3931. "$type": "/Formalisms/LCA-new/LCA.defaultIcons/parentLink"
  3932. },
  3933. "15": {
  3934. "typename": {
  3935. "type": "string",
  3936. "value": "NodeIcon"
  3937. },
  3938. "position": {
  3939. "type": "list<double>",
  3940. "value": [
  3941. 879,
  3942. 370
  3943. ]
  3944. },
  3945. "orientation": {
  3946. "type": "double",
  3947. "value": 0
  3948. },
  3949. "scale": {
  3950. "type": "list<double>",
  3951. "value": [
  3952. 1,
  3953. 1
  3954. ]
  3955. },
  3956. "mapper": {
  3957. "type": "code",
  3958. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  3959. },
  3960. "parser": {
  3961. "type": "code",
  3962. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3963. },
  3964. "$contents": {
  3965. "type": "map<string,*>",
  3966. "value": {
  3967. "nodes": {
  3968. "1": {
  3969. "r": {
  3970. "type": "double",
  3971. "value": 30
  3972. },
  3973. "style": {
  3974. "type": "map<string,string>",
  3975. "value": {
  3976. "fill": "#FFFFFF",
  3977. "stroke": "#000000",
  3978. "fill-opacity": 0.75,
  3979. "font-size": "20px",
  3980. "stroke-width": 5
  3981. }
  3982. },
  3983. "mapper": {
  3984. "type": "code",
  3985. "value": "if(getAttr('highlight')!='no'){\n({style:{\"fill\": getAttr('highlight'),\"stroke\": \"#000000\",\"fill-opacity\": 0.75,\"font-size\": \"20px\",\"stroke-width\": 5}});\n} else if(getAttr('input')=='first' ||getAttr('input')=='second' || getAttr('input')=='true'){\n({style:{\"fill\": \"#C0C0C0\",\"stroke\": \"#000000\",\"fill-opacity\": 0.75,\"font-size\": \"20px\",\"stroke-width\": 5}});\n} else {\n({style:{\"fill\": \"#FFFFFF\",\"stroke\": \"#000000\",\"fill-opacity\": 0.75,\"font-size\": \"20px\",\"stroke-width\": 5}});\n}\n"
  3986. },
  3987. "parser": {
  3988. "type": "code",
  3989. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3990. },
  3991. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  3992. "position": {
  3993. "type": "list<double>",
  3994. "value": [
  3995. 5,
  3996. 4
  3997. ]
  3998. },
  3999. "orientation": {
  4000. "type": "double",
  4001. "value": 0
  4002. },
  4003. "scale": {
  4004. "type": "list<double>",
  4005. "value": [
  4006. 1,
  4007. 1
  4008. ]
  4009. }
  4010. },
  4011. "3": {
  4012. "textContent": {
  4013. "type": "string",
  4014. "value": "C"
  4015. },
  4016. "style": {
  4017. "type": "map<string,string>",
  4018. "value": {
  4019. "stroke": "#000000",
  4020. "fill": "#000000",
  4021. "fill-opacity": 0.75,
  4022. "font-size": "20px",
  4023. "stroke-width": 1,
  4024. "arrow-start": "none",
  4025. "arrow-end": "none",
  4026. "text-anchor": "middle"
  4027. }
  4028. },
  4029. "mapper": {
  4030. "type": "code",
  4031. "value": "({'textContent':getAttr('id')})"
  4032. },
  4033. "parser": {
  4034. "type": "code",
  4035. "value": "({'id':getAttr('textContent')})"
  4036. },
  4037. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  4038. "position": {
  4039. "type": "list<double>",
  4040. "value": [
  4041. 35,
  4042. 23
  4043. ]
  4044. },
  4045. "orientation": {
  4046. "type": "double",
  4047. "value": 0
  4048. },
  4049. "scale": {
  4050. "type": "list<double>",
  4051. "value": [
  4052. 1,
  4053. 1
  4054. ]
  4055. }
  4056. },
  4057. "8": {
  4058. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  4059. "position": {
  4060. "type": "list<double>",
  4061. "value": [
  4062. 24.096510792336232,
  4063. 19.345311948423017
  4064. ]
  4065. },
  4066. "orientation": {
  4067. "type": "double",
  4068. "value": 0
  4069. },
  4070. "scale": {
  4071. "type": "list<double>",
  4072. "value": [
  4073. 1,
  4074. 1
  4075. ]
  4076. },
  4077. "link-style": {
  4078. "type": "map<string,string>",
  4079. "value": {
  4080. "stroke": "#00ffff",
  4081. "stroke-dasharray": "",
  4082. "stroke-opacity": 0.1,
  4083. "stroke-width": 1
  4084. }
  4085. }
  4086. }
  4087. },
  4088. "edges": [
  4089. {
  4090. "src": "1",
  4091. "dest": "8"
  4092. },
  4093. {
  4094. "src": "8",
  4095. "dest": "3"
  4096. }
  4097. ]
  4098. }
  4099. },
  4100. "$asuri": {
  4101. "type": "string",
  4102. "value": "/Formalisms/LCA-new/LCA/Node/15.instance"
  4103. },
  4104. "$type": "/Formalisms/LCA-new/LCA.defaultIcons/NodeIcon"
  4105. },
  4106. "16": {
  4107. "link-style": {
  4108. "type": "map<string,string>",
  4109. "value": {
  4110. "stroke": "#000000",
  4111. "stroke-dasharray": "",
  4112. "stroke-opacity": 1,
  4113. "stroke-width": 2
  4114. }
  4115. },
  4116. "arrowHead": {
  4117. "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)",
  4118. "value": "custom"
  4119. },
  4120. "arrowTail": {
  4121. "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)",
  4122. "value": "arrow-black"
  4123. },
  4124. "typename": {
  4125. "type": "string",
  4126. "value": "parentLink"
  4127. },
  4128. "position": {
  4129. "type": "list<double>",
  4130. "value": [
  4131. 877,
  4132. 319.5
  4133. ]
  4134. },
  4135. "orientation": {
  4136. "type": "double",
  4137. "value": 0
  4138. },
  4139. "scale": {
  4140. "type": "list<double>",
  4141. "value": [
  4142. 1,
  4143. 1
  4144. ]
  4145. },
  4146. "mapper": {
  4147. "type": "code",
  4148. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  4149. },
  4150. "parser": {
  4151. "type": "code",
  4152. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4153. },
  4154. "$contents": {
  4155. "type": "map<string,*>",
  4156. "value": {
  4157. "nodes": {
  4158. "267": {
  4159. "segments": {
  4160. "type": "string",
  4161. "value": "m0,0 l10,4 l-10,4 l3,-4 z"
  4162. },
  4163. "style": {
  4164. "type": "map<string,string>",
  4165. "value": {
  4166. "stroke": "#000000",
  4167. "fill": "#000000",
  4168. "opacity": 1,
  4169. "stroke-width": 1
  4170. }
  4171. },
  4172. "mapper": {
  4173. "type": "code",
  4174. "value": ""
  4175. },
  4176. "parser": {
  4177. "type": "code",
  4178. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4179. },
  4180. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4181. "position": {
  4182. "type": "list<double>",
  4183. "value": [
  4184. "0;-24.785096870897974,-32.31438532915111%",
  4185. "0;-60.206538537667086,-94.63498560679948%"
  4186. ]
  4187. },
  4188. "orientation": {
  4189. "type": "double",
  4190. "value": "0;-108.85315876441915"
  4191. },
  4192. "scale": {
  4193. "type": "list<double>",
  4194. "value": [
  4195. 1,
  4196. 1
  4197. ]
  4198. },
  4199. "arrow": "arrowTail",
  4200. "arrowType": "arrow-black",
  4201. "$linkDecoratorInfo": {
  4202. "type": "map<string,double>",
  4203. "value": {
  4204. "xratio": 1,
  4205. "yoffset": -4
  4206. }
  4207. }
  4208. },
  4209. "268": {
  4210. "segments": {
  4211. "type": "string",
  4212. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  4213. },
  4214. "style": {
  4215. "type": "map<string,string>",
  4216. "value": {
  4217. "stroke": "#000000",
  4218. "fill": "#000000",
  4219. "opacity": 0,
  4220. "stroke-width": 1
  4221. }
  4222. },
  4223. "mapper": {
  4224. "type": "code",
  4225. "value": ""
  4226. },
  4227. "parser": {
  4228. "type": "code",
  4229. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4230. },
  4231. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4232. "position": {
  4233. "type": "list<double>",
  4234. "value": [
  4235. "0;-30.463196007305896,-32.31438532915111%",
  4236. "0;-58.26767541791804,-94.63498560679948%"
  4237. ]
  4238. },
  4239. "orientation": {
  4240. "type": "double",
  4241. "value": "0;-108.85315876441915"
  4242. },
  4243. "scale": {
  4244. "type": "list<double>",
  4245. "value": [
  4246. 1,
  4247. 1
  4248. ]
  4249. },
  4250. "arrow": "arrowTail",
  4251. "arrowType": "diamond-black-large",
  4252. "$linkDecoratorInfo": {
  4253. "type": "map<string,double>",
  4254. "value": {
  4255. "xratio": 1,
  4256. "yoffset": -10
  4257. }
  4258. }
  4259. },
  4260. "269": {
  4261. "r": {
  4262. "type": "double",
  4263. "value": 10
  4264. },
  4265. "style": {
  4266. "type": "map<string,string>",
  4267. "value": {
  4268. "stroke": "#000000",
  4269. "fill": "#000000",
  4270. "opacity": 0,
  4271. "stroke-width": 1
  4272. }
  4273. },
  4274. "mapper": {
  4275. "type": "code",
  4276. "value": ""
  4277. },
  4278. "parser": {
  4279. "type": "code",
  4280. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4281. },
  4282. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  4283. "position": {
  4284. "type": "list<double>",
  4285. "value": [
  4286. "0;-30.463196007305896,-32.31438532915111%",
  4287. "0;-58.26767541791804,-94.63498560679948%"
  4288. ]
  4289. },
  4290. "orientation": {
  4291. "type": "double",
  4292. "value": "0;-108.85315876441915"
  4293. },
  4294. "scale": {
  4295. "type": "list<double>",
  4296. "value": [
  4297. 1,
  4298. 1
  4299. ]
  4300. },
  4301. "arrow": "arrowTail",
  4302. "arrowType": "circle-black-large",
  4303. "$linkDecoratorInfo": {
  4304. "type": "map<string,double>",
  4305. "value": {
  4306. "xratio": 1,
  4307. "yoffset": -10
  4308. }
  4309. }
  4310. },
  4311. "270": {
  4312. "r": {
  4313. "type": "double",
  4314. "value": 10
  4315. },
  4316. "style": {
  4317. "type": "map<string,string>",
  4318. "value": {
  4319. "stroke": "#000000",
  4320. "fill": "#ffffff",
  4321. "opacity": 0,
  4322. "stroke-width": 1
  4323. }
  4324. },
  4325. "mapper": {
  4326. "type": "code",
  4327. "value": ""
  4328. },
  4329. "parser": {
  4330. "type": "code",
  4331. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4332. },
  4333. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  4334. "position": {
  4335. "type": "list<double>",
  4336. "value": [
  4337. "0;-30.463196007305896,-32.31438532915111%",
  4338. "0;-58.26767541791804,-94.63498560679948%"
  4339. ]
  4340. },
  4341. "orientation": {
  4342. "type": "double",
  4343. "value": "0;-108.85315876441915"
  4344. },
  4345. "scale": {
  4346. "type": "list<double>",
  4347. "value": [
  4348. 1,
  4349. 1
  4350. ]
  4351. },
  4352. "arrow": "arrowTail",
  4353. "arrowType": "circle-white-large",
  4354. "$linkDecoratorInfo": {
  4355. "type": "map<string,double>",
  4356. "value": {
  4357. "xratio": 1,
  4358. "yoffset": -10
  4359. }
  4360. }
  4361. },
  4362. "271": {
  4363. "r": {
  4364. "type": "double",
  4365. "value": 5
  4366. },
  4367. "style": {
  4368. "type": "map<string,string>",
  4369. "value": {
  4370. "stroke": "#000000",
  4371. "fill": "#000000",
  4372. "opacity": 0,
  4373. "stroke-width": 1
  4374. }
  4375. },
  4376. "mapper": {
  4377. "type": "code",
  4378. "value": ""
  4379. },
  4380. "parser": {
  4381. "type": "code",
  4382. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4383. },
  4384. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  4385. "position": {
  4386. "type": "list<double>",
  4387. "value": [
  4388. "0;-25.73144672696594,-32.31438532915111%",
  4389. "0;-59.88339468437556,-94.63498560679948%"
  4390. ]
  4391. },
  4392. "orientation": {
  4393. "type": "double",
  4394. "value": "0;-108.85315876441915"
  4395. },
  4396. "scale": {
  4397. "type": "list<double>",
  4398. "value": [
  4399. 1,
  4400. 1
  4401. ]
  4402. },
  4403. "arrow": "arrowTail",
  4404. "arrowType": "circle-black",
  4405. "$linkDecoratorInfo": {
  4406. "type": "map<string,double>",
  4407. "value": {
  4408. "xratio": 1,
  4409. "yoffset": -5
  4410. }
  4411. }
  4412. },
  4413. "272": {
  4414. "segments": {
  4415. "type": "string",
  4416. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  4417. },
  4418. "style": {
  4419. "type": "map<string,string>",
  4420. "value": {
  4421. "stroke": "#000000",
  4422. "fill": "#000000",
  4423. "opacity": 0,
  4424. "stroke-width": 1
  4425. }
  4426. },
  4427. "mapper": {
  4428. "type": "code",
  4429. "value": ""
  4430. },
  4431. "parser": {
  4432. "type": "code",
  4433. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4434. },
  4435. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4436. "position": {
  4437. "type": "list<double>",
  4438. "value": [
  4439. "0;-25.73144672696594,-32.31438532915111%",
  4440. "0;-59.88339468437556,-94.63498560679948%"
  4441. ]
  4442. },
  4443. "orientation": {
  4444. "type": "double",
  4445. "value": "0;-108.85315876441915"
  4446. },
  4447. "scale": {
  4448. "type": "list<double>",
  4449. "value": [
  4450. 1,
  4451. 1
  4452. ]
  4453. },
  4454. "arrow": "arrowTail",
  4455. "arrowType": "diamond-black",
  4456. "$linkDecoratorInfo": {
  4457. "type": "map<string,double>",
  4458. "value": {
  4459. "xratio": 1,
  4460. "yoffset": -5
  4461. }
  4462. }
  4463. },
  4464. "273": {
  4465. "segments": {
  4466. "type": "string",
  4467. "value": "m0,0 l20,10 l-20,10 z"
  4468. },
  4469. "style": {
  4470. "type": "map<string,string>",
  4471. "value": {
  4472. "stroke": "#000000",
  4473. "fill": "#000000",
  4474. "opacity": 0,
  4475. "stroke-width": 1
  4476. }
  4477. },
  4478. "mapper": {
  4479. "type": "code",
  4480. "value": ""
  4481. },
  4482. "parser": {
  4483. "type": "code",
  4484. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4485. },
  4486. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4487. "position": {
  4488. "type": "list<double>",
  4489. "value": [
  4490. "0;-30.463196007305896,-32.31438532915111%",
  4491. "0;-58.26767541791804,-94.63498560679948%"
  4492. ]
  4493. },
  4494. "orientation": {
  4495. "type": "double",
  4496. "value": "0;-108.85315876441915"
  4497. },
  4498. "scale": {
  4499. "type": "list<double>",
  4500. "value": [
  4501. 1,
  4502. 1
  4503. ]
  4504. },
  4505. "arrow": "arrowTail",
  4506. "arrowType": "triangle-black-large",
  4507. "$linkDecoratorInfo": {
  4508. "type": "map<string,double>",
  4509. "value": {
  4510. "xratio": 1,
  4511. "yoffset": -10
  4512. }
  4513. }
  4514. },
  4515. "274": {
  4516. "segments": {
  4517. "type": "string",
  4518. "value": "m0,0 l10,4 l-10,4 z"
  4519. },
  4520. "style": {
  4521. "type": "map<string,string>",
  4522. "value": {
  4523. "stroke": "#000000",
  4524. "fill": "#000000",
  4525. "opacity": 0,
  4526. "stroke-width": 1
  4527. }
  4528. },
  4529. "mapper": {
  4530. "type": "code",
  4531. "value": ""
  4532. },
  4533. "parser": {
  4534. "type": "code",
  4535. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4536. },
  4537. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4538. "position": {
  4539. "type": "list<double>",
  4540. "value": [
  4541. "0;-24.785096870897974,-32.31438532915111%",
  4542. "0;-60.206538537667086,-94.63498560679948%"
  4543. ]
  4544. },
  4545. "orientation": {
  4546. "type": "double",
  4547. "value": "0;-108.85315876441915"
  4548. },
  4549. "scale": {
  4550. "type": "list<double>",
  4551. "value": [
  4552. 1,
  4553. 1
  4554. ]
  4555. },
  4556. "arrow": "arrowTail",
  4557. "arrowType": "triangle-black",
  4558. "$linkDecoratorInfo": {
  4559. "type": "map<string,double>",
  4560. "value": {
  4561. "xratio": 1,
  4562. "yoffset": -4
  4563. }
  4564. }
  4565. },
  4566. "275": {
  4567. "segments": {
  4568. "type": "string",
  4569. "value": "m0,0 l20,8 l-20,8 l6,-8 z"
  4570. },
  4571. "style": {
  4572. "type": "map<string,string>",
  4573. "value": {
  4574. "stroke": "#000000",
  4575. "fill": "#000000",
  4576. "opacity": 0,
  4577. "stroke-width": 1
  4578. }
  4579. },
  4580. "mapper": {
  4581. "type": "code",
  4582. "value": ""
  4583. },
  4584. "parser": {
  4585. "type": "code",
  4586. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4587. },
  4588. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4589. "position": {
  4590. "type": "list<double>",
  4591. "value": [
  4592. "0;-28.57049629516996,-32.31438532915111%",
  4593. "0;-58.91396312450104,-94.63498560679948%"
  4594. ]
  4595. },
  4596. "orientation": {
  4597. "type": "double",
  4598. "value": "0;-108.85315876441915"
  4599. },
  4600. "scale": {
  4601. "type": "list<double>",
  4602. "value": [
  4603. 1,
  4604. 1
  4605. ]
  4606. },
  4607. "arrow": "arrowTail",
  4608. "arrowType": "arrow-black-large",
  4609. "$linkDecoratorInfo": {
  4610. "type": "map<string,double>",
  4611. "value": {
  4612. "xratio": 1,
  4613. "yoffset": -8
  4614. }
  4615. }
  4616. },
  4617. "276": {
  4618. "segments": {
  4619. "type": "string",
  4620. "value": "m0,0 l20,10 l-20,10 z"
  4621. },
  4622. "style": {
  4623. "type": "map<string,string>",
  4624. "value": {
  4625. "stroke": "#000000",
  4626. "fill": "#ffffff",
  4627. "opacity": 0,
  4628. "stroke-width": 1
  4629. }
  4630. },
  4631. "mapper": {
  4632. "type": "code",
  4633. "value": ""
  4634. },
  4635. "parser": {
  4636. "type": "code",
  4637. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4638. },
  4639. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4640. "position": {
  4641. "type": "list<double>",
  4642. "value": [
  4643. "0;-30.463196007305896,-32.31438532915111%",
  4644. "0;-58.26767541791804,-94.63498560679948%"
  4645. ]
  4646. },
  4647. "orientation": {
  4648. "type": "double",
  4649. "value": "0;-108.85315876441915"
  4650. },
  4651. "scale": {
  4652. "type": "list<double>",
  4653. "value": [
  4654. 1,
  4655. 1
  4656. ]
  4657. },
  4658. "arrow": "arrowTail",
  4659. "arrowType": "triangle-white-large",
  4660. "$linkDecoratorInfo": {
  4661. "type": "map<string,double>",
  4662. "value": {
  4663. "xratio": 1,
  4664. "yoffset": -10
  4665. }
  4666. }
  4667. },
  4668. "277": {
  4669. "segments": {
  4670. "type": "string",
  4671. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  4672. },
  4673. "style": {
  4674. "type": "map<string,string>",
  4675. "value": {
  4676. "stroke": "#000000",
  4677. "fill": "#ffffff",
  4678. "opacity": 0,
  4679. "stroke-width": 1
  4680. }
  4681. },
  4682. "mapper": {
  4683. "type": "code",
  4684. "value": ""
  4685. },
  4686. "parser": {
  4687. "type": "code",
  4688. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4689. },
  4690. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4691. "position": {
  4692. "type": "list<double>",
  4693. "value": [
  4694. "0;-25.73144672696594,-32.31438532915111%",
  4695. "0;-59.88339468437556,-94.63498560679948%"
  4696. ]
  4697. },
  4698. "orientation": {
  4699. "type": "double",
  4700. "value": "0;-108.85315876441915"
  4701. },
  4702. "scale": {
  4703. "type": "list<double>",
  4704. "value": [
  4705. 1,
  4706. 1
  4707. ]
  4708. },
  4709. "arrow": "arrowTail",
  4710. "arrowType": "diamond-white",
  4711. "$linkDecoratorInfo": {
  4712. "type": "map<string,double>",
  4713. "value": {
  4714. "xratio": 1,
  4715. "yoffset": -5
  4716. }
  4717. }
  4718. },
  4719. "278": {
  4720. "segments": {
  4721. "type": "string",
  4722. "value": "m0,0 l20,8 l-20,8"
  4723. },
  4724. "style": {
  4725. "type": "map<string,string>",
  4726. "value": {
  4727. "stroke": "#000000",
  4728. "fill": "#000000",
  4729. "fill-opacity": 0,
  4730. "stroke-width": 1,
  4731. "opacity": 0
  4732. }
  4733. },
  4734. "mapper": {
  4735. "type": "code",
  4736. "value": ""
  4737. },
  4738. "parser": {
  4739. "type": "code",
  4740. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4741. },
  4742. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4743. "position": {
  4744. "type": "list<double>",
  4745. "value": [
  4746. "0;-28.57049629516996,-32.31438532915111%",
  4747. "0;-58.91396312450104,-94.63498560679948%"
  4748. ]
  4749. },
  4750. "orientation": {
  4751. "type": "double",
  4752. "value": "0;-108.85315876441915"
  4753. },
  4754. "scale": {
  4755. "type": "list<double>",
  4756. "value": [
  4757. 1,
  4758. 1
  4759. ]
  4760. },
  4761. "arrow": "arrowTail",
  4762. "arrowType": "arrow-empty-large",
  4763. "$linkDecoratorInfo": {
  4764. "type": "map<string,double>",
  4765. "value": {
  4766. "xratio": 1,
  4767. "yoffset": -8
  4768. }
  4769. }
  4770. },
  4771. "279": {
  4772. "r": {
  4773. "type": "double",
  4774. "value": 5
  4775. },
  4776. "style": {
  4777. "type": "map<string,string>",
  4778. "value": {
  4779. "stroke": "#000000",
  4780. "fill": "#ffffff",
  4781. "opacity": 0,
  4782. "stroke-width": 1
  4783. }
  4784. },
  4785. "mapper": {
  4786. "type": "code",
  4787. "value": ""
  4788. },
  4789. "parser": {
  4790. "type": "code",
  4791. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4792. },
  4793. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  4794. "position": {
  4795. "type": "list<double>",
  4796. "value": [
  4797. "0;-25.73144672696594,-32.31438532915111%",
  4798. "0;-59.88339468437556,-94.63498560679948%"
  4799. ]
  4800. },
  4801. "orientation": {
  4802. "type": "double",
  4803. "value": "0;-108.85315876441915"
  4804. },
  4805. "scale": {
  4806. "type": "list<double>",
  4807. "value": [
  4808. 1,
  4809. 1
  4810. ]
  4811. },
  4812. "arrow": "arrowTail",
  4813. "arrowType": "circle-white",
  4814. "$linkDecoratorInfo": {
  4815. "type": "map<string,double>",
  4816. "value": {
  4817. "xratio": 1,
  4818. "yoffset": -5
  4819. }
  4820. }
  4821. },
  4822. "280": {
  4823. "segments": {
  4824. "type": "string",
  4825. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  4826. },
  4827. "style": {
  4828. "type": "map<string,string>",
  4829. "value": {
  4830. "stroke": "#000000",
  4831. "fill": "#ffffff",
  4832. "opacity": 0,
  4833. "stroke-width": 1
  4834. }
  4835. },
  4836. "mapper": {
  4837. "type": "code",
  4838. "value": ""
  4839. },
  4840. "parser": {
  4841. "type": "code",
  4842. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4843. },
  4844. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4845. "position": {
  4846. "type": "list<double>",
  4847. "value": [
  4848. "0;-30.463196007305896,-32.31438532915111%",
  4849. "0;-58.26767541791804,-94.63498560679948%"
  4850. ]
  4851. },
  4852. "orientation": {
  4853. "type": "double",
  4854. "value": "0;-108.85315876441915"
  4855. },
  4856. "scale": {
  4857. "type": "list<double>",
  4858. "value": [
  4859. 1,
  4860. 1
  4861. ]
  4862. },
  4863. "arrow": "arrowTail",
  4864. "arrowType": "diamond-white-large",
  4865. "$linkDecoratorInfo": {
  4866. "type": "map<string,double>",
  4867. "value": {
  4868. "xratio": 1,
  4869. "yoffset": -10
  4870. }
  4871. }
  4872. },
  4873. "281": {
  4874. "segments": {
  4875. "type": "string",
  4876. "value": "m0,0 l10,4 l-10,4"
  4877. },
  4878. "style": {
  4879. "type": "map<string,string>",
  4880. "value": {
  4881. "stroke": "#000000",
  4882. "fill": "#000000",
  4883. "fill-opacity": 0,
  4884. "stroke-width": 1,
  4885. "opacity": 0
  4886. }
  4887. },
  4888. "mapper": {
  4889. "type": "code",
  4890. "value": ""
  4891. },
  4892. "parser": {
  4893. "type": "code",
  4894. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4895. },
  4896. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4897. "position": {
  4898. "type": "list<double>",
  4899. "value": [
  4900. "0;-24.785096870897974,-32.31438532915111%",
  4901. "0;-60.206538537667086,-94.63498560679948%"
  4902. ]
  4903. },
  4904. "orientation": {
  4905. "type": "double",
  4906. "value": "0;-108.85315876441915"
  4907. },
  4908. "scale": {
  4909. "type": "list<double>",
  4910. "value": [
  4911. 1,
  4912. 1
  4913. ]
  4914. },
  4915. "arrow": "arrowTail",
  4916. "arrowType": "arrow-empty",
  4917. "$linkDecoratorInfo": {
  4918. "type": "map<string,double>",
  4919. "value": {
  4920. "xratio": 1,
  4921. "yoffset": -4
  4922. }
  4923. }
  4924. },
  4925. "282": {
  4926. "segments": {
  4927. "type": "string",
  4928. "value": "m0,0 l10,5 l-10,5 z"
  4929. },
  4930. "style": {
  4931. "type": "map<string,string>",
  4932. "value": {
  4933. "stroke": "#000000",
  4934. "fill": "#ffffff",
  4935. "opacity": 0,
  4936. "stroke-width": 1
  4937. }
  4938. },
  4939. "mapper": {
  4940. "type": "code",
  4941. "value": ""
  4942. },
  4943. "parser": {
  4944. "type": "code",
  4945. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4946. },
  4947. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4948. "position": {
  4949. "type": "list<double>",
  4950. "value": [
  4951. "0;-25.73144672696594,-32.31438532915111%",
  4952. "0;-59.88339468437556,-94.63498560679948%"
  4953. ]
  4954. },
  4955. "orientation": {
  4956. "type": "double",
  4957. "value": "0;-108.85315876441915"
  4958. },
  4959. "scale": {
  4960. "type": "list<double>",
  4961. "value": [
  4962. 1,
  4963. 1
  4964. ]
  4965. },
  4966. "arrow": "arrowTail",
  4967. "arrowType": "triangle-white",
  4968. "$linkDecoratorInfo": {
  4969. "type": "map<string,double>",
  4970. "value": {
  4971. "xratio": 1,
  4972. "yoffset": -5
  4973. }
  4974. }
  4975. },
  4976. "283": {
  4977. "segments": {
  4978. "type": "string",
  4979. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  4980. },
  4981. "style": {
  4982. "type": "map<string,string>",
  4983. "value": {
  4984. "stroke": "#000000",
  4985. "fill": "#ffffff",
  4986. "opacity": 0,
  4987. "stroke-width": 1
  4988. }
  4989. },
  4990. "mapper": {
  4991. "type": "code",
  4992. "value": ""
  4993. },
  4994. "parser": {
  4995. "type": "code",
  4996. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4997. },
  4998. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4999. "position": {
  5000. "type": "list<double>",
  5001. "value": [
  5002. "0;16.268250719660045,0%",
  5003. "0;63.115719266457575,0%"
  5004. ]
  5005. },
  5006. "orientation": {
  5007. "type": "double",
  5008. "value": "0;-108.8531587644191"
  5009. },
  5010. "scale": {
  5011. "type": "list<double>",
  5012. "value": [
  5013. 1,
  5014. 1
  5015. ]
  5016. },
  5017. "arrow": "arrowHead",
  5018. "arrowType": "diamond-white",
  5019. "$linkDecoratorInfo": {
  5020. "type": "map<string,double>",
  5021. "value": {
  5022. "xratio": -1,
  5023. "yoffset": -5
  5024. }
  5025. }
  5026. },
  5027. "284": {
  5028. "segments": {
  5029. "type": "string",
  5030. "value": "m0,0 l-10,5 l10,5 z"
  5031. },
  5032. "style": {
  5033. "type": "map<string,string>",
  5034. "value": {
  5035. "stroke": "#000000",
  5036. "fill": "#ffffff",
  5037. "opacity": 0,
  5038. "stroke-width": 1
  5039. }
  5040. },
  5041. "mapper": {
  5042. "type": "code",
  5043. "value": ""
  5044. },
  5045. "parser": {
  5046. "type": "code",
  5047. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5048. },
  5049. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5050. "position": {
  5051. "type": "list<double>",
  5052. "value": [
  5053. "0;16.268250719660045,0%",
  5054. "0;63.115719266457575,0%"
  5055. ]
  5056. },
  5057. "orientation": {
  5058. "type": "double",
  5059. "value": "0;-108.8531587644191"
  5060. },
  5061. "scale": {
  5062. "type": "list<double>",
  5063. "value": [
  5064. 1,
  5065. 1
  5066. ]
  5067. },
  5068. "arrow": "arrowHead",
  5069. "arrowType": "triangle-white",
  5070. "$linkDecoratorInfo": {
  5071. "type": "map<string,double>",
  5072. "value": {
  5073. "xratio": -1,
  5074. "yoffset": -5
  5075. }
  5076. }
  5077. },
  5078. "285": {
  5079. "segments": {
  5080. "type": "string",
  5081. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  5082. },
  5083. "style": {
  5084. "type": "map<string,string>",
  5085. "value": {
  5086. "stroke": "#000000",
  5087. "fill": "#000000",
  5088. "opacity": 0,
  5089. "stroke-width": 1
  5090. }
  5091. },
  5092. "mapper": {
  5093. "type": "code",
  5094. "value": ""
  5095. },
  5096. "parser": {
  5097. "type": "code",
  5098. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5099. },
  5100. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5101. "position": {
  5102. "type": "list<double>",
  5103. "value": [
  5104. "0;16.268250719660045,0%",
  5105. "0;63.115719266457575,0%"
  5106. ]
  5107. },
  5108. "orientation": {
  5109. "type": "double",
  5110. "value": "0;-108.8531587644191"
  5111. },
  5112. "scale": {
  5113. "type": "list<double>",
  5114. "value": [
  5115. 1,
  5116. 1
  5117. ]
  5118. },
  5119. "arrow": "arrowHead",
  5120. "arrowType": "diamond-black",
  5121. "$linkDecoratorInfo": {
  5122. "type": "map<string,double>",
  5123. "value": {
  5124. "xratio": -1,
  5125. "yoffset": -5
  5126. }
  5127. }
  5128. },
  5129. "286": {
  5130. "r": {
  5131. "type": "double",
  5132. "value": 10
  5133. },
  5134. "style": {
  5135. "type": "map<string,string>",
  5136. "value": {
  5137. "stroke": "#000000",
  5138. "fill": "#000000",
  5139. "opacity": 0,
  5140. "stroke-width": 1
  5141. }
  5142. },
  5143. "mapper": {
  5144. "type": "code",
  5145. "value": ""
  5146. },
  5147. "parser": {
  5148. "type": "code",
  5149. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5150. },
  5151. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  5152. "position": {
  5153. "type": "list<double>",
  5154. "value": [
  5155. "0;11.53650143932009,0%",
  5156. "0;64.73143853291509,0%"
  5157. ]
  5158. },
  5159. "orientation": {
  5160. "type": "double",
  5161. "value": "0;-108.8531587644191"
  5162. },
  5163. "scale": {
  5164. "type": "list<double>",
  5165. "value": [
  5166. 1,
  5167. 1
  5168. ]
  5169. },
  5170. "arrow": "arrowHead",
  5171. "arrowType": "circle-black-large",
  5172. "$linkDecoratorInfo": {
  5173. "type": "map<string,double>",
  5174. "value": {
  5175. "xratio": -1,
  5176. "yoffset": -10
  5177. }
  5178. }
  5179. },
  5180. "287": {
  5181. "segments": {
  5182. "type": "string",
  5183. "value": "m0,0 l-20,8 l20,8 l-6,-8 z"
  5184. },
  5185. "style": {
  5186. "type": "map<string,string>",
  5187. "value": {
  5188. "stroke": "#000000",
  5189. "fill": "#000000",
  5190. "opacity": 0,
  5191. "stroke-width": 1
  5192. }
  5193. },
  5194. "mapper": {
  5195. "type": "code",
  5196. "value": ""
  5197. },
  5198. "parser": {
  5199. "type": "code",
  5200. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5201. },
  5202. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5203. "position": {
  5204. "type": "list<double>",
  5205. "value": [
  5206. "0;13.429201151456027,0%",
  5207. "0;64.0851508263321,0%"
  5208. ]
  5209. },
  5210. "orientation": {
  5211. "type": "double",
  5212. "value": "0;-108.8531587644191"
  5213. },
  5214. "scale": {
  5215. "type": "list<double>",
  5216. "value": [
  5217. 1,
  5218. 1
  5219. ]
  5220. },
  5221. "arrow": "arrowHead",
  5222. "arrowType": "arrow-black-large",
  5223. "$linkDecoratorInfo": {
  5224. "type": "map<string,double>",
  5225. "value": {
  5226. "xratio": -1,
  5227. "yoffset": -8
  5228. }
  5229. }
  5230. },
  5231. "288": {
  5232. "segments": {
  5233. "type": "string",
  5234. "value": "m0,0 l-10,4 l10,4 l-3,-4 z"
  5235. },
  5236. "style": {
  5237. "type": "map<string,string>",
  5238. "value": {
  5239. "stroke": "#000000",
  5240. "fill": "#000000",
  5241. "opacity": 0,
  5242. "stroke-width": 1
  5243. }
  5244. },
  5245. "mapper": {
  5246. "type": "code",
  5247. "value": ""
  5248. },
  5249. "parser": {
  5250. "type": "code",
  5251. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5252. },
  5253. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5254. "position": {
  5255. "type": "list<double>",
  5256. "value": [
  5257. "0;17.214600575728014,0%",
  5258. "0;62.79257541316605,0%"
  5259. ]
  5260. },
  5261. "orientation": {
  5262. "type": "double",
  5263. "value": "0;-108.8531587644191"
  5264. },
  5265. "scale": {
  5266. "type": "list<double>",
  5267. "value": [
  5268. 1,
  5269. 1
  5270. ]
  5271. },
  5272. "arrow": "arrowHead",
  5273. "arrowType": "arrow-black",
  5274. "$linkDecoratorInfo": {
  5275. "type": "map<string,double>",
  5276. "value": {
  5277. "xratio": -1,
  5278. "yoffset": -4
  5279. }
  5280. }
  5281. },
  5282. "289": {
  5283. "segments": {
  5284. "type": "string",
  5285. "value": "m0,0 l-20,10 l20,10 z"
  5286. },
  5287. "style": {
  5288. "type": "map<string,string>",
  5289. "value": {
  5290. "stroke": "#000000",
  5291. "fill": "#ffffff",
  5292. "opacity": 0,
  5293. "stroke-width": 1
  5294. }
  5295. },
  5296. "mapper": {
  5297. "type": "code",
  5298. "value": ""
  5299. },
  5300. "parser": {
  5301. "type": "code",
  5302. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5303. },
  5304. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5305. "position": {
  5306. "type": "list<double>",
  5307. "value": [
  5308. "0;11.53650143932009,0%",
  5309. "0;64.73143853291509,0%"
  5310. ]
  5311. },
  5312. "orientation": {
  5313. "type": "double",
  5314. "value": "0;-108.8531587644191"
  5315. },
  5316. "scale": {
  5317. "type": "list<double>",
  5318. "value": [
  5319. 1,
  5320. 1
  5321. ]
  5322. },
  5323. "arrow": "arrowHead",
  5324. "arrowType": "triangle-white-large",
  5325. "$linkDecoratorInfo": {
  5326. "type": "map<string,double>",
  5327. "value": {
  5328. "xratio": -1,
  5329. "yoffset": -10
  5330. }
  5331. }
  5332. },
  5333. "290": {
  5334. "segments": {
  5335. "type": "string",
  5336. "value": "m0,0 l-20,10 l20,10 z"
  5337. },
  5338. "style": {
  5339. "type": "map<string,string>",
  5340. "value": {
  5341. "stroke": "#000000",
  5342. "fill": "#000000",
  5343. "opacity": 0,
  5344. "stroke-width": 1
  5345. }
  5346. },
  5347. "mapper": {
  5348. "type": "code",
  5349. "value": ""
  5350. },
  5351. "parser": {
  5352. "type": "code",
  5353. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5354. },
  5355. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5356. "position": {
  5357. "type": "list<double>",
  5358. "value": [
  5359. "0;11.53650143932009,0%",
  5360. "0;64.73143853291509,0%"
  5361. ]
  5362. },
  5363. "orientation": {
  5364. "type": "double",
  5365. "value": "0;-108.8531587644191"
  5366. },
  5367. "scale": {
  5368. "type": "list<double>",
  5369. "value": [
  5370. 1,
  5371. 1
  5372. ]
  5373. },
  5374. "arrow": "arrowHead",
  5375. "arrowType": "triangle-black-large",
  5376. "$linkDecoratorInfo": {
  5377. "type": "map<string,double>",
  5378. "value": {
  5379. "xratio": -1,
  5380. "yoffset": -10
  5381. }
  5382. }
  5383. },
  5384. "291": {
  5385. "r": {
  5386. "type": "double",
  5387. "value": 5
  5388. },
  5389. "style": {
  5390. "type": "map<string,string>",
  5391. "value": {
  5392. "stroke": "#000000",
  5393. "fill": "#000000",
  5394. "opacity": 0,
  5395. "stroke-width": 1
  5396. }
  5397. },
  5398. "mapper": {
  5399. "type": "code",
  5400. "value": ""
  5401. },
  5402. "parser": {
  5403. "type": "code",
  5404. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5405. },
  5406. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  5407. "position": {
  5408. "type": "list<double>",
  5409. "value": [
  5410. "0;16.268250719660045,0%",
  5411. "0;63.115719266457575,0%"
  5412. ]
  5413. },
  5414. "orientation": {
  5415. "type": "double",
  5416. "value": "0;-108.8531587644191"
  5417. },
  5418. "scale": {
  5419. "type": "list<double>",
  5420. "value": [
  5421. 1,
  5422. 1
  5423. ]
  5424. },
  5425. "arrow": "arrowHead",
  5426. "arrowType": "circle-black",
  5427. "$linkDecoratorInfo": {
  5428. "type": "map<string,double>",
  5429. "value": {
  5430. "xratio": -1,
  5431. "yoffset": -5
  5432. }
  5433. }
  5434. },
  5435. "292": {
  5436. "r": {
  5437. "type": "double",
  5438. "value": 5
  5439. },
  5440. "style": {
  5441. "type": "map<string,string>",
  5442. "value": {
  5443. "stroke": "#000000",
  5444. "fill": "#ffffff",
  5445. "opacity": 0,
  5446. "stroke-width": 1
  5447. }
  5448. },
  5449. "mapper": {
  5450. "type": "code",
  5451. "value": ""
  5452. },
  5453. "parser": {
  5454. "type": "code",
  5455. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5456. },
  5457. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  5458. "position": {
  5459. "type": "list<double>",
  5460. "value": [
  5461. "0;16.268250719660045,0%",
  5462. "0;63.115719266457575,0%"
  5463. ]
  5464. },
  5465. "orientation": {
  5466. "type": "double",
  5467. "value": "0;-108.8531587644191"
  5468. },
  5469. "scale": {
  5470. "type": "list<double>",
  5471. "value": [
  5472. 1,
  5473. 1
  5474. ]
  5475. },
  5476. "arrow": "arrowHead",
  5477. "arrowType": "circle-white",
  5478. "$linkDecoratorInfo": {
  5479. "type": "map<string,double>",
  5480. "value": {
  5481. "xratio": -1,
  5482. "yoffset": -5
  5483. }
  5484. }
  5485. },
  5486. "293": {
  5487. "r": {
  5488. "type": "double",
  5489. "value": 10
  5490. },
  5491. "style": {
  5492. "type": "map<string,string>",
  5493. "value": {
  5494. "stroke": "#000000",
  5495. "fill": "#ffffff",
  5496. "opacity": 0,
  5497. "stroke-width": 1
  5498. }
  5499. },
  5500. "mapper": {
  5501. "type": "code",
  5502. "value": ""
  5503. },
  5504. "parser": {
  5505. "type": "code",
  5506. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5507. },
  5508. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  5509. "position": {
  5510. "type": "list<double>",
  5511. "value": [
  5512. "0;11.53650143932009,0%",
  5513. "0;64.73143853291509,0%"
  5514. ]
  5515. },
  5516. "orientation": {
  5517. "type": "double",
  5518. "value": "0;-108.8531587644191"
  5519. },
  5520. "scale": {
  5521. "type": "list<double>",
  5522. "value": [
  5523. 1,
  5524. 1
  5525. ]
  5526. },
  5527. "arrow": "arrowHead",
  5528. "arrowType": "circle-white-large",
  5529. "$linkDecoratorInfo": {
  5530. "type": "map<string,double>",
  5531. "value": {
  5532. "xratio": -1,
  5533. "yoffset": -10
  5534. }
  5535. }
  5536. },
  5537. "294": {
  5538. "segments": {
  5539. "type": "string",
  5540. "value": "m0,0 l-20,8 l20,8"
  5541. },
  5542. "style": {
  5543. "type": "map<string,string>",
  5544. "value": {
  5545. "stroke": "#000000",
  5546. "fill": "#000000",
  5547. "fill-opacity": 0,
  5548. "stroke-width": 1,
  5549. "opacity": 0
  5550. }
  5551. },
  5552. "mapper": {
  5553. "type": "code",
  5554. "value": ""
  5555. },
  5556. "parser": {
  5557. "type": "code",
  5558. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5559. },
  5560. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5561. "position": {
  5562. "type": "list<double>",
  5563. "value": [
  5564. "0;13.429201151456027,0%",
  5565. "0;64.0851508263321,0%"
  5566. ]
  5567. },
  5568. "orientation": {
  5569. "type": "double",
  5570. "value": "0;-108.8531587644191"
  5571. },
  5572. "scale": {
  5573. "type": "list<double>",
  5574. "value": [
  5575. 1,
  5576. 1
  5577. ]
  5578. },
  5579. "arrow": "arrowHead",
  5580. "arrowType": "arrow-empty-large",
  5581. "$linkDecoratorInfo": {
  5582. "type": "map<string,double>",
  5583. "value": {
  5584. "xratio": -1,
  5585. "yoffset": -8
  5586. }
  5587. }
  5588. },
  5589. "295": {
  5590. "segments": {
  5591. "type": "string",
  5592. "value": "m0,0 l-10,4 l10,4"
  5593. },
  5594. "style": {
  5595. "type": "map<string,string>",
  5596. "value": {
  5597. "stroke": "#000000",
  5598. "fill": "#000000",
  5599. "fill-opacity": 0,
  5600. "stroke-width": 1,
  5601. "opacity": 0
  5602. }
  5603. },
  5604. "mapper": {
  5605. "type": "code",
  5606. "value": ""
  5607. },
  5608. "parser": {
  5609. "type": "code",
  5610. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5611. },
  5612. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5613. "position": {
  5614. "type": "list<double>",
  5615. "value": [
  5616. "0;17.214600575728014,0%",
  5617. "0;62.79257541316605,0%"
  5618. ]
  5619. },
  5620. "orientation": {
  5621. "type": "double",
  5622. "value": "0;-108.8531587644191"
  5623. },
  5624. "scale": {
  5625. "type": "list<double>",
  5626. "value": [
  5627. 1,
  5628. 1
  5629. ]
  5630. },
  5631. "arrow": "arrowHead",
  5632. "arrowType": "arrow-empty",
  5633. "$linkDecoratorInfo": {
  5634. "type": "map<string,double>",
  5635. "value": {
  5636. "xratio": -1,
  5637. "yoffset": -4
  5638. }
  5639. }
  5640. },
  5641. "296": {
  5642. "segments": {
  5643. "type": "string",
  5644. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  5645. },
  5646. "style": {
  5647. "type": "map<string,string>",
  5648. "value": {
  5649. "stroke": "#000000",
  5650. "fill": "#000000",
  5651. "opacity": 0,
  5652. "stroke-width": 1
  5653. }
  5654. },
  5655. "mapper": {
  5656. "type": "code",
  5657. "value": ""
  5658. },
  5659. "parser": {
  5660. "type": "code",
  5661. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5662. },
  5663. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5664. "position": {
  5665. "type": "list<double>",
  5666. "value": [
  5667. "0;11.53650143932009,0%",
  5668. "0;64.73143853291509,0%"
  5669. ]
  5670. },
  5671. "orientation": {
  5672. "type": "double",
  5673. "value": "0;-108.8531587644191"
  5674. },
  5675. "scale": {
  5676. "type": "list<double>",
  5677. "value": [
  5678. 1,
  5679. 1
  5680. ]
  5681. },
  5682. "arrow": "arrowHead",
  5683. "arrowType": "diamond-black-large",
  5684. "$linkDecoratorInfo": {
  5685. "type": "map<string,double>",
  5686. "value": {
  5687. "xratio": -1,
  5688. "yoffset": -10
  5689. }
  5690. }
  5691. },
  5692. "297": {
  5693. "segments": {
  5694. "type": "string",
  5695. "value": "m0,0 l-10,4 l10,4 z"
  5696. },
  5697. "style": {
  5698. "type": "map<string,string>",
  5699. "value": {
  5700. "stroke": "#000000",
  5701. "fill": "#000000",
  5702. "opacity": 0,
  5703. "stroke-width": 1
  5704. }
  5705. },
  5706. "mapper": {
  5707. "type": "code",
  5708. "value": ""
  5709. },
  5710. "parser": {
  5711. "type": "code",
  5712. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5713. },
  5714. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5715. "position": {
  5716. "type": "list<double>",
  5717. "value": [
  5718. "0;17.214600575728014,0%",
  5719. "0;62.79257541316605,0%"
  5720. ]
  5721. },
  5722. "orientation": {
  5723. "type": "double",
  5724. "value": "0;-108.8531587644191"
  5725. },
  5726. "scale": {
  5727. "type": "list<double>",
  5728. "value": [
  5729. 1,
  5730. 1
  5731. ]
  5732. },
  5733. "arrow": "arrowHead",
  5734. "arrowType": "triangle-black",
  5735. "$linkDecoratorInfo": {
  5736. "type": "map<string,double>",
  5737. "value": {
  5738. "xratio": -1,
  5739. "yoffset": -4
  5740. }
  5741. }
  5742. },
  5743. "298": {
  5744. "segments": {
  5745. "type": "string",
  5746. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  5747. },
  5748. "style": {
  5749. "type": "map<string,string>",
  5750. "value": {
  5751. "stroke": "#000000",
  5752. "fill": "#ffffff",
  5753. "opacity": 0,
  5754. "stroke-width": 1
  5755. }
  5756. },
  5757. "mapper": {
  5758. "type": "code",
  5759. "value": ""
  5760. },
  5761. "parser": {
  5762. "type": "code",
  5763. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5764. },
  5765. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5766. "position": {
  5767. "type": "list<double>",
  5768. "value": [
  5769. "0;11.53650143932009,0%",
  5770. "0;64.73143853291509,0%"
  5771. ]
  5772. },
  5773. "orientation": {
  5774. "type": "double",
  5775. "value": "0;-108.8531587644191"
  5776. },
  5777. "scale": {
  5778. "type": "list<double>",
  5779. "value": [
  5780. 1,
  5781. 1
  5782. ]
  5783. },
  5784. "arrow": "arrowHead",
  5785. "arrowType": "diamond-white-large",
  5786. "$linkDecoratorInfo": {
  5787. "type": "map<string,double>",
  5788. "value": {
  5789. "xratio": -1,
  5790. "yoffset": -10
  5791. }
  5792. }
  5793. }
  5794. },
  5795. "edges": []
  5796. }
  5797. },
  5798. "$asuri": {
  5799. "type": "string",
  5800. "value": "/Formalisms/LCA-new/LCA/parent/16.instance"
  5801. },
  5802. "$segments": {
  5803. "type": "map<string,list<string>>",
  5804. "value": {
  5805. "/Formalisms/LCA-new/LCA.defaultIcons/NodeIcon/15.instance--/Formalisms/LCA-new/LCA.defaultIcons/parentLink/16.instance": "M898,381L877,319.5",
  5806. "/Formalisms/LCA-new/LCA.defaultIcons/parentLink/16.instance--/Formalisms/LCA-new/LCA.defaultIcons/NodeIcon/8.instance": "M876.951314262672,319.35742034068227L856.000302553374,258.00088604916687"
  5807. }
  5808. },
  5809. "$type": "/Formalisms/LCA-new/LCA.defaultIcons/parentLink"
  5810. }
  5811. },
  5812. "edges": [],
  5813. "metamodels": [
  5814. "/Formalisms/LCA-new/LCA.defaultIcons"
  5815. ]
  5816. },
  5817. "asm": {
  5818. "nodes": {
  5819. "1": {
  5820. "id": {
  5821. "type": "string",
  5822. "value": "A"
  5823. },
  5824. "input": {
  5825. "type": "string",
  5826. "value": "false"
  5827. },
  5828. "highlight": {
  5829. "type": "string",
  5830. "value": "no"
  5831. },
  5832. "$type": "/Formalisms/LCA-new/LCA/Node"
  5833. },
  5834. "2": {
  5835. "id": {
  5836. "type": "string",
  5837. "value": "B"
  5838. },
  5839. "input": {
  5840. "type": "string",
  5841. "value": "false"
  5842. },
  5843. "highlight": {
  5844. "type": "string",
  5845. "value": "no"
  5846. },
  5847. "$type": "/Formalisms/LCA-new/LCA/Node"
  5848. },
  5849. "8": {
  5850. "id": {
  5851. "type": "string",
  5852. "value": "I"
  5853. },
  5854. "input": {
  5855. "type": "string",
  5856. "value": "false"
  5857. },
  5858. "highlight": {
  5859. "type": "string",
  5860. "value": "no"
  5861. },
  5862. "$type": "/Formalisms/LCA-new/LCA/Node"
  5863. },
  5864. "13": {
  5865. "$type": "/Formalisms/LCA-new/LCA/parent"
  5866. },
  5867. "14": {
  5868. "$type": "/Formalisms/LCA-new/LCA/parent"
  5869. },
  5870. "15": {
  5871. "id": {
  5872. "type": "string",
  5873. "value": "C"
  5874. },
  5875. "input": {
  5876. "type": "string",
  5877. "value": "false"
  5878. },
  5879. "highlight": {
  5880. "type": "string",
  5881. "value": "no"
  5882. },
  5883. "$type": "/Formalisms/LCA-new/LCA/Node"
  5884. },
  5885. "16": {
  5886. "$type": "/Formalisms/LCA-new/LCA/parent"
  5887. }
  5888. },
  5889. "edges": [
  5890. {
  5891. "src": "8",
  5892. "dest": "13"
  5893. },
  5894. {
  5895. "src": "13",
  5896. "dest": "1"
  5897. },
  5898. {
  5899. "src": "2",
  5900. "dest": "14"
  5901. },
  5902. {
  5903. "src": "14",
  5904. "dest": "1"
  5905. },
  5906. {
  5907. "src": "15",
  5908. "dest": "16"
  5909. },
  5910. {
  5911. "src": "16",
  5912. "dest": "8"
  5913. }
  5914. ],
  5915. "metamodels": [
  5916. "/Formalisms/LCA-new/LCA"
  5917. ]
  5918. }
  5919. }