T_lrule.model 277 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028
  1. {
  2. "csm": {
  3. "nodes": {
  4. "0": {
  5. "typename": {
  6. "type": "string",
  7. "value": "StartIcon"
  8. },
  9. "position": {
  10. "type": "list<double>",
  11. "value": [
  12. 661,
  13. 200
  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. "21": {
  40. "r": {
  41. "type": "double",
  42. "value": 10
  43. },
  44. "style": {
  45. "type": "map<string,string>",
  46. "value": {
  47. "stroke": "#000000",
  48. "stroke-dasharray": "",
  49. "fill": "#000000",
  50. "fill-opacity": 0.75,
  51. "font-size": "20px",
  52. "stroke-width": 0,
  53. "arrow-start": "none",
  54. "arrow-end": "none"
  55. }
  56. },
  57. "mapper": {
  58. "type": "code",
  59. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  60. },
  61. "parser": {
  62. "type": "code",
  63. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  64. },
  65. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  66. "position": {
  67. "type": "list<double>",
  68. "value": [
  69. 3,
  70. 2
  71. ]
  72. },
  73. "orientation": {
  74. "type": "double",
  75. "value": 0
  76. },
  77. "scale": {
  78. "type": "list<double>",
  79. "value": [
  80. 1,
  81. 1
  82. ]
  83. }
  84. }
  85. },
  86. "edges": []
  87. }
  88. },
  89. "$asuri": {
  90. "type": "string",
  91. "value": "/Formalisms/__Transformations__/Transformation/MoTif/Start/0.instance"
  92. },
  93. "$type": "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/StartIcon"
  94. },
  95. "6": {
  96. "typename": {
  97. "type": "string",
  98. "value": "EndSuccessIcon"
  99. },
  100. "position": {
  101. "type": "list<double>",
  102. "value": [
  103. 606,
  104. 673
  105. ]
  106. },
  107. "orientation": {
  108. "type": "double",
  109. "value": 0
  110. },
  111. "scale": {
  112. "type": "list<double>",
  113. "value": [
  114. 1,
  115. 1
  116. ]
  117. },
  118. "mapper": {
  119. "type": "code",
  120. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  121. },
  122. "parser": {
  123. "type": "code",
  124. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  125. },
  126. "$contents": {
  127. "type": "map<string,*>",
  128. "value": {
  129. "nodes": {
  130. "23": {
  131. "r": {
  132. "type": "double",
  133. "value": 10
  134. },
  135. "style": {
  136. "type": "map<string,string>",
  137. "value": {
  138. "stroke": "#008000",
  139. "stroke-dasharray": "",
  140. "fill": "none",
  141. "fill-opacity": 1,
  142. "font-size": "20px",
  143. "stroke-width": 2,
  144. "arrow-start": "none",
  145. "arrow-end": "none",
  146. "": ""
  147. }
  148. },
  149. "mapper": {
  150. "type": "code",
  151. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  152. },
  153. "parser": {
  154. "type": "code",
  155. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  156. },
  157. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  158. "position": {
  159. "type": "list<double>",
  160. "value": [
  161. 2,
  162. 2
  163. ]
  164. },
  165. "orientation": {
  166. "type": "double",
  167. "value": 0
  168. },
  169. "scale": {
  170. "type": "list<double>",
  171. "value": [
  172. 1,
  173. 1
  174. ]
  175. }
  176. },
  177. "26": {
  178. "r": {
  179. "type": "double",
  180. "value": 5
  181. },
  182. "style": {
  183. "type": "map<string,string>",
  184. "value": {
  185. "stroke": "#000000",
  186. "stroke-dasharray": "",
  187. "fill": "#008000",
  188. "fill-opacity": 1,
  189. "font-size": "20px",
  190. "stroke-width": 0,
  191. "arrow-start": "none",
  192. "arrow-end": "none",
  193. "": ""
  194. }
  195. },
  196. "mapper": {
  197. "type": "code",
  198. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  199. },
  200. "parser": {
  201. "type": "code",
  202. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  203. },
  204. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  205. "position": {
  206. "type": "list<double>",
  207. "value": [
  208. 7,
  209. 7
  210. ]
  211. },
  212. "orientation": {
  213. "type": "double",
  214. "value": 0
  215. },
  216. "scale": {
  217. "type": "list<double>",
  218. "value": [
  219. 1,
  220. 1
  221. ]
  222. }
  223. },
  224. "27": {
  225. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  226. "position": {
  227. "type": "list<double>",
  228. "value": [
  229. 7.492540538484263,
  230. 6.5
  231. ]
  232. },
  233. "orientation": {
  234. "type": "double",
  235. "value": 0
  236. },
  237. "scale": {
  238. "type": "list<double>",
  239. "value": [
  240. 1,
  241. 1
  242. ]
  243. },
  244. "link-style": {
  245. "type": "map<string,string>",
  246. "value": {
  247. "stroke": "#00ffff",
  248. "stroke-dasharray": "",
  249. "stroke-opacity": 0.1,
  250. "stroke-width": 1
  251. }
  252. }
  253. }
  254. },
  255. "edges": [
  256. {
  257. "src": "23",
  258. "dest": "27"
  259. },
  260. {
  261. "src": "27",
  262. "dest": "26"
  263. }
  264. ]
  265. }
  266. },
  267. "$asuri": {
  268. "type": "string",
  269. "value": "/Formalisms/__Transformations__/Transformation/MoTif/EndSuccess/6.instance"
  270. },
  271. "$type": "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/EndSuccessIcon"
  272. },
  273. "7": {
  274. "typename": {
  275. "type": "string",
  276. "value": "EndFailIcon"
  277. },
  278. "position": {
  279. "type": "list<double>",
  280. "value": [
  281. 702,
  282. 674
  283. ]
  284. },
  285. "orientation": {
  286. "type": "double",
  287. "value": 0
  288. },
  289. "scale": {
  290. "type": "list<double>",
  291. "value": [
  292. 1,
  293. 1
  294. ]
  295. },
  296. "mapper": {
  297. "type": "code",
  298. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  299. },
  300. "parser": {
  301. "type": "code",
  302. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  303. },
  304. "$contents": {
  305. "type": "map<string,*>",
  306. "value": {
  307. "nodes": {
  308. "451": {
  309. "r": {
  310. "type": "double",
  311. "value": 10
  312. },
  313. "style": {
  314. "type": "map<string,string>",
  315. "value": {
  316. "stroke": "#800000",
  317. "stroke-dasharray": "",
  318. "fill": "none",
  319. "fill-opacity": 1,
  320. "font-size": "20px",
  321. "stroke-width": 2,
  322. "arrow-start": "none",
  323. "arrow-end": "none",
  324. "": ""
  325. }
  326. },
  327. "mapper": {
  328. "type": "code",
  329. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  330. },
  331. "parser": {
  332. "type": "code",
  333. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  334. },
  335. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  336. "position": {
  337. "type": "list<double>",
  338. "value": [
  339. 2,
  340. 1
  341. ]
  342. },
  343. "orientation": {
  344. "type": "double",
  345. "value": 0
  346. },
  347. "scale": {
  348. "type": "list<double>",
  349. "value": [
  350. 1,
  351. 1
  352. ]
  353. }
  354. },
  355. "455": {
  356. "segments": {
  357. "type": "string",
  358. "value": "M 12.49983,1.5069319 1.50001,12.506752"
  359. },
  360. "style": {
  361. "type": "map<string,string>",
  362. "value": {
  363. "fill": "none",
  364. "stroke": "#800000",
  365. "stroke-width": "3",
  366. "stroke-linecap": "round",
  367. "stroke-linejoin": "round",
  368. "stroke-miterlimit": "4",
  369. "stroke-opacity": "1",
  370. "stroke-dasharray": "none"
  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. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  382. "position": {
  383. "type": "list<double>",
  384. "value": [
  385. 5,
  386. 4
  387. ]
  388. },
  389. "orientation": {
  390. "type": "double",
  391. "value": 0
  392. },
  393. "scale": {
  394. "type": "list<double>",
  395. "value": [
  396. 1,
  397. 1
  398. ]
  399. }
  400. },
  401. "456": {
  402. "segments": {
  403. "type": "string",
  404. "value": "M 1.5,1.5069319 12.49983,12.506752"
  405. },
  406. "style": {
  407. "type": "map<string,string>",
  408. "value": {
  409. "fill": "none",
  410. "stroke": "#800000",
  411. "stroke-width": "3",
  412. "stroke-linecap": "round",
  413. "stroke-linejoin": "round",
  414. "stroke-miterlimit": "4",
  415. "stroke-opacity": "1",
  416. "stroke-dasharray": "none"
  417. }
  418. },
  419. "mapper": {
  420. "type": "code",
  421. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  422. },
  423. "parser": {
  424. "type": "code",
  425. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  426. },
  427. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  428. "position": {
  429. "type": "list<double>",
  430. "value": [
  431. 5,
  432. 4
  433. ]
  434. },
  435. "orientation": {
  436. "type": "double",
  437. "value": 0
  438. },
  439. "scale": {
  440. "type": "list<double>",
  441. "value": [
  442. 1,
  443. 1
  444. ]
  445. }
  446. },
  447. "457": {
  448. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  449. "position": {
  450. "type": "list<double>",
  451. "value": [
  452. 7.363811097006419,
  453. 5.348023328271552
  454. ]
  455. },
  456. "orientation": {
  457. "type": "double",
  458. "value": 0
  459. },
  460. "scale": {
  461. "type": "list<double>",
  462. "value": [
  463. 1,
  464. 1
  465. ]
  466. },
  467. "link-style": {
  468. "type": "map<string,string>",
  469. "value": {
  470. "stroke": "#00ffff",
  471. "stroke-dasharray": "",
  472. "stroke-opacity": 0.1,
  473. "stroke-width": 1
  474. }
  475. }
  476. },
  477. "458": {
  478. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  479. "position": {
  480. "type": "list<double>",
  481. "value": [
  482. 7.3638135362075445,
  483. 5.348023328271552
  484. ]
  485. },
  486. "orientation": {
  487. "type": "double",
  488. "value": 0
  489. },
  490. "scale": {
  491. "type": "list<double>",
  492. "value": [
  493. 1,
  494. 1
  495. ]
  496. },
  497. "link-style": {
  498. "type": "map<string,string>",
  499. "value": {
  500. "stroke": "#00ffff",
  501. "stroke-dasharray": "",
  502. "stroke-opacity": 0.1,
  503. "stroke-width": 1
  504. }
  505. }
  506. }
  507. },
  508. "edges": [
  509. {
  510. "src": "451",
  511. "dest": "457"
  512. },
  513. {
  514. "src": "457",
  515. "dest": "455"
  516. },
  517. {
  518. "src": "451",
  519. "dest": "458"
  520. },
  521. {
  522. "src": "458",
  523. "dest": "456"
  524. }
  525. ]
  526. }
  527. },
  528. "$asuri": {
  529. "type": "string",
  530. "value": "/Formalisms/__Transformations__/Transformation/MoTif/EndFail/7.instance"
  531. },
  532. "$type": "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/EndFailIcon"
  533. },
  534. "88": {
  535. "typename": {
  536. "type": "string",
  537. "value": "LRuleIcon"
  538. },
  539. "position": {
  540. "type": "list<double>",
  541. "value": [
  542. 513,
  543. 320
  544. ]
  545. },
  546. "orientation": {
  547. "type": "double",
  548. "value": 0
  549. },
  550. "scale": {
  551. "type": "list<double>",
  552. "value": [
  553. 1,
  554. 1
  555. ]
  556. },
  557. "mapper": {
  558. "type": "code",
  559. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  560. },
  561. "parser": {
  562. "type": "code",
  563. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  564. },
  565. "$contents": {
  566. "type": "map<string,*>",
  567. "value": {
  568. "nodes": {
  569. "716": {
  570. "segments": {
  571. "type": "string",
  572. "value": "M 1.5,1.5069319 12.49983,12.506752"
  573. },
  574. "style": {
  575. "type": "map<string,string>",
  576. "value": {
  577. "fill": "none",
  578. "stroke": "#008000",
  579. "stroke-width": "3",
  580. "stroke-linecap": "round",
  581. "stroke-linejoin": "round",
  582. "stroke-miterlimit": "4",
  583. "stroke-opacity": "1",
  584. "stroke-dasharray": "none"
  585. }
  586. },
  587. "mapper": {
  588. "type": "code",
  589. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  590. },
  591. "parser": {
  592. "type": "code",
  593. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  594. },
  595. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  596. "position": {
  597. "type": "list<double>",
  598. "value": [
  599. 200,
  600. 277
  601. ]
  602. },
  603. "orientation": {
  604. "type": "double",
  605. "value": 0
  606. },
  607. "scale": {
  608. "type": "list<double>",
  609. "value": [
  610. 1,
  611. 1
  612. ]
  613. }
  614. },
  615. "717": {
  616. "segments": {
  617. "type": "string",
  618. "value": "M 12.49983,1.5069319 1.50001,12.506752"
  619. },
  620. "style": {
  621. "type": "map<string,string>",
  622. "value": {
  623. "fill": "none",
  624. "stroke": "#008000",
  625. "stroke-width": "3",
  626. "stroke-linecap": "round",
  627. "stroke-linejoin": "round",
  628. "stroke-miterlimit": "4",
  629. "stroke-opacity": "1",
  630. "stroke-dasharray": "none"
  631. }
  632. },
  633. "mapper": {
  634. "type": "code",
  635. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  636. },
  637. "parser": {
  638. "type": "code",
  639. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  640. },
  641. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  642. "position": {
  643. "type": "list<double>",
  644. "value": [
  645. 200,
  646. 277
  647. ]
  648. },
  649. "orientation": {
  650. "type": "double",
  651. "value": 0
  652. },
  653. "scale": {
  654. "type": "list<double>",
  655. "value": [
  656. 1,
  657. 1
  658. ]
  659. }
  660. },
  661. "718": {
  662. "segments": {
  663. "type": "string",
  664. "value": "M 0.01697481,7.2449841 2.4082848,10.044684 11.016975,1.5335841"
  665. },
  666. "style": {
  667. "type": "map<string,string>",
  668. "value": {
  669. "fill": "none",
  670. "stroke": "#008000",
  671. "stroke-width": "3",
  672. "stroke-linecap": "round",
  673. "stroke-linejoin": "round",
  674. "stroke-miterlimit": "4",
  675. "stroke-opacity": "1",
  676. "stroke-dasharray": "none"
  677. }
  678. },
  679. "mapper": {
  680. "type": "code",
  681. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  682. },
  683. "parser": {
  684. "type": "code",
  685. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  686. },
  687. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  688. "position": {
  689. "type": "list<double>",
  690. "value": [
  691. 103,
  692. 277
  693. ]
  694. },
  695. "orientation": {
  696. "type": "double",
  697. "value": 0
  698. },
  699. "scale": {
  700. "type": "list<double>",
  701. "value": [
  702. 1,
  703. 1
  704. ]
  705. }
  706. },
  707. "719": {
  708. "width": {
  709. "type": "double",
  710. "value": 300
  711. },
  712. "height": {
  713. "type": "double",
  714. "value": 250
  715. },
  716. "cornerRadius": {
  717. "type": "double",
  718. "value": 1
  719. },
  720. "style": {
  721. "type": "map<string,string>",
  722. "value": {
  723. "fill": "#ffffff",
  724. "stroke": "#008000",
  725. "stroke-width": "3",
  726. "stroke-linecap": "butt",
  727. "stroke-linejoin": "miter",
  728. "stroke-miterlimit": "4",
  729. "stroke-opacity": "1",
  730. "fill-opacity": "0.5"
  731. }
  732. },
  733. "mapper": {
  734. "type": "code",
  735. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  736. },
  737. "parser": {
  738. "type": "code",
  739. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  740. },
  741. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  742. "position": {
  743. "type": "list<double>",
  744. "value": [
  745. 2,
  746. 25
  747. ]
  748. },
  749. "orientation": {
  750. "type": "double",
  751. "value": 0
  752. },
  753. "scale": {
  754. "type": "list<double>",
  755. "value": [
  756. 1,
  757. 1
  758. ]
  759. }
  760. },
  761. "720": {
  762. "textContent": {
  763. "type": "string",
  764. "value": ""
  765. },
  766. "style": {
  767. "type": "map<string,string>",
  768. "value": {
  769. "font-size": "20px",
  770. "font-style": "normal",
  771. "font-variant": "normal",
  772. "font-weight": "bold",
  773. "font-stretch": "normal",
  774. "text-align": "left",
  775. "line-height": "125%",
  776. "writing-mode": "lr-tb",
  777. "text-anchor": "left",
  778. "fill": "#008000",
  779. "fill-opacity": "1",
  780. "stroke": "none",
  781. "font-family": "Arial"
  782. }
  783. },
  784. "mapper": {
  785. "type": "code",
  786. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n({'textContent': getAttr('alias')})"
  787. },
  788. "parser": {
  789. "type": "code",
  790. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  791. },
  792. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  793. "position": {
  794. "type": "list<double>",
  795. "value": [
  796. 13,
  797. 38
  798. ]
  799. },
  800. "orientation": {
  801. "type": "double",
  802. "value": 0
  803. },
  804. "scale": {
  805. "type": "list<double>",
  806. "value": [
  807. 1,
  808. 1
  809. ]
  810. }
  811. },
  812. "721": {
  813. "segments": {
  814. "type": "string",
  815. "value": "M 1,10.3685 7.03183,20.737 13.06367,10.3685 z"
  816. },
  817. "style": {
  818. "type": "map<string,string>",
  819. "value": {
  820. "fill": "none",
  821. "stroke": "#008000",
  822. "stroke-width": "3",
  823. "stroke-linecap": "butt",
  824. "stroke-linejoin": "miter",
  825. "stroke-miterlimit": "4",
  826. "stroke-opacity": "1"
  827. }
  828. },
  829. "mapper": {
  830. "type": "code",
  831. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  832. },
  833. "parser": {
  834. "type": "code",
  835. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  836. },
  837. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  838. "position": {
  839. "type": "list<double>",
  840. "value": [
  841. 146,
  842. 2
  843. ]
  844. },
  845. "orientation": {
  846. "type": "double",
  847. "value": 0
  848. },
  849. "scale": {
  850. "type": "list<double>",
  851. "value": [
  852. 1,
  853. 1
  854. ]
  855. }
  856. },
  857. "722": {
  858. "width": {
  859. "type": "double",
  860. "value": 290
  861. },
  862. "height": {
  863. "type": "double",
  864. "value": 240
  865. },
  866. "cornerRadius": {
  867. "type": "double",
  868. "value": 1
  869. },
  870. "style": {
  871. "type": "map<string,string>",
  872. "value": {
  873. "fill": "none",
  874. "stroke": "#008000",
  875. "stroke-width": "3",
  876. "stroke-linecap": "butt",
  877. "stroke-linejoin": "miter",
  878. "stroke-miterlimit": "4",
  879. "stroke-opacity": "1",
  880. "fill-opacity": "0.5"
  881. }
  882. },
  883. "mapper": {
  884. "type": "code",
  885. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  886. },
  887. "parser": {
  888. "type": "code",
  889. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  890. },
  891. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  892. "position": {
  893. "type": "list<double>",
  894. "value": [
  895. 7,
  896. 30
  897. ]
  898. },
  899. "orientation": {
  900. "type": "double",
  901. "value": 0
  902. },
  903. "scale": {
  904. "type": "list<double>",
  905. "value": [
  906. 1,
  907. 1
  908. ]
  909. }
  910. },
  911. "723": {
  912. "textContent": {
  913. "type": "string",
  914. "value": ":"
  915. },
  916. "style": {
  917. "type": "map<string,string>",
  918. "value": {
  919. "font-size": "20px",
  920. "font-style": "normal",
  921. "font-variant": "normal",
  922. "font-weight": "bold",
  923. "font-stretch": "normal",
  924. "text-align": "left",
  925. "line-height": "125%",
  926. "writing-mode": "lr-tb",
  927. "text-anchor": "left",
  928. "fill": "#008000",
  929. "fill-opacity": "1",
  930. "stroke": "none",
  931. "font-family": "Arial"
  932. }
  933. },
  934. "mapper": {
  935. "type": "code",
  936. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  937. },
  938. "parser": {
  939. "type": "code",
  940. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  941. },
  942. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  943. "position": {
  944. "type": "list<double>",
  945. "value": [
  946. 46,
  947. 38
  948. ]
  949. },
  950. "orientation": {
  951. "type": "double",
  952. "value": 0
  953. },
  954. "scale": {
  955. "type": "list<double>",
  956. "value": [
  957. 1,
  958. 1
  959. ]
  960. }
  961. },
  962. "724": {
  963. "textContent": {
  964. "type": "string",
  965. "value": "LRule"
  966. },
  967. "style": {
  968. "type": "map<string,string>",
  969. "value": {
  970. "font-size": "20px",
  971. "font-style": "normal",
  972. "font-variant": "normal",
  973. "font-weight": "bold",
  974. "font-stretch": "normal",
  975. "text-align": "left",
  976. "line-height": "125%",
  977. "writing-mode": "lr-tb",
  978. "text-anchor": "left",
  979. "fill": "#008000",
  980. "fill-opacity": "1",
  981. "stroke": "none",
  982. "font-family": "Arial"
  983. }
  984. },
  985. "mapper": {
  986. "type": "code",
  987. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n({'textContent': getAttr('name')})"
  988. },
  989. "parser": {
  990. "type": "code",
  991. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  992. },
  993. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  994. "position": {
  995. "type": "list<double>",
  996. "value": [
  997. 53,
  998. 38
  999. ]
  1000. },
  1001. "orientation": {
  1002. "type": "double",
  1003. "value": 0
  1004. },
  1005. "scale": {
  1006. "type": "list<double>",
  1007. "value": [
  1008. 1,
  1009. 1
  1010. ]
  1011. }
  1012. },
  1013. "725": {
  1014. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  1015. "position": {
  1016. "type": "list<double>",
  1017. "value": [
  1018. 42.75,
  1019. 43.5
  1020. ]
  1021. },
  1022. "orientation": {
  1023. "type": "double",
  1024. "value": 0
  1025. },
  1026. "scale": {
  1027. "type": "list<double>",
  1028. "value": [
  1029. 1,
  1030. 1
  1031. ]
  1032. },
  1033. "link-style": {
  1034. "type": "map<string,string>",
  1035. "value": {
  1036. "stroke": "#00ffff",
  1037. "stroke-dasharray": "",
  1038. "stroke-opacity": 0.1,
  1039. "stroke-width": 1
  1040. }
  1041. }
  1042. },
  1043. "726": {
  1044. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  1045. "position": {
  1046. "type": "list<double>",
  1047. "value": [
  1048. 20.861485400667107,
  1049. 43.60135036424299
  1050. ]
  1051. },
  1052. "orientation": {
  1053. "type": "double",
  1054. "value": 0
  1055. },
  1056. "scale": {
  1057. "type": "list<double>",
  1058. "value": [
  1059. 1,
  1060. 1
  1061. ]
  1062. },
  1063. "link-style": {
  1064. "type": "map<string,string>",
  1065. "value": {
  1066. "stroke": "#00ffff",
  1067. "stroke-dasharray": "",
  1068. "stroke-opacity": 0.1,
  1069. "stroke-width": 1
  1070. }
  1071. }
  1072. },
  1073. "727": {
  1074. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  1075. "position": {
  1076. "type": "list<double>",
  1077. "value": [
  1078. 28.380101318328116,
  1079. 43.57653018725193
  1080. ]
  1081. },
  1082. "orientation": {
  1083. "type": "double",
  1084. "value": 0
  1085. },
  1086. "scale": {
  1087. "type": "list<double>",
  1088. "value": [
  1089. 1,
  1090. 1
  1091. ]
  1092. },
  1093. "link-style": {
  1094. "type": "map<string,string>",
  1095. "value": {
  1096. "stroke": "#00ffff",
  1097. "stroke-dasharray": "",
  1098. "stroke-opacity": 0.1,
  1099. "stroke-width": 1
  1100. }
  1101. }
  1102. },
  1103. "768": {
  1104. "segments": {
  1105. "type": "string",
  1106. "value": "m0,0l290,0"
  1107. },
  1108. "style": {
  1109. "type": "map<string,string>",
  1110. "value": {
  1111. "stroke": "#008000",
  1112. "stroke-dasharray": "",
  1113. "fill": "#ffffff",
  1114. "fill-opacity": 0.75,
  1115. "font-size": "20px",
  1116. "stroke-width": 3,
  1117. "arrow-start": "none",
  1118. "arrow-end": "none"
  1119. }
  1120. },
  1121. "mapper": {
  1122. "type": "code",
  1123. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  1124. },
  1125. "parser": {
  1126. "type": "code",
  1127. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1128. },
  1129. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1130. "position": {
  1131. "type": "list<double>",
  1132. "value": [
  1133. 6,
  1134. 152
  1135. ]
  1136. },
  1137. "orientation": {
  1138. "type": "double",
  1139. "value": 0
  1140. },
  1141. "scale": {
  1142. "type": "list<double>",
  1143. "value": [
  1144. 1,
  1145. 1
  1146. ]
  1147. }
  1148. },
  1149. "770": {
  1150. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  1151. "position": {
  1152. "type": "list<double>",
  1153. "value": [
  1154. 77.12784085406292,
  1155. 72.57926132951911
  1156. ]
  1157. },
  1158. "orientation": {
  1159. "type": "double",
  1160. "value": 0
  1161. },
  1162. "scale": {
  1163. "type": "list<double>",
  1164. "value": [
  1165. 1,
  1166. 1
  1167. ]
  1168. },
  1169. "link-style": {
  1170. "type": "map<string,string>",
  1171. "value": {
  1172. "stroke": "#00ffff",
  1173. "stroke-dasharray": "",
  1174. "stroke-opacity": 0.1,
  1175. "stroke-width": 1
  1176. }
  1177. }
  1178. }
  1179. },
  1180. "edges": [
  1181. {
  1182. "src": "722",
  1183. "dest": "725"
  1184. },
  1185. {
  1186. "src": "725",
  1187. "dest": "724"
  1188. },
  1189. {
  1190. "src": "722",
  1191. "dest": "726"
  1192. },
  1193. {
  1194. "src": "726",
  1195. "dest": "720"
  1196. },
  1197. {
  1198. "src": "722",
  1199. "dest": "727"
  1200. },
  1201. {
  1202. "src": "727",
  1203. "dest": "723"
  1204. },
  1205. {
  1206. "src": "719",
  1207. "dest": "770"
  1208. },
  1209. {
  1210. "src": "770",
  1211. "dest": "768"
  1212. }
  1213. ]
  1214. }
  1215. },
  1216. "$asuri": {
  1217. "type": "string",
  1218. "value": "/Formalisms/__Transformations__/Transformation/MoTif/LRule/88.instance"
  1219. },
  1220. "$type": "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/LRuleIcon"
  1221. },
  1222. "89": {
  1223. "typename": {
  1224. "type": "string",
  1225. "value": "QRuleIcon"
  1226. },
  1227. "position": {
  1228. "type": "list<double>",
  1229. "value": [
  1230. 551,
  1231. 372
  1232. ]
  1233. },
  1234. "orientation": {
  1235. "type": "double",
  1236. "value": 0
  1237. },
  1238. "scale": {
  1239. "type": "list<double>",
  1240. "value": [
  1241. 1,
  1242. 1
  1243. ]
  1244. },
  1245. "mapper": {
  1246. "type": "code",
  1247. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  1248. },
  1249. "parser": {
  1250. "type": "code",
  1251. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1252. },
  1253. "$contents": {
  1254. "type": "map<string,*>",
  1255. "value": {
  1256. "nodes": {
  1257. "342": {
  1258. "width": {
  1259. "type": "double",
  1260. "value": 200
  1261. },
  1262. "height": {
  1263. "type": "double",
  1264. "value": 50
  1265. },
  1266. "cornerRadius": {
  1267. "type": "double",
  1268. "value": 1
  1269. },
  1270. "style": {
  1271. "type": "map<string,string>",
  1272. "value": {
  1273. "fill": "#ffffff",
  1274. "stroke": "#008000",
  1275. "stroke-width": "5",
  1276. "stroke-linecap": "butt",
  1277. "stroke-linejoin": "miter",
  1278. "stroke-miterlimit": "4",
  1279. "stroke-opacity": "1",
  1280. "fill-opacity": "0.5"
  1281. }
  1282. },
  1283. "mapper": {
  1284. "type": "code",
  1285. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  1286. },
  1287. "parser": {
  1288. "type": "code",
  1289. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1290. },
  1291. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  1292. "position": {
  1293. "type": "list<double>",
  1294. "value": [
  1295. 1,
  1296. 25
  1297. ]
  1298. },
  1299. "orientation": {
  1300. "type": "double",
  1301. "value": 0
  1302. },
  1303. "scale": {
  1304. "type": "list<double>",
  1305. "value": [
  1306. 1,
  1307. 1
  1308. ]
  1309. }
  1310. },
  1311. "343": {
  1312. "textContent": {
  1313. "type": "string",
  1314. "value": ""
  1315. },
  1316. "style": {
  1317. "type": "map<string,string>",
  1318. "value": {
  1319. "font-size": "20px",
  1320. "font-style": "normal",
  1321. "font-variant": "normal",
  1322. "font-weight": "bold",
  1323. "font-stretch": "normal",
  1324. "text-align": "left",
  1325. "line-height": "125%",
  1326. "writing-mode": "lr-tb",
  1327. "text-anchor": "left",
  1328. "fill": "#008000",
  1329. "fill-opacity": "1",
  1330. "stroke": "none",
  1331. "font-family": "Arial"
  1332. }
  1333. },
  1334. "mapper": {
  1335. "type": "code",
  1336. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n({'textContent': getAttr('alias')})"
  1337. },
  1338. "parser": {
  1339. "type": "code",
  1340. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1341. },
  1342. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  1343. "position": {
  1344. "type": "list<double>",
  1345. "value": [
  1346. 8,
  1347. 39
  1348. ]
  1349. },
  1350. "orientation": {
  1351. "type": "double",
  1352. "value": 0
  1353. },
  1354. "scale": {
  1355. "type": "list<double>",
  1356. "value": [
  1357. 1,
  1358. 1
  1359. ]
  1360. }
  1361. },
  1362. "344": {
  1363. "textContent": {
  1364. "type": "string",
  1365. "value": "getNode"
  1366. },
  1367. "style": {
  1368. "type": "map<string,string>",
  1369. "value": {
  1370. "font-size": "20px",
  1371. "font-style": "normal",
  1372. "font-variant": "normal",
  1373. "font-weight": "bold",
  1374. "font-stretch": "normal",
  1375. "text-align": "left",
  1376. "line-height": "125%",
  1377. "writing-mode": "lr-tb",
  1378. "text-anchor": "left",
  1379. "fill": "#008000",
  1380. "fill-opacity": "1",
  1381. "stroke": "none",
  1382. "font-family": "Arial"
  1383. }
  1384. },
  1385. "mapper": {
  1386. "type": "code",
  1387. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n({'textContent': getAttr('name')})"
  1388. },
  1389. "parser": {
  1390. "type": "code",
  1391. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1392. },
  1393. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  1394. "position": {
  1395. "type": "list<double>",
  1396. "value": [
  1397. 48,
  1398. 39
  1399. ]
  1400. },
  1401. "orientation": {
  1402. "type": "double",
  1403. "value": 0
  1404. },
  1405. "scale": {
  1406. "type": "list<double>",
  1407. "value": [
  1408. 1,
  1409. 1
  1410. ]
  1411. }
  1412. },
  1413. "345": {
  1414. "segments": {
  1415. "type": "string",
  1416. "value": "M 0.01697481,7.2449841 2.4082848,10.044684 11.016975,1.5335841"
  1417. },
  1418. "style": {
  1419. "type": "map<string,string>",
  1420. "value": {
  1421. "fill": "none",
  1422. "stroke": "#008000",
  1423. "stroke-width": "3",
  1424. "stroke-linecap": "round",
  1425. "stroke-linejoin": "round",
  1426. "stroke-miterlimit": "4",
  1427. "stroke-opacity": "1",
  1428. "stroke-dasharray": "none"
  1429. }
  1430. },
  1431. "mapper": {
  1432. "type": "code",
  1433. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  1434. },
  1435. "parser": {
  1436. "type": "code",
  1437. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1438. },
  1439. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1440. "position": {
  1441. "type": "list<double>",
  1442. "value": [
  1443. 47,
  1444. 78
  1445. ]
  1446. },
  1447. "orientation": {
  1448. "type": "double",
  1449. "value": 0
  1450. },
  1451. "scale": {
  1452. "type": "list<double>",
  1453. "value": [
  1454. 1,
  1455. 1
  1456. ]
  1457. }
  1458. },
  1459. "346": {
  1460. "textContent": {
  1461. "type": "string",
  1462. "value": ":"
  1463. },
  1464. "style": {
  1465. "type": "map<string,string>",
  1466. "value": {
  1467. "font-size": "20px",
  1468. "font-style": "normal",
  1469. "font-variant": "normal",
  1470. "font-weight": "bold",
  1471. "font-stretch": "normal",
  1472. "text-align": "left",
  1473. "line-height": "125%",
  1474. "writing-mode": "lr-tb",
  1475. "text-anchor": "left",
  1476. "fill": "#008000",
  1477. "fill-opacity": "1",
  1478. "stroke": "none",
  1479. "font-family": "Arial"
  1480. }
  1481. },
  1482. "mapper": {
  1483. "type": "code",
  1484. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  1485. },
  1486. "parser": {
  1487. "type": "code",
  1488. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1489. },
  1490. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  1491. "position": {
  1492. "type": "list<double>",
  1493. "value": [
  1494. 41,
  1495. 39
  1496. ]
  1497. },
  1498. "orientation": {
  1499. "type": "double",
  1500. "value": 0
  1501. },
  1502. "scale": {
  1503. "type": "list<double>",
  1504. "value": [
  1505. 1,
  1506. 1
  1507. ]
  1508. }
  1509. },
  1510. "347": {
  1511. "segments": {
  1512. "type": "string",
  1513. "value": "M 12.49983,1.5069319 1.50001,12.506752"
  1514. },
  1515. "style": {
  1516. "type": "map<string,string>",
  1517. "value": {
  1518. "fill": "none",
  1519. "stroke": "#008000",
  1520. "stroke-width": "3",
  1521. "stroke-linecap": "round",
  1522. "stroke-linejoin": "round",
  1523. "stroke-miterlimit": "4",
  1524. "stroke-opacity": "1",
  1525. "stroke-dasharray": "none"
  1526. }
  1527. },
  1528. "mapper": {
  1529. "type": "code",
  1530. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  1531. },
  1532. "parser": {
  1533. "type": "code",
  1534. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1535. },
  1536. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1537. "position": {
  1538. "type": "list<double>",
  1539. "value": [
  1540. 144,
  1541. 78
  1542. ]
  1543. },
  1544. "orientation": {
  1545. "type": "double",
  1546. "value": 0
  1547. },
  1548. "scale": {
  1549. "type": "list<double>",
  1550. "value": [
  1551. 1,
  1552. 1
  1553. ]
  1554. }
  1555. },
  1556. "348": {
  1557. "segments": {
  1558. "type": "string",
  1559. "value": "M 1,10.3685 7.03183,20.737 13.06367,10.3685 z"
  1560. },
  1561. "style": {
  1562. "type": "map<string,string>",
  1563. "value": {
  1564. "fill": "#ffffff",
  1565. "fill-opacity": "0.5",
  1566. "stroke": "#008000",
  1567. "stroke-width": "3",
  1568. "stroke-linecap": "butt",
  1569. "stroke-linejoin": "miter",
  1570. "stroke-miterlimit": "4",
  1571. "stroke-opacity": "1"
  1572. }
  1573. },
  1574. "mapper": {
  1575. "type": "code",
  1576. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  1577. },
  1578. "parser": {
  1579. "type": "code",
  1580. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1581. },
  1582. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1583. "position": {
  1584. "type": "list<double>",
  1585. "value": [
  1586. 95,
  1587. 1
  1588. ]
  1589. },
  1590. "orientation": {
  1591. "type": "double",
  1592. "value": 0
  1593. },
  1594. "scale": {
  1595. "type": "list<double>",
  1596. "value": [
  1597. 1,
  1598. 1
  1599. ]
  1600. }
  1601. },
  1602. "349": {
  1603. "segments": {
  1604. "type": "string",
  1605. "value": "M 1.5,1.5069319 12.49983,12.506752"
  1606. },
  1607. "style": {
  1608. "type": "map<string,string>",
  1609. "value": {
  1610. "fill": "none",
  1611. "stroke": "#008000",
  1612. "stroke-width": "3",
  1613. "stroke-linecap": "round",
  1614. "stroke-linejoin": "round",
  1615. "stroke-miterlimit": "4",
  1616. "stroke-opacity": "1",
  1617. "stroke-dasharray": "none"
  1618. }
  1619. },
  1620. "mapper": {
  1621. "type": "code",
  1622. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  1623. },
  1624. "parser": {
  1625. "type": "code",
  1626. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1627. },
  1628. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1629. "position": {
  1630. "type": "list<double>",
  1631. "value": [
  1632. 144,
  1633. 78
  1634. ]
  1635. },
  1636. "orientation": {
  1637. "type": "double",
  1638. "value": 0
  1639. },
  1640. "scale": {
  1641. "type": "list<double>",
  1642. "value": [
  1643. 1,
  1644. 1
  1645. ]
  1646. }
  1647. },
  1648. "350": {
  1649. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  1650. "position": {
  1651. "type": "list<double>",
  1652. "value": [
  1653. 23,
  1654. 38.5
  1655. ]
  1656. },
  1657. "orientation": {
  1658. "type": "double",
  1659. "value": 0
  1660. },
  1661. "scale": {
  1662. "type": "list<double>",
  1663. "value": [
  1664. 1,
  1665. 1
  1666. ]
  1667. },
  1668. "link-style": {
  1669. "type": "map<string,string>",
  1670. "value": {
  1671. "stroke": "#00ffff",
  1672. "stroke-dasharray": "",
  1673. "stroke-opacity": 0.1,
  1674. "stroke-width": 1
  1675. }
  1676. }
  1677. },
  1678. "351": {
  1679. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  1680. "position": {
  1681. "type": "list<double>",
  1682. "value": [
  1683. 15.25,
  1684. 38.5
  1685. ]
  1686. },
  1687. "orientation": {
  1688. "type": "double",
  1689. "value": 0
  1690. },
  1691. "scale": {
  1692. "type": "list<double>",
  1693. "value": [
  1694. 1,
  1695. 1
  1696. ]
  1697. },
  1698. "link-style": {
  1699. "type": "map<string,string>",
  1700. "value": {
  1701. "stroke": "#00ffff",
  1702. "stroke-dasharray": "",
  1703. "stroke-opacity": 0.1,
  1704. "stroke-width": 1
  1705. }
  1706. }
  1707. },
  1708. "352": {
  1709. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  1710. "position": {
  1711. "type": "list<double>",
  1712. "value": [
  1713. 37.25,
  1714. 38.5
  1715. ]
  1716. },
  1717. "orientation": {
  1718. "type": "double",
  1719. "value": 0
  1720. },
  1721. "scale": {
  1722. "type": "list<double>",
  1723. "value": [
  1724. 1,
  1725. 1
  1726. ]
  1727. },
  1728. "link-style": {
  1729. "type": "map<string,string>",
  1730. "value": {
  1731. "stroke": "#00ffff",
  1732. "stroke-dasharray": "",
  1733. "stroke-opacity": 0.1,
  1734. "stroke-width": 1
  1735. }
  1736. }
  1737. },
  1738. "359": {
  1739. "textContent": {
  1740. "type": "string",
  1741. "value": "?"
  1742. },
  1743. "style": {
  1744. "type": "map<string,string>",
  1745. "value": {
  1746. "font-size": "20px",
  1747. "font-style": "normal",
  1748. "font-variant": "normal",
  1749. "font-weight": "bold",
  1750. "font-stretch": "normal",
  1751. "text-align": "left",
  1752. "line-height": "100%",
  1753. "writing-mode": "lr-tb",
  1754. "text-anchor": "left",
  1755. "fill": "#008000",
  1756. "fill-opacity": "1",
  1757. "stroke": "none",
  1758. "font-family": "Arial"
  1759. }
  1760. },
  1761. "mapper": {
  1762. "type": "code",
  1763. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  1764. },
  1765. "parser": {
  1766. "type": "code",
  1767. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1768. },
  1769. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  1770. "position": {
  1771. "type": "list<double>",
  1772. "value": [
  1773. 206,
  1774. 23
  1775. ]
  1776. },
  1777. "orientation": {
  1778. "type": "double",
  1779. "value": 0
  1780. },
  1781. "scale": {
  1782. "type": "list<double>",
  1783. "value": [
  1784. 1,
  1785. 1
  1786. ]
  1787. }
  1788. }
  1789. },
  1790. "edges": [
  1791. {
  1792. "src": "342",
  1793. "dest": "350"
  1794. },
  1795. {
  1796. "src": "350",
  1797. "dest": "346"
  1798. },
  1799. {
  1800. "src": "342",
  1801. "dest": "351"
  1802. },
  1803. {
  1804. "src": "351",
  1805. "dest": "343"
  1806. },
  1807. {
  1808. "src": "342",
  1809. "dest": "352"
  1810. },
  1811. {
  1812. "src": "352",
  1813. "dest": "344"
  1814. }
  1815. ]
  1816. }
  1817. },
  1818. "$asuri": {
  1819. "type": "string",
  1820. "value": "/Formalisms/__Transformations__/Transformation/MoTif/QRule/89.instance"
  1821. },
  1822. "$type": "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/QRuleIcon"
  1823. },
  1824. "90": {
  1825. "link-style": {
  1826. "type": "map<string,string>",
  1827. "value": {
  1828. "stroke": "#000000",
  1829. "stroke-dasharray": "",
  1830. "stroke-opacity": 1,
  1831. "stroke-width": 2
  1832. }
  1833. },
  1834. "arrowHead": {
  1835. "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)",
  1836. "value": "custom"
  1837. },
  1838. "arrowTail": {
  1839. "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)",
  1840. "value": "arrow-black"
  1841. },
  1842. "typename": {
  1843. "type": "string",
  1844. "value": "initialLink"
  1845. },
  1846. "position": {
  1847. "type": "list<double>",
  1848. "value": [
  1849. 669,
  1850. 275.5
  1851. ]
  1852. },
  1853. "orientation": {
  1854. "type": "double",
  1855. "value": 0
  1856. },
  1857. "scale": {
  1858. "type": "list<double>",
  1859. "value": [
  1860. 1,
  1861. 1
  1862. ]
  1863. },
  1864. "mapper": {
  1865. "type": "code",
  1866. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  1867. },
  1868. "parser": {
  1869. "type": "code",
  1870. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1871. },
  1872. "$contents": {
  1873. "type": "map<string,*>",
  1874. "value": {
  1875. "nodes": {
  1876. "267": {
  1877. "segments": {
  1878. "type": "string",
  1879. "value": "m0,0 l10,4 l-10,4 l3,-4 z"
  1880. },
  1881. "style": {
  1882. "type": "map<string,string>",
  1883. "value": {
  1884. "stroke": "#000000",
  1885. "fill": "#000000",
  1886. "opacity": 0,
  1887. "stroke-width": 1
  1888. }
  1889. },
  1890. "mapper": {
  1891. "type": "code",
  1892. "value": ""
  1893. },
  1894. "parser": {
  1895. "type": "code",
  1896. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1897. },
  1898. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1899. "position": {
  1900. "type": "list<double>",
  1901. "value": [
  1902. "0;-0.009967967516558929,-7.061970350534148%",
  1903. "0;56.78221348392509,99.75033120129565%"
  1904. ]
  1905. },
  1906. "orientation": {
  1907. "type": "double",
  1908. "value": "0;94.04958170327134"
  1909. },
  1910. "scale": {
  1911. "type": "list<double>",
  1912. "value": [
  1913. 1,
  1914. 1
  1915. ]
  1916. },
  1917. "arrow": "arrowTail",
  1918. "arrowType": "arrow-black",
  1919. "$linkDecoratorInfo": {
  1920. "type": "map<string,double>",
  1921. "value": {
  1922. "xratio": 1,
  1923. "yoffset": -4
  1924. }
  1925. }
  1926. },
  1927. "268": {
  1928. "segments": {
  1929. "type": "string",
  1930. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  1931. },
  1932. "style": {
  1933. "type": "map<string,string>",
  1934. "value": {
  1935. "stroke": "#000000",
  1936. "fill": "#000000",
  1937. "opacity": 0,
  1938. "stroke-width": 1
  1939. }
  1940. },
  1941. "mapper": {
  1942. "type": "code",
  1943. "value": ""
  1944. },
  1945. "parser": {
  1946. "type": "code",
  1947. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1948. },
  1949. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1950. "position": {
  1951. "type": "list<double>",
  1952. "value": [
  1953. "0;5.975051904561155,-7.061970350534148%",
  1954. "0;57.20593170495715,99.75033120129565%"
  1955. ]
  1956. },
  1957. "orientation": {
  1958. "type": "double",
  1959. "value": "0;94.04958170327134"
  1960. },
  1961. "scale": {
  1962. "type": "list<double>",
  1963. "value": [
  1964. 1,
  1965. 1
  1966. ]
  1967. },
  1968. "arrow": "arrowTail",
  1969. "arrowType": "diamond-black-large",
  1970. "$linkDecoratorInfo": {
  1971. "type": "map<string,double>",
  1972. "value": {
  1973. "xratio": 1,
  1974. "yoffset": -10
  1975. }
  1976. }
  1977. },
  1978. "269": {
  1979. "r": {
  1980. "type": "double",
  1981. "value": 10
  1982. },
  1983. "style": {
  1984. "type": "map<string,string>",
  1985. "value": {
  1986. "stroke": "#000000",
  1987. "fill": "#000000",
  1988. "opacity": 0,
  1989. "stroke-width": 1
  1990. }
  1991. },
  1992. "mapper": {
  1993. "type": "code",
  1994. "value": ""
  1995. },
  1996. "parser": {
  1997. "type": "code",
  1998. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1999. },
  2000. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  2001. "position": {
  2002. "type": "list<double>",
  2003. "value": [
  2004. "0;5.975051904561155,-7.061970350534148%",
  2005. "0;57.20593170495715,99.75033120129565%"
  2006. ]
  2007. },
  2008. "orientation": {
  2009. "type": "double",
  2010. "value": "0;94.04958170327134"
  2011. },
  2012. "scale": {
  2013. "type": "list<double>",
  2014. "value": [
  2015. 1,
  2016. 1
  2017. ]
  2018. },
  2019. "arrow": "arrowTail",
  2020. "arrowType": "circle-black-large",
  2021. "$linkDecoratorInfo": {
  2022. "type": "map<string,double>",
  2023. "value": {
  2024. "xratio": 1,
  2025. "yoffset": -10
  2026. }
  2027. }
  2028. },
  2029. "270": {
  2030. "r": {
  2031. "type": "double",
  2032. "value": 10
  2033. },
  2034. "style": {
  2035. "type": "map<string,string>",
  2036. "value": {
  2037. "stroke": "#000000",
  2038. "fill": "#ffffff",
  2039. "opacity": 0,
  2040. "stroke-width": 1
  2041. }
  2042. },
  2043. "mapper": {
  2044. "type": "code",
  2045. "value": ""
  2046. },
  2047. "parser": {
  2048. "type": "code",
  2049. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2050. },
  2051. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  2052. "position": {
  2053. "type": "list<double>",
  2054. "value": [
  2055. "0;5.975051904561155,-7.061970350534148%",
  2056. "0;57.20593170495715,99.75033120129565%"
  2057. ]
  2058. },
  2059. "orientation": {
  2060. "type": "double",
  2061. "value": "0;94.04958170327134"
  2062. },
  2063. "scale": {
  2064. "type": "list<double>",
  2065. "value": [
  2066. 1,
  2067. 1
  2068. ]
  2069. },
  2070. "arrow": "arrowTail",
  2071. "arrowType": "circle-white-large",
  2072. "$linkDecoratorInfo": {
  2073. "type": "map<string,double>",
  2074. "value": {
  2075. "xratio": 1,
  2076. "yoffset": -10
  2077. }
  2078. }
  2079. },
  2080. "271": {
  2081. "r": {
  2082. "type": "double",
  2083. "value": 5
  2084. },
  2085. "style": {
  2086. "type": "map<string,string>",
  2087. "value": {
  2088. "stroke": "#000000",
  2089. "fill": "#000000",
  2090. "opacity": 0,
  2091. "stroke-width": 1
  2092. }
  2093. },
  2094. "mapper": {
  2095. "type": "code",
  2096. "value": ""
  2097. },
  2098. "parser": {
  2099. "type": "code",
  2100. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2101. },
  2102. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  2103. "position": {
  2104. "type": "list<double>",
  2105. "value": [
  2106. "0;0.9875353444964503,-7.061970350534148%",
  2107. "0;56.852833187430406,99.75033120129565%"
  2108. ]
  2109. },
  2110. "orientation": {
  2111. "type": "double",
  2112. "value": "0;94.04958170327134"
  2113. },
  2114. "scale": {
  2115. "type": "list<double>",
  2116. "value": [
  2117. 1,
  2118. 1
  2119. ]
  2120. },
  2121. "arrow": "arrowTail",
  2122. "arrowType": "circle-black",
  2123. "$linkDecoratorInfo": {
  2124. "type": "map<string,double>",
  2125. "value": {
  2126. "xratio": 1,
  2127. "yoffset": -5
  2128. }
  2129. }
  2130. },
  2131. "272": {
  2132. "segments": {
  2133. "type": "string",
  2134. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  2135. },
  2136. "style": {
  2137. "type": "map<string,string>",
  2138. "value": {
  2139. "stroke": "#000000",
  2140. "fill": "#000000",
  2141. "opacity": 0,
  2142. "stroke-width": 1
  2143. }
  2144. },
  2145. "mapper": {
  2146. "type": "code",
  2147. "value": ""
  2148. },
  2149. "parser": {
  2150. "type": "code",
  2151. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2152. },
  2153. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2154. "position": {
  2155. "type": "list<double>",
  2156. "value": [
  2157. "0;0.9875353444964503,-7.061970350534148%",
  2158. "0;56.852833187430406,99.75033120129565%"
  2159. ]
  2160. },
  2161. "orientation": {
  2162. "type": "double",
  2163. "value": "0;94.04958170327134"
  2164. },
  2165. "scale": {
  2166. "type": "list<double>",
  2167. "value": [
  2168. 1,
  2169. 1
  2170. ]
  2171. },
  2172. "arrow": "arrowTail",
  2173. "arrowType": "diamond-black",
  2174. "$linkDecoratorInfo": {
  2175. "type": "map<string,double>",
  2176. "value": {
  2177. "xratio": 1,
  2178. "yoffset": -5
  2179. }
  2180. }
  2181. },
  2182. "273": {
  2183. "segments": {
  2184. "type": "string",
  2185. "value": "m0,0 l20,10 l-20,10 z"
  2186. },
  2187. "style": {
  2188. "type": "map<string,string>",
  2189. "value": {
  2190. "stroke": "#000000",
  2191. "fill": "#000000",
  2192. "opacity": 0,
  2193. "stroke-width": 1
  2194. }
  2195. },
  2196. "mapper": {
  2197. "type": "code",
  2198. "value": ""
  2199. },
  2200. "parser": {
  2201. "type": "code",
  2202. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2203. },
  2204. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2205. "position": {
  2206. "type": "list<double>",
  2207. "value": [
  2208. "0;5.975051904561155,-7.061970350534148%",
  2209. "0;57.20593170495715,99.75033120129565%"
  2210. ]
  2211. },
  2212. "orientation": {
  2213. "type": "double",
  2214. "value": "0;94.04958170327134"
  2215. },
  2216. "scale": {
  2217. "type": "list<double>",
  2218. "value": [
  2219. 1,
  2220. 1
  2221. ]
  2222. },
  2223. "arrow": "arrowTail",
  2224. "arrowType": "triangle-black-large",
  2225. "$linkDecoratorInfo": {
  2226. "type": "map<string,double>",
  2227. "value": {
  2228. "xratio": 1,
  2229. "yoffset": -10
  2230. }
  2231. }
  2232. },
  2233. "274": {
  2234. "segments": {
  2235. "type": "string",
  2236. "value": "m0,0 l10,4 l-10,4 z"
  2237. },
  2238. "style": {
  2239. "type": "map<string,string>",
  2240. "value": {
  2241. "stroke": "#000000",
  2242. "fill": "#000000",
  2243. "opacity": 0,
  2244. "stroke-width": 1
  2245. }
  2246. },
  2247. "mapper": {
  2248. "type": "code",
  2249. "value": ""
  2250. },
  2251. "parser": {
  2252. "type": "code",
  2253. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2254. },
  2255. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2256. "position": {
  2257. "type": "list<double>",
  2258. "value": [
  2259. "0;-0.009967967516558929,-7.061970350534148%",
  2260. "0;56.78221348392509,99.75033120129565%"
  2261. ]
  2262. },
  2263. "orientation": {
  2264. "type": "double",
  2265. "value": "0;94.04958170327134"
  2266. },
  2267. "scale": {
  2268. "type": "list<double>",
  2269. "value": [
  2270. 1,
  2271. 1
  2272. ]
  2273. },
  2274. "arrow": "arrowTail",
  2275. "arrowType": "triangle-black",
  2276. "$linkDecoratorInfo": {
  2277. "type": "map<string,double>",
  2278. "value": {
  2279. "xratio": 1,
  2280. "yoffset": -4
  2281. }
  2282. }
  2283. },
  2284. "275": {
  2285. "segments": {
  2286. "type": "string",
  2287. "value": "m0,0 l20,8 l-20,8 l6,-8 z"
  2288. },
  2289. "style": {
  2290. "type": "map<string,string>",
  2291. "value": {
  2292. "stroke": "#000000",
  2293. "fill": "#000000",
  2294. "opacity": 0,
  2295. "stroke-width": 1
  2296. }
  2297. },
  2298. "mapper": {
  2299. "type": "code",
  2300. "value": ""
  2301. },
  2302. "parser": {
  2303. "type": "code",
  2304. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2305. },
  2306. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2307. "position": {
  2308. "type": "list<double>",
  2309. "value": [
  2310. "0;3.9800452805352506,-7.061970350534148%",
  2311. "0;57.064692297946465,99.75033120129565%"
  2312. ]
  2313. },
  2314. "orientation": {
  2315. "type": "double",
  2316. "value": "0;94.04958170327134"
  2317. },
  2318. "scale": {
  2319. "type": "list<double>",
  2320. "value": [
  2321. 1,
  2322. 1
  2323. ]
  2324. },
  2325. "arrow": "arrowTail",
  2326. "arrowType": "arrow-black-large",
  2327. "$linkDecoratorInfo": {
  2328. "type": "map<string,double>",
  2329. "value": {
  2330. "xratio": 1,
  2331. "yoffset": -8
  2332. }
  2333. }
  2334. },
  2335. "276": {
  2336. "segments": {
  2337. "type": "string",
  2338. "value": "m0,0 l20,10 l-20,10 z"
  2339. },
  2340. "style": {
  2341. "type": "map<string,string>",
  2342. "value": {
  2343. "stroke": "#000000",
  2344. "fill": "#ffffff",
  2345. "opacity": 0,
  2346. "stroke-width": 1
  2347. }
  2348. },
  2349. "mapper": {
  2350. "type": "code",
  2351. "value": ""
  2352. },
  2353. "parser": {
  2354. "type": "code",
  2355. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2356. },
  2357. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2358. "position": {
  2359. "type": "list<double>",
  2360. "value": [
  2361. "0;5.975051904561155,-7.061970350534148%",
  2362. "0;57.20593170495715,99.75033120129565%"
  2363. ]
  2364. },
  2365. "orientation": {
  2366. "type": "double",
  2367. "value": "0;94.04958170327134"
  2368. },
  2369. "scale": {
  2370. "type": "list<double>",
  2371. "value": [
  2372. 1,
  2373. 1
  2374. ]
  2375. },
  2376. "arrow": "arrowTail",
  2377. "arrowType": "triangle-white-large",
  2378. "$linkDecoratorInfo": {
  2379. "type": "map<string,double>",
  2380. "value": {
  2381. "xratio": 1,
  2382. "yoffset": -10
  2383. }
  2384. }
  2385. },
  2386. "277": {
  2387. "segments": {
  2388. "type": "string",
  2389. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  2390. },
  2391. "style": {
  2392. "type": "map<string,string>",
  2393. "value": {
  2394. "stroke": "#000000",
  2395. "fill": "#ffffff",
  2396. "opacity": 0,
  2397. "stroke-width": 1
  2398. }
  2399. },
  2400. "mapper": {
  2401. "type": "code",
  2402. "value": ""
  2403. },
  2404. "parser": {
  2405. "type": "code",
  2406. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2407. },
  2408. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2409. "position": {
  2410. "type": "list<double>",
  2411. "value": [
  2412. "0;0.9875353444964503,-7.061970350534148%",
  2413. "0;56.852833187430406,99.75033120129565%"
  2414. ]
  2415. },
  2416. "orientation": {
  2417. "type": "double",
  2418. "value": "0;94.04958170327134"
  2419. },
  2420. "scale": {
  2421. "type": "list<double>",
  2422. "value": [
  2423. 1,
  2424. 1
  2425. ]
  2426. },
  2427. "arrow": "arrowTail",
  2428. "arrowType": "diamond-white",
  2429. "$linkDecoratorInfo": {
  2430. "type": "map<string,double>",
  2431. "value": {
  2432. "xratio": 1,
  2433. "yoffset": -5
  2434. }
  2435. }
  2436. },
  2437. "278": {
  2438. "segments": {
  2439. "type": "string",
  2440. "value": "m0,0 l20,8 l-20,8"
  2441. },
  2442. "style": {
  2443. "type": "map<string,string>",
  2444. "value": {
  2445. "stroke": "#000000",
  2446. "fill": "#000000",
  2447. "fill-opacity": 0,
  2448. "stroke-width": 1,
  2449. "opacity": 0
  2450. }
  2451. },
  2452. "mapper": {
  2453. "type": "code",
  2454. "value": ""
  2455. },
  2456. "parser": {
  2457. "type": "code",
  2458. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2459. },
  2460. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2461. "position": {
  2462. "type": "list<double>",
  2463. "value": [
  2464. "0;3.9800452805352506,-7.061970350534148%",
  2465. "0;57.064692297946465,99.75033120129565%"
  2466. ]
  2467. },
  2468. "orientation": {
  2469. "type": "double",
  2470. "value": "0;94.04958170327134"
  2471. },
  2472. "scale": {
  2473. "type": "list<double>",
  2474. "value": [
  2475. 1,
  2476. 1
  2477. ]
  2478. },
  2479. "arrow": "arrowTail",
  2480. "arrowType": "arrow-empty-large",
  2481. "$linkDecoratorInfo": {
  2482. "type": "map<string,double>",
  2483. "value": {
  2484. "xratio": 1,
  2485. "yoffset": -8
  2486. }
  2487. }
  2488. },
  2489. "279": {
  2490. "r": {
  2491. "type": "double",
  2492. "value": 5
  2493. },
  2494. "style": {
  2495. "type": "map<string,string>",
  2496. "value": {
  2497. "stroke": "#000000",
  2498. "fill": "#ffffff",
  2499. "opacity": 0,
  2500. "stroke-width": 1
  2501. }
  2502. },
  2503. "mapper": {
  2504. "type": "code",
  2505. "value": ""
  2506. },
  2507. "parser": {
  2508. "type": "code",
  2509. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2510. },
  2511. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  2512. "position": {
  2513. "type": "list<double>",
  2514. "value": [
  2515. "0;0.9875353444964503,-7.061970350534148%",
  2516. "0;56.852833187430406,99.75033120129565%"
  2517. ]
  2518. },
  2519. "orientation": {
  2520. "type": "double",
  2521. "value": "0;94.04958170327134"
  2522. },
  2523. "scale": {
  2524. "type": "list<double>",
  2525. "value": [
  2526. 1,
  2527. 1
  2528. ]
  2529. },
  2530. "arrow": "arrowTail",
  2531. "arrowType": "circle-white",
  2532. "$linkDecoratorInfo": {
  2533. "type": "map<string,double>",
  2534. "value": {
  2535. "xratio": 1,
  2536. "yoffset": -5
  2537. }
  2538. }
  2539. },
  2540. "280": {
  2541. "segments": {
  2542. "type": "string",
  2543. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  2544. },
  2545. "style": {
  2546. "type": "map<string,string>",
  2547. "value": {
  2548. "stroke": "#000000",
  2549. "fill": "#ffffff",
  2550. "opacity": 0,
  2551. "stroke-width": 1
  2552. }
  2553. },
  2554. "mapper": {
  2555. "type": "code",
  2556. "value": ""
  2557. },
  2558. "parser": {
  2559. "type": "code",
  2560. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2561. },
  2562. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2563. "position": {
  2564. "type": "list<double>",
  2565. "value": [
  2566. "0;5.975051904561155,-7.061970350534148%",
  2567. "0;57.20593170495715,99.75033120129565%"
  2568. ]
  2569. },
  2570. "orientation": {
  2571. "type": "double",
  2572. "value": "0;94.04958170327134"
  2573. },
  2574. "scale": {
  2575. "type": "list<double>",
  2576. "value": [
  2577. 1,
  2578. 1
  2579. ]
  2580. },
  2581. "arrow": "arrowTail",
  2582. "arrowType": "diamond-white-large",
  2583. "$linkDecoratorInfo": {
  2584. "type": "map<string,double>",
  2585. "value": {
  2586. "xratio": 1,
  2587. "yoffset": -10
  2588. }
  2589. }
  2590. },
  2591. "281": {
  2592. "segments": {
  2593. "type": "string",
  2594. "value": "m0,0 l10,4 l-10,4"
  2595. },
  2596. "style": {
  2597. "type": "map<string,string>",
  2598. "value": {
  2599. "stroke": "#000000",
  2600. "fill": "#000000",
  2601. "fill-opacity": 0,
  2602. "stroke-width": 1,
  2603. "opacity": 0
  2604. }
  2605. },
  2606. "mapper": {
  2607. "type": "code",
  2608. "value": ""
  2609. },
  2610. "parser": {
  2611. "type": "code",
  2612. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2613. },
  2614. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2615. "position": {
  2616. "type": "list<double>",
  2617. "value": [
  2618. "0;-0.009967967516558929,-7.061970350534148%",
  2619. "0;56.78221348392509,99.75033120129565%"
  2620. ]
  2621. },
  2622. "orientation": {
  2623. "type": "double",
  2624. "value": "0;94.04958170327134"
  2625. },
  2626. "scale": {
  2627. "type": "list<double>",
  2628. "value": [
  2629. 1,
  2630. 1
  2631. ]
  2632. },
  2633. "arrow": "arrowTail",
  2634. "arrowType": "arrow-empty",
  2635. "$linkDecoratorInfo": {
  2636. "type": "map<string,double>",
  2637. "value": {
  2638. "xratio": 1,
  2639. "yoffset": -4
  2640. }
  2641. }
  2642. },
  2643. "282": {
  2644. "segments": {
  2645. "type": "string",
  2646. "value": "m0,0 l10,5 l-10,5 z"
  2647. },
  2648. "style": {
  2649. "type": "map<string,string>",
  2650. "value": {
  2651. "stroke": "#000000",
  2652. "fill": "#ffffff",
  2653. "opacity": 0,
  2654. "stroke-width": 1
  2655. }
  2656. },
  2657. "mapper": {
  2658. "type": "code",
  2659. "value": ""
  2660. },
  2661. "parser": {
  2662. "type": "code",
  2663. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2664. },
  2665. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2666. "position": {
  2667. "type": "list<double>",
  2668. "value": [
  2669. "0;0.9875353444964503,-7.061970350534148%",
  2670. "0;56.852833187430406,99.75033120129565%"
  2671. ]
  2672. },
  2673. "orientation": {
  2674. "type": "double",
  2675. "value": "0;94.04958170327134"
  2676. },
  2677. "scale": {
  2678. "type": "list<double>",
  2679. "value": [
  2680. 1,
  2681. 1
  2682. ]
  2683. },
  2684. "arrow": "arrowTail",
  2685. "arrowType": "triangle-white",
  2686. "$linkDecoratorInfo": {
  2687. "type": "map<string,double>",
  2688. "value": {
  2689. "xratio": 1,
  2690. "yoffset": -5
  2691. }
  2692. }
  2693. },
  2694. "283": {
  2695. "segments": {
  2696. "type": "string",
  2697. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  2698. },
  2699. "style": {
  2700. "type": "map<string,string>",
  2701. "value": {
  2702. "stroke": "#000000",
  2703. "fill": "#ffffff",
  2704. "opacity": 0,
  2705. "stroke-width": 1
  2706. }
  2707. },
  2708. "mapper": {
  2709. "type": "code",
  2710. "value": ""
  2711. },
  2712. "parser": {
  2713. "type": "code",
  2714. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2715. },
  2716. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2717. "position": {
  2718. "type": "list<double>",
  2719. "value": [
  2720. "0;8.987516560064819,0%",
  2721. "0;-56.14690148247331,0%"
  2722. ]
  2723. },
  2724. "orientation": {
  2725. "type": "double",
  2726. "value": "0;94.04958170327139"
  2727. },
  2728. "scale": {
  2729. "type": "list<double>",
  2730. "value": [
  2731. 1,
  2732. 1
  2733. ]
  2734. },
  2735. "arrow": "arrowHead",
  2736. "arrowType": "diamond-white",
  2737. "$linkDecoratorInfo": {
  2738. "type": "map<string,double>",
  2739. "value": {
  2740. "xratio": -1,
  2741. "yoffset": -5
  2742. }
  2743. }
  2744. },
  2745. "284": {
  2746. "segments": {
  2747. "type": "string",
  2748. "value": "m0,0 l-10,5 l10,5 z"
  2749. },
  2750. "style": {
  2751. "type": "map<string,string>",
  2752. "value": {
  2753. "stroke": "#000000",
  2754. "fill": "#ffffff",
  2755. "opacity": 0,
  2756. "stroke-width": 1
  2757. }
  2758. },
  2759. "mapper": {
  2760. "type": "code",
  2761. "value": ""
  2762. },
  2763. "parser": {
  2764. "type": "code",
  2765. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2766. },
  2767. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2768. "position": {
  2769. "type": "list<double>",
  2770. "value": [
  2771. "0;8.987516560064819,0%",
  2772. "0;-56.14690148247331,0%"
  2773. ]
  2774. },
  2775. "orientation": {
  2776. "type": "double",
  2777. "value": "0;94.04958170327139"
  2778. },
  2779. "scale": {
  2780. "type": "list<double>",
  2781. "value": [
  2782. 1,
  2783. 1
  2784. ]
  2785. },
  2786. "arrow": "arrowHead",
  2787. "arrowType": "triangle-white",
  2788. "$linkDecoratorInfo": {
  2789. "type": "map<string,double>",
  2790. "value": {
  2791. "xratio": -1,
  2792. "yoffset": -5
  2793. }
  2794. }
  2795. },
  2796. "285": {
  2797. "segments": {
  2798. "type": "string",
  2799. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  2800. },
  2801. "style": {
  2802. "type": "map<string,string>",
  2803. "value": {
  2804. "stroke": "#000000",
  2805. "fill": "#000000",
  2806. "opacity": 0,
  2807. "stroke-width": 1
  2808. }
  2809. },
  2810. "mapper": {
  2811. "type": "code",
  2812. "value": ""
  2813. },
  2814. "parser": {
  2815. "type": "code",
  2816. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2817. },
  2818. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2819. "position": {
  2820. "type": "list<double>",
  2821. "value": [
  2822. "0;8.987516560064819,0%",
  2823. "0;-56.14690148247331,0%"
  2824. ]
  2825. },
  2826. "orientation": {
  2827. "type": "double",
  2828. "value": "0;94.04958170327139"
  2829. },
  2830. "scale": {
  2831. "type": "list<double>",
  2832. "value": [
  2833. 1,
  2834. 1
  2835. ]
  2836. },
  2837. "arrow": "arrowHead",
  2838. "arrowType": "diamond-black",
  2839. "$linkDecoratorInfo": {
  2840. "type": "map<string,double>",
  2841. "value": {
  2842. "xratio": -1,
  2843. "yoffset": -5
  2844. }
  2845. }
  2846. },
  2847. "286": {
  2848. "r": {
  2849. "type": "double",
  2850. "value": 10
  2851. },
  2852. "style": {
  2853. "type": "map<string,string>",
  2854. "value": {
  2855. "stroke": "#000000",
  2856. "fill": "#000000",
  2857. "opacity": 0,
  2858. "stroke-width": 1
  2859. }
  2860. },
  2861. "mapper": {
  2862. "type": "code",
  2863. "value": ""
  2864. },
  2865. "parser": {
  2866. "type": "code",
  2867. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2868. },
  2869. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  2870. "position": {
  2871. "type": "list<double>",
  2872. "value": [
  2873. "0;13.975033120129524,0%",
  2874. "0;-55.793802964946565,0%"
  2875. ]
  2876. },
  2877. "orientation": {
  2878. "type": "double",
  2879. "value": "0;94.04958170327139"
  2880. },
  2881. "scale": {
  2882. "type": "list<double>",
  2883. "value": [
  2884. 1,
  2885. 1
  2886. ]
  2887. },
  2888. "arrow": "arrowHead",
  2889. "arrowType": "circle-black-large",
  2890. "$linkDecoratorInfo": {
  2891. "type": "map<string,double>",
  2892. "value": {
  2893. "xratio": -1,
  2894. "yoffset": -10
  2895. }
  2896. }
  2897. },
  2898. "287": {
  2899. "segments": {
  2900. "type": "string",
  2901. "value": "m0,0 l-20,8 l20,8 l-6,-8 z"
  2902. },
  2903. "style": {
  2904. "type": "map<string,string>",
  2905. "value": {
  2906. "stroke": "#000000",
  2907. "fill": "#000000",
  2908. "opacity": 0,
  2909. "stroke-width": 1
  2910. }
  2911. },
  2912. "mapper": {
  2913. "type": "code",
  2914. "value": ""
  2915. },
  2916. "parser": {
  2917. "type": "code",
  2918. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2919. },
  2920. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2921. "position": {
  2922. "type": "list<double>",
  2923. "value": [
  2924. "0;11.98002649610362,0%",
  2925. "0;-55.93504237195725,0%"
  2926. ]
  2927. },
  2928. "orientation": {
  2929. "type": "double",
  2930. "value": "0;94.04958170327139"
  2931. },
  2932. "scale": {
  2933. "type": "list<double>",
  2934. "value": [
  2935. 1,
  2936. 1
  2937. ]
  2938. },
  2939. "arrow": "arrowHead",
  2940. "arrowType": "arrow-black-large",
  2941. "$linkDecoratorInfo": {
  2942. "type": "map<string,double>",
  2943. "value": {
  2944. "xratio": -1,
  2945. "yoffset": -8
  2946. }
  2947. }
  2948. },
  2949. "288": {
  2950. "segments": {
  2951. "type": "string",
  2952. "value": "m0,0 l-10,4 l10,4 l-3,-4 z"
  2953. },
  2954. "style": {
  2955. "type": "map<string,string>",
  2956. "value": {
  2957. "stroke": "#000000",
  2958. "fill": "#000000",
  2959. "opacity": 0,
  2960. "stroke-width": 1
  2961. }
  2962. },
  2963. "mapper": {
  2964. "type": "code",
  2965. "value": ""
  2966. },
  2967. "parser": {
  2968. "type": "code",
  2969. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2970. },
  2971. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2972. "position": {
  2973. "type": "list<double>",
  2974. "value": [
  2975. "0;7.99001324805181,0%",
  2976. "0;-56.217521185978626,0%"
  2977. ]
  2978. },
  2979. "orientation": {
  2980. "type": "double",
  2981. "value": "0;94.04958170327139"
  2982. },
  2983. "scale": {
  2984. "type": "list<double>",
  2985. "value": [
  2986. 1,
  2987. 1
  2988. ]
  2989. },
  2990. "arrow": "arrowHead",
  2991. "arrowType": "arrow-black",
  2992. "$linkDecoratorInfo": {
  2993. "type": "map<string,double>",
  2994. "value": {
  2995. "xratio": -1,
  2996. "yoffset": -4
  2997. }
  2998. }
  2999. },
  3000. "289": {
  3001. "segments": {
  3002. "type": "string",
  3003. "value": "m0,0 l-20,10 l20,10 z"
  3004. },
  3005. "style": {
  3006. "type": "map<string,string>",
  3007. "value": {
  3008. "stroke": "#000000",
  3009. "fill": "#ffffff",
  3010. "opacity": 0,
  3011. "stroke-width": 1
  3012. }
  3013. },
  3014. "mapper": {
  3015. "type": "code",
  3016. "value": ""
  3017. },
  3018. "parser": {
  3019. "type": "code",
  3020. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3021. },
  3022. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3023. "position": {
  3024. "type": "list<double>",
  3025. "value": [
  3026. "0;13.975033120129524,0%",
  3027. "0;-55.793802964946565,0%"
  3028. ]
  3029. },
  3030. "orientation": {
  3031. "type": "double",
  3032. "value": "0;94.04958170327139"
  3033. },
  3034. "scale": {
  3035. "type": "list<double>",
  3036. "value": [
  3037. 1,
  3038. 1
  3039. ]
  3040. },
  3041. "arrow": "arrowHead",
  3042. "arrowType": "triangle-white-large",
  3043. "$linkDecoratorInfo": {
  3044. "type": "map<string,double>",
  3045. "value": {
  3046. "xratio": -1,
  3047. "yoffset": -10
  3048. }
  3049. }
  3050. },
  3051. "290": {
  3052. "segments": {
  3053. "type": "string",
  3054. "value": "m0,0 l-20,10 l20,10 z"
  3055. },
  3056. "style": {
  3057. "type": "map<string,string>",
  3058. "value": {
  3059. "stroke": "#000000",
  3060. "fill": "#000000",
  3061. "opacity": 0,
  3062. "stroke-width": 1
  3063. }
  3064. },
  3065. "mapper": {
  3066. "type": "code",
  3067. "value": ""
  3068. },
  3069. "parser": {
  3070. "type": "code",
  3071. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3072. },
  3073. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3074. "position": {
  3075. "type": "list<double>",
  3076. "value": [
  3077. "0;13.975033120129524,0%",
  3078. "0;-55.793802964946565,0%"
  3079. ]
  3080. },
  3081. "orientation": {
  3082. "type": "double",
  3083. "value": "0;94.04958170327139"
  3084. },
  3085. "scale": {
  3086. "type": "list<double>",
  3087. "value": [
  3088. 1,
  3089. 1
  3090. ]
  3091. },
  3092. "arrow": "arrowHead",
  3093. "arrowType": "triangle-black-large",
  3094. "$linkDecoratorInfo": {
  3095. "type": "map<string,double>",
  3096. "value": {
  3097. "xratio": -1,
  3098. "yoffset": -10
  3099. }
  3100. }
  3101. },
  3102. "291": {
  3103. "r": {
  3104. "type": "double",
  3105. "value": 5
  3106. },
  3107. "style": {
  3108. "type": "map<string,string>",
  3109. "value": {
  3110. "stroke": "#000000",
  3111. "fill": "#000000",
  3112. "opacity": 0,
  3113. "stroke-width": 1
  3114. }
  3115. },
  3116. "mapper": {
  3117. "type": "code",
  3118. "value": ""
  3119. },
  3120. "parser": {
  3121. "type": "code",
  3122. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3123. },
  3124. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  3125. "position": {
  3126. "type": "list<double>",
  3127. "value": [
  3128. "0;8.987516560064819,0%",
  3129. "0;-56.14690148247331,0%"
  3130. ]
  3131. },
  3132. "orientation": {
  3133. "type": "double",
  3134. "value": "0;94.04958170327139"
  3135. },
  3136. "scale": {
  3137. "type": "list<double>",
  3138. "value": [
  3139. 1,
  3140. 1
  3141. ]
  3142. },
  3143. "arrow": "arrowHead",
  3144. "arrowType": "circle-black",
  3145. "$linkDecoratorInfo": {
  3146. "type": "map<string,double>",
  3147. "value": {
  3148. "xratio": -1,
  3149. "yoffset": -5
  3150. }
  3151. }
  3152. },
  3153. "292": {
  3154. "r": {
  3155. "type": "double",
  3156. "value": 5
  3157. },
  3158. "style": {
  3159. "type": "map<string,string>",
  3160. "value": {
  3161. "stroke": "#000000",
  3162. "fill": "#ffffff",
  3163. "opacity": 0,
  3164. "stroke-width": 1
  3165. }
  3166. },
  3167. "mapper": {
  3168. "type": "code",
  3169. "value": ""
  3170. },
  3171. "parser": {
  3172. "type": "code",
  3173. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3174. },
  3175. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  3176. "position": {
  3177. "type": "list<double>",
  3178. "value": [
  3179. "0;8.987516560064819,0%",
  3180. "0;-56.14690148247331,0%"
  3181. ]
  3182. },
  3183. "orientation": {
  3184. "type": "double",
  3185. "value": "0;94.04958170327139"
  3186. },
  3187. "scale": {
  3188. "type": "list<double>",
  3189. "value": [
  3190. 1,
  3191. 1
  3192. ]
  3193. },
  3194. "arrow": "arrowHead",
  3195. "arrowType": "circle-white",
  3196. "$linkDecoratorInfo": {
  3197. "type": "map<string,double>",
  3198. "value": {
  3199. "xratio": -1,
  3200. "yoffset": -5
  3201. }
  3202. }
  3203. },
  3204. "293": {
  3205. "r": {
  3206. "type": "double",
  3207. "value": 10
  3208. },
  3209. "style": {
  3210. "type": "map<string,string>",
  3211. "value": {
  3212. "stroke": "#000000",
  3213. "fill": "#ffffff",
  3214. "opacity": 0,
  3215. "stroke-width": 1
  3216. }
  3217. },
  3218. "mapper": {
  3219. "type": "code",
  3220. "value": ""
  3221. },
  3222. "parser": {
  3223. "type": "code",
  3224. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3225. },
  3226. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  3227. "position": {
  3228. "type": "list<double>",
  3229. "value": [
  3230. "0;13.975033120129524,0%",
  3231. "0;-55.793802964946565,0%"
  3232. ]
  3233. },
  3234. "orientation": {
  3235. "type": "double",
  3236. "value": "0;94.04958170327139"
  3237. },
  3238. "scale": {
  3239. "type": "list<double>",
  3240. "value": [
  3241. 1,
  3242. 1
  3243. ]
  3244. },
  3245. "arrow": "arrowHead",
  3246. "arrowType": "circle-white-large",
  3247. "$linkDecoratorInfo": {
  3248. "type": "map<string,double>",
  3249. "value": {
  3250. "xratio": -1,
  3251. "yoffset": -10
  3252. }
  3253. }
  3254. },
  3255. "294": {
  3256. "segments": {
  3257. "type": "string",
  3258. "value": "m0,0 l-20,8 l20,8"
  3259. },
  3260. "style": {
  3261. "type": "map<string,string>",
  3262. "value": {
  3263. "stroke": "#000000",
  3264. "fill": "#000000",
  3265. "fill-opacity": 0,
  3266. "stroke-width": 1,
  3267. "opacity": 0
  3268. }
  3269. },
  3270. "mapper": {
  3271. "type": "code",
  3272. "value": ""
  3273. },
  3274. "parser": {
  3275. "type": "code",
  3276. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3277. },
  3278. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3279. "position": {
  3280. "type": "list<double>",
  3281. "value": [
  3282. "0;11.98002649610362,0%",
  3283. "0;-55.93504237195725,0%"
  3284. ]
  3285. },
  3286. "orientation": {
  3287. "type": "double",
  3288. "value": "0;94.04958170327139"
  3289. },
  3290. "scale": {
  3291. "type": "list<double>",
  3292. "value": [
  3293. 1,
  3294. 1
  3295. ]
  3296. },
  3297. "arrow": "arrowHead",
  3298. "arrowType": "arrow-empty-large",
  3299. "$linkDecoratorInfo": {
  3300. "type": "map<string,double>",
  3301. "value": {
  3302. "xratio": -1,
  3303. "yoffset": -8
  3304. }
  3305. }
  3306. },
  3307. "295": {
  3308. "segments": {
  3309. "type": "string",
  3310. "value": "m0,0 l-10,4 l10,4"
  3311. },
  3312. "style": {
  3313. "type": "map<string,string>",
  3314. "value": {
  3315. "stroke": "#000000",
  3316. "fill": "#000000",
  3317. "fill-opacity": 0,
  3318. "stroke-width": 1,
  3319. "opacity": 0
  3320. }
  3321. },
  3322. "mapper": {
  3323. "type": "code",
  3324. "value": ""
  3325. },
  3326. "parser": {
  3327. "type": "code",
  3328. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3329. },
  3330. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3331. "position": {
  3332. "type": "list<double>",
  3333. "value": [
  3334. "0;7.99001324805181,0%",
  3335. "0;-56.217521185978626,0%"
  3336. ]
  3337. },
  3338. "orientation": {
  3339. "type": "double",
  3340. "value": "0;94.04958170327139"
  3341. },
  3342. "scale": {
  3343. "type": "list<double>",
  3344. "value": [
  3345. 1,
  3346. 1
  3347. ]
  3348. },
  3349. "arrow": "arrowHead",
  3350. "arrowType": "arrow-empty",
  3351. "$linkDecoratorInfo": {
  3352. "type": "map<string,double>",
  3353. "value": {
  3354. "xratio": -1,
  3355. "yoffset": -4
  3356. }
  3357. }
  3358. },
  3359. "296": {
  3360. "segments": {
  3361. "type": "string",
  3362. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  3363. },
  3364. "style": {
  3365. "type": "map<string,string>",
  3366. "value": {
  3367. "stroke": "#000000",
  3368. "fill": "#000000",
  3369. "opacity": 0,
  3370. "stroke-width": 1
  3371. }
  3372. },
  3373. "mapper": {
  3374. "type": "code",
  3375. "value": ""
  3376. },
  3377. "parser": {
  3378. "type": "code",
  3379. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3380. },
  3381. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3382. "position": {
  3383. "type": "list<double>",
  3384. "value": [
  3385. "0;13.975033120129524,0%",
  3386. "0;-55.793802964946565,0%"
  3387. ]
  3388. },
  3389. "orientation": {
  3390. "type": "double",
  3391. "value": "0;94.04958170327139"
  3392. },
  3393. "scale": {
  3394. "type": "list<double>",
  3395. "value": [
  3396. 1,
  3397. 1
  3398. ]
  3399. },
  3400. "arrow": "arrowHead",
  3401. "arrowType": "diamond-black-large",
  3402. "$linkDecoratorInfo": {
  3403. "type": "map<string,double>",
  3404. "value": {
  3405. "xratio": -1,
  3406. "yoffset": -10
  3407. }
  3408. }
  3409. },
  3410. "297": {
  3411. "segments": {
  3412. "type": "string",
  3413. "value": "m0,0 l-10,4 l10,4 z"
  3414. },
  3415. "style": {
  3416. "type": "map<string,string>",
  3417. "value": {
  3418. "stroke": "#000000",
  3419. "fill": "#000000",
  3420. "opacity": 0,
  3421. "stroke-width": 1
  3422. }
  3423. },
  3424. "mapper": {
  3425. "type": "code",
  3426. "value": ""
  3427. },
  3428. "parser": {
  3429. "type": "code",
  3430. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3431. },
  3432. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3433. "position": {
  3434. "type": "list<double>",
  3435. "value": [
  3436. "0;7.99001324805181,0%",
  3437. "0;-56.217521185978626,0%"
  3438. ]
  3439. },
  3440. "orientation": {
  3441. "type": "double",
  3442. "value": "0;94.04958170327139"
  3443. },
  3444. "scale": {
  3445. "type": "list<double>",
  3446. "value": [
  3447. 1,
  3448. 1
  3449. ]
  3450. },
  3451. "arrow": "arrowHead",
  3452. "arrowType": "triangle-black",
  3453. "$linkDecoratorInfo": {
  3454. "type": "map<string,double>",
  3455. "value": {
  3456. "xratio": -1,
  3457. "yoffset": -4
  3458. }
  3459. }
  3460. },
  3461. "298": {
  3462. "segments": {
  3463. "type": "string",
  3464. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  3465. },
  3466. "style": {
  3467. "type": "map<string,string>",
  3468. "value": {
  3469. "stroke": "#000000",
  3470. "fill": "#ffffff",
  3471. "opacity": 0,
  3472. "stroke-width": 1
  3473. }
  3474. },
  3475. "mapper": {
  3476. "type": "code",
  3477. "value": ""
  3478. },
  3479. "parser": {
  3480. "type": "code",
  3481. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3482. },
  3483. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3484. "position": {
  3485. "type": "list<double>",
  3486. "value": [
  3487. "0;13.975033120129524,0%",
  3488. "0;-55.793802964946565,0%"
  3489. ]
  3490. },
  3491. "orientation": {
  3492. "type": "double",
  3493. "value": "0;94.04958170327139"
  3494. },
  3495. "scale": {
  3496. "type": "list<double>",
  3497. "value": [
  3498. 1,
  3499. 1
  3500. ]
  3501. },
  3502. "arrow": "arrowHead",
  3503. "arrowType": "diamond-white-large",
  3504. "$linkDecoratorInfo": {
  3505. "type": "map<string,double>",
  3506. "value": {
  3507. "xratio": -1,
  3508. "yoffset": -10
  3509. }
  3510. }
  3511. }
  3512. },
  3513. "edges": []
  3514. }
  3515. },
  3516. "$asuri": {
  3517. "type": "string",
  3518. "value": "/Formalisms/__Transformations__/Transformation/MoTif/initial/90.instance"
  3519. },
  3520. "$segments": {
  3521. "type": "map<string,list<string>>",
  3522. "value": {
  3523. "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/StartIcon/0.instance--/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/initialLink/90.instance": "M673,219L669,275.5",
  3524. "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/initialLink/90.instance--/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/LRuleIcon/88.instance": "M668.9946996646256,275.57486723716227L665.0000187844316,331.9997346699037"
  3525. }
  3526. },
  3527. "$type": "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/initialLink"
  3528. },
  3529. "91": {
  3530. "link-style": {
  3531. "type": "map<string,string>",
  3532. "value": {
  3533. "stroke": "#008080",
  3534. "stroke-dasharray": "",
  3535. "stroke-opacity": 1,
  3536. "stroke-width": 2
  3537. }
  3538. },
  3539. "arrowHead": {
  3540. "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)",
  3541. "value": "custom"
  3542. },
  3543. "arrowTail": {
  3544. "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)",
  3545. "value": "arrow-black"
  3546. },
  3547. "typename": {
  3548. "type": "string",
  3549. "value": "successLink"
  3550. },
  3551. "position": {
  3552. "type": "list<double>",
  3553. "value": [
  3554. 617.5,
  3555. 641
  3556. ]
  3557. },
  3558. "orientation": {
  3559. "type": "double",
  3560. "value": 0
  3561. },
  3562. "scale": {
  3563. "type": "list<double>",
  3564. "value": [
  3565. 1,
  3566. 1
  3567. ]
  3568. },
  3569. "mapper": {
  3570. "type": "code",
  3571. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  3572. },
  3573. "parser": {
  3574. "type": "code",
  3575. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3576. },
  3577. "$contents": {
  3578. "type": "map<string,*>",
  3579. "value": {
  3580. "nodes": {
  3581. "267": {
  3582. "segments": {
  3583. "type": "string",
  3584. "value": "m0,0 l10,4 l-10,4 l3,-4 z"
  3585. },
  3586. "style": {
  3587. "type": "map<string,string>",
  3588. "value": {
  3589. "stroke": "#000000",
  3590. "fill": "#000000",
  3591. "opacity": 0,
  3592. "stroke-width": 1
  3593. }
  3594. },
  3595. "mapper": {
  3596. "type": "code",
  3597. "value": ""
  3598. },
  3599. "parser": {
  3600. "type": "code",
  3601. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3602. },
  3603. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3604. "position": {
  3605. "type": "list<double>",
  3606. "value": [
  3607. "0;3.4995980158162183,-1.428425678284899%",
  3608. "0;35.05670886386599,99.98979747995101%"
  3609. ]
  3610. },
  3611. "orientation": {
  3612. "type": "double",
  3613. "value": "0;90.81845546168854"
  3614. },
  3615. "scale": {
  3616. "type": "list<double>",
  3617. "value": [
  3618. 1,
  3619. 1
  3620. ]
  3621. },
  3622. "arrow": "arrowTail",
  3623. "arrowType": "arrow-black",
  3624. "$linkDecoratorInfo": {
  3625. "type": "map<string,double>",
  3626. "value": {
  3627. "xratio": 1,
  3628. "yoffset": -4
  3629. }
  3630. }
  3631. },
  3632. "268": {
  3633. "segments": {
  3634. "type": "string",
  3635. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  3636. },
  3637. "style": {
  3638. "type": "map<string,string>",
  3639. "value": {
  3640. "stroke": "#000000",
  3641. "fill": "#000000",
  3642. "opacity": 0,
  3643. "stroke-width": 1
  3644. }
  3645. },
  3646. "mapper": {
  3647. "type": "code",
  3648. "value": ""
  3649. },
  3650. "parser": {
  3651. "type": "code",
  3652. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3653. },
  3654. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3655. "position": {
  3656. "type": "list<double>",
  3657. "value": [
  3658. "0;9.498985864613246,-1.428425678284899%",
  3659. "0;35.142414404563056,99.98979747995101%"
  3660. ]
  3661. },
  3662. "orientation": {
  3663. "type": "double",
  3664. "value": "0;90.81845546168854"
  3665. },
  3666. "scale": {
  3667. "type": "list<double>",
  3668. "value": [
  3669. 1,
  3670. 1
  3671. ]
  3672. },
  3673. "arrow": "arrowTail",
  3674. "arrowType": "diamond-black-large",
  3675. "$linkDecoratorInfo": {
  3676. "type": "map<string,double>",
  3677. "value": {
  3678. "xratio": 1,
  3679. "yoffset": -10
  3680. }
  3681. }
  3682. },
  3683. "269": {
  3684. "r": {
  3685. "type": "double",
  3686. "value": 10
  3687. },
  3688. "style": {
  3689. "type": "map<string,string>",
  3690. "value": {
  3691. "stroke": "#000000",
  3692. "fill": "#000000",
  3693. "opacity": 0,
  3694. "stroke-width": 1
  3695. }
  3696. },
  3697. "mapper": {
  3698. "type": "code",
  3699. "value": ""
  3700. },
  3701. "parser": {
  3702. "type": "code",
  3703. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3704. },
  3705. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  3706. "position": {
  3707. "type": "list<double>",
  3708. "value": [
  3709. "0;9.498985864613246,-1.428425678284899%",
  3710. "0;35.142414404563056,99.98979747995101%"
  3711. ]
  3712. },
  3713. "orientation": {
  3714. "type": "double",
  3715. "value": "0;90.81845546168854"
  3716. },
  3717. "scale": {
  3718. "type": "list<double>",
  3719. "value": [
  3720. 1,
  3721. 1
  3722. ]
  3723. },
  3724. "arrow": "arrowTail",
  3725. "arrowType": "circle-black-large",
  3726. "$linkDecoratorInfo": {
  3727. "type": "map<string,double>",
  3728. "value": {
  3729. "xratio": 1,
  3730. "yoffset": -10
  3731. }
  3732. }
  3733. },
  3734. "270": {
  3735. "r": {
  3736. "type": "double",
  3737. "value": 10
  3738. },
  3739. "style": {
  3740. "type": "map<string,string>",
  3741. "value": {
  3742. "stroke": "#000000",
  3743. "fill": "#ffffff",
  3744. "opacity": 0,
  3745. "stroke-width": 1
  3746. }
  3747. },
  3748. "mapper": {
  3749. "type": "code",
  3750. "value": ""
  3751. },
  3752. "parser": {
  3753. "type": "code",
  3754. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3755. },
  3756. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  3757. "position": {
  3758. "type": "list<double>",
  3759. "value": [
  3760. "0;9.498985864613246,-1.428425678284899%",
  3761. "0;35.142414404563056,99.98979747995101%"
  3762. ]
  3763. },
  3764. "orientation": {
  3765. "type": "double",
  3766. "value": "0;90.81845546168854"
  3767. },
  3768. "scale": {
  3769. "type": "list<double>",
  3770. "value": [
  3771. 1,
  3772. 1
  3773. ]
  3774. },
  3775. "arrow": "arrowTail",
  3776. "arrowType": "circle-white-large",
  3777. "$linkDecoratorInfo": {
  3778. "type": "map<string,double>",
  3779. "value": {
  3780. "xratio": 1,
  3781. "yoffset": -10
  3782. }
  3783. }
  3784. },
  3785. "271": {
  3786. "r": {
  3787. "type": "double",
  3788. "value": 5
  3789. },
  3790. "style": {
  3791. "type": "map<string,string>",
  3792. "value": {
  3793. "stroke": "#000000",
  3794. "fill": "#000000",
  3795. "opacity": 0,
  3796. "stroke-width": 1
  3797. }
  3798. },
  3799. "mapper": {
  3800. "type": "code",
  3801. "value": ""
  3802. },
  3803. "parser": {
  3804. "type": "code",
  3805. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3806. },
  3807. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  3808. "position": {
  3809. "type": "list<double>",
  3810. "value": [
  3811. "0;4.499495990615628,-1.428425678284899%",
  3812. "0;35.070993120648836,99.98979747995101%"
  3813. ]
  3814. },
  3815. "orientation": {
  3816. "type": "double",
  3817. "value": "0;90.81845546168854"
  3818. },
  3819. "scale": {
  3820. "type": "list<double>",
  3821. "value": [
  3822. 1,
  3823. 1
  3824. ]
  3825. },
  3826. "arrow": "arrowTail",
  3827. "arrowType": "circle-black",
  3828. "$linkDecoratorInfo": {
  3829. "type": "map<string,double>",
  3830. "value": {
  3831. "xratio": 1,
  3832. "yoffset": -5
  3833. }
  3834. }
  3835. },
  3836. "272": {
  3837. "segments": {
  3838. "type": "string",
  3839. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  3840. },
  3841. "style": {
  3842. "type": "map<string,string>",
  3843. "value": {
  3844. "stroke": "#000000",
  3845. "fill": "#000000",
  3846. "opacity": 0,
  3847. "stroke-width": 1
  3848. }
  3849. },
  3850. "mapper": {
  3851. "type": "code",
  3852. "value": ""
  3853. },
  3854. "parser": {
  3855. "type": "code",
  3856. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3857. },
  3858. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3859. "position": {
  3860. "type": "list<double>",
  3861. "value": [
  3862. "0;4.499495990615628,-1.428425678284899%",
  3863. "0;35.070993120648836,99.98979747995101%"
  3864. ]
  3865. },
  3866. "orientation": {
  3867. "type": "double",
  3868. "value": "0;90.81845546168854"
  3869. },
  3870. "scale": {
  3871. "type": "list<double>",
  3872. "value": [
  3873. 1,
  3874. 1
  3875. ]
  3876. },
  3877. "arrow": "arrowTail",
  3878. "arrowType": "diamond-black",
  3879. "$linkDecoratorInfo": {
  3880. "type": "map<string,double>",
  3881. "value": {
  3882. "xratio": 1,
  3883. "yoffset": -5
  3884. }
  3885. }
  3886. },
  3887. "273": {
  3888. "segments": {
  3889. "type": "string",
  3890. "value": "m0,0 l20,10 l-20,10 z"
  3891. },
  3892. "style": {
  3893. "type": "map<string,string>",
  3894. "value": {
  3895. "stroke": "#000000",
  3896. "fill": "#000000",
  3897. "opacity": 0,
  3898. "stroke-width": 1
  3899. }
  3900. },
  3901. "mapper": {
  3902. "type": "code",
  3903. "value": ""
  3904. },
  3905. "parser": {
  3906. "type": "code",
  3907. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3908. },
  3909. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3910. "position": {
  3911. "type": "list<double>",
  3912. "value": [
  3913. "0;9.498985864613246,-1.428425678284899%",
  3914. "0;35.142414404563056,99.98979747995101%"
  3915. ]
  3916. },
  3917. "orientation": {
  3918. "type": "double",
  3919. "value": "0;90.81845546168854"
  3920. },
  3921. "scale": {
  3922. "type": "list<double>",
  3923. "value": [
  3924. 1,
  3925. 1
  3926. ]
  3927. },
  3928. "arrow": "arrowTail",
  3929. "arrowType": "triangle-black-large",
  3930. "$linkDecoratorInfo": {
  3931. "type": "map<string,double>",
  3932. "value": {
  3933. "xratio": 1,
  3934. "yoffset": -10
  3935. }
  3936. }
  3937. },
  3938. "274": {
  3939. "segments": {
  3940. "type": "string",
  3941. "value": "m0,0 l10,4 l-10,4 z"
  3942. },
  3943. "style": {
  3944. "type": "map<string,string>",
  3945. "value": {
  3946. "stroke": "#000000",
  3947. "fill": "#000000",
  3948. "opacity": 0,
  3949. "stroke-width": 1
  3950. }
  3951. },
  3952. "mapper": {
  3953. "type": "code",
  3954. "value": ""
  3955. },
  3956. "parser": {
  3957. "type": "code",
  3958. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3959. },
  3960. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3961. "position": {
  3962. "type": "list<double>",
  3963. "value": [
  3964. "0;3.4995980158162183,-1.428425678284899%",
  3965. "0;35.05670886386599,99.98979747995101%"
  3966. ]
  3967. },
  3968. "orientation": {
  3969. "type": "double",
  3970. "value": "0;90.81845546168854"
  3971. },
  3972. "scale": {
  3973. "type": "list<double>",
  3974. "value": [
  3975. 1,
  3976. 1
  3977. ]
  3978. },
  3979. "arrow": "arrowTail",
  3980. "arrowType": "triangle-black",
  3981. "$linkDecoratorInfo": {
  3982. "type": "map<string,double>",
  3983. "value": {
  3984. "xratio": 1,
  3985. "yoffset": -4
  3986. }
  3987. }
  3988. },
  3989. "275": {
  3990. "segments": {
  3991. "type": "string",
  3992. "value": "m0,0 l20,8 l-20,8 l6,-8 z"
  3993. },
  3994. "style": {
  3995. "type": "map<string,string>",
  3996. "value": {
  3997. "stroke": "#000000",
  3998. "fill": "#000000",
  3999. "opacity": 0,
  4000. "stroke-width": 1
  4001. }
  4002. },
  4003. "mapper": {
  4004. "type": "code",
  4005. "value": ""
  4006. },
  4007. "parser": {
  4008. "type": "code",
  4009. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4010. },
  4011. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4012. "position": {
  4013. "type": "list<double>",
  4014. "value": [
  4015. "0;7.499189915014199,-1.428425678284899%",
  4016. "0;35.11384589099737,99.98979747995101%"
  4017. ]
  4018. },
  4019. "orientation": {
  4020. "type": "double",
  4021. "value": "0;90.81845546168854"
  4022. },
  4023. "scale": {
  4024. "type": "list<double>",
  4025. "value": [
  4026. 1,
  4027. 1
  4028. ]
  4029. },
  4030. "arrow": "arrowTail",
  4031. "arrowType": "arrow-black-large",
  4032. "$linkDecoratorInfo": {
  4033. "type": "map<string,double>",
  4034. "value": {
  4035. "xratio": 1,
  4036. "yoffset": -8
  4037. }
  4038. }
  4039. },
  4040. "276": {
  4041. "segments": {
  4042. "type": "string",
  4043. "value": "m0,0 l20,10 l-20,10 z"
  4044. },
  4045. "style": {
  4046. "type": "map<string,string>",
  4047. "value": {
  4048. "stroke": "#000000",
  4049. "fill": "#ffffff",
  4050. "opacity": 0,
  4051. "stroke-width": 1
  4052. }
  4053. },
  4054. "mapper": {
  4055. "type": "code",
  4056. "value": ""
  4057. },
  4058. "parser": {
  4059. "type": "code",
  4060. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4061. },
  4062. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4063. "position": {
  4064. "type": "list<double>",
  4065. "value": [
  4066. "0;9.498985864613246,-1.428425678284899%",
  4067. "0;35.142414404563056,99.98979747995101%"
  4068. ]
  4069. },
  4070. "orientation": {
  4071. "type": "double",
  4072. "value": "0;90.81845546168854"
  4073. },
  4074. "scale": {
  4075. "type": "list<double>",
  4076. "value": [
  4077. 1,
  4078. 1
  4079. ]
  4080. },
  4081. "arrow": "arrowTail",
  4082. "arrowType": "triangle-white-large",
  4083. "$linkDecoratorInfo": {
  4084. "type": "map<string,double>",
  4085. "value": {
  4086. "xratio": 1,
  4087. "yoffset": -10
  4088. }
  4089. }
  4090. },
  4091. "277": {
  4092. "segments": {
  4093. "type": "string",
  4094. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  4095. },
  4096. "style": {
  4097. "type": "map<string,string>",
  4098. "value": {
  4099. "stroke": "#000000",
  4100. "fill": "#ffffff",
  4101. "opacity": 0,
  4102. "stroke-width": 1
  4103. }
  4104. },
  4105. "mapper": {
  4106. "type": "code",
  4107. "value": ""
  4108. },
  4109. "parser": {
  4110. "type": "code",
  4111. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4112. },
  4113. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4114. "position": {
  4115. "type": "list<double>",
  4116. "value": [
  4117. "0;4.499495990615628,-1.428425678284899%",
  4118. "0;35.070993120648836,99.98979747995101%"
  4119. ]
  4120. },
  4121. "orientation": {
  4122. "type": "double",
  4123. "value": "0;90.81845546168854"
  4124. },
  4125. "scale": {
  4126. "type": "list<double>",
  4127. "value": [
  4128. 1,
  4129. 1
  4130. ]
  4131. },
  4132. "arrow": "arrowTail",
  4133. "arrowType": "diamond-white",
  4134. "$linkDecoratorInfo": {
  4135. "type": "map<string,double>",
  4136. "value": {
  4137. "xratio": 1,
  4138. "yoffset": -5
  4139. }
  4140. }
  4141. },
  4142. "278": {
  4143. "segments": {
  4144. "type": "string",
  4145. "value": "m0,0 l20,8 l-20,8"
  4146. },
  4147. "style": {
  4148. "type": "map<string,string>",
  4149. "value": {
  4150. "stroke": "#000000",
  4151. "fill": "#000000",
  4152. "fill-opacity": 0,
  4153. "stroke-width": 1,
  4154. "opacity": 0
  4155. }
  4156. },
  4157. "mapper": {
  4158. "type": "code",
  4159. "value": ""
  4160. },
  4161. "parser": {
  4162. "type": "code",
  4163. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4164. },
  4165. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4166. "position": {
  4167. "type": "list<double>",
  4168. "value": [
  4169. "0;7.499189915014199,-1.428425678284899%",
  4170. "0;35.11384589099737,99.98979747995101%"
  4171. ]
  4172. },
  4173. "orientation": {
  4174. "type": "double",
  4175. "value": "0;90.81845546168854"
  4176. },
  4177. "scale": {
  4178. "type": "list<double>",
  4179. "value": [
  4180. 1,
  4181. 1
  4182. ]
  4183. },
  4184. "arrow": "arrowTail",
  4185. "arrowType": "arrow-empty-large",
  4186. "$linkDecoratorInfo": {
  4187. "type": "map<string,double>",
  4188. "value": {
  4189. "xratio": 1,
  4190. "yoffset": -8
  4191. }
  4192. }
  4193. },
  4194. "279": {
  4195. "r": {
  4196. "type": "double",
  4197. "value": 5
  4198. },
  4199. "style": {
  4200. "type": "map<string,string>",
  4201. "value": {
  4202. "stroke": "#000000",
  4203. "fill": "#ffffff",
  4204. "opacity": 0,
  4205. "stroke-width": 1
  4206. }
  4207. },
  4208. "mapper": {
  4209. "type": "code",
  4210. "value": ""
  4211. },
  4212. "parser": {
  4213. "type": "code",
  4214. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4215. },
  4216. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  4217. "position": {
  4218. "type": "list<double>",
  4219. "value": [
  4220. "0;4.499495990615628,-1.428425678284899%",
  4221. "0;35.070993120648836,99.98979747995101%"
  4222. ]
  4223. },
  4224. "orientation": {
  4225. "type": "double",
  4226. "value": "0;90.81845546168854"
  4227. },
  4228. "scale": {
  4229. "type": "list<double>",
  4230. "value": [
  4231. 1,
  4232. 1
  4233. ]
  4234. },
  4235. "arrow": "arrowTail",
  4236. "arrowType": "circle-white",
  4237. "$linkDecoratorInfo": {
  4238. "type": "map<string,double>",
  4239. "value": {
  4240. "xratio": 1,
  4241. "yoffset": -5
  4242. }
  4243. }
  4244. },
  4245. "280": {
  4246. "segments": {
  4247. "type": "string",
  4248. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  4249. },
  4250. "style": {
  4251. "type": "map<string,string>",
  4252. "value": {
  4253. "stroke": "#000000",
  4254. "fill": "#ffffff",
  4255. "opacity": 0,
  4256. "stroke-width": 1
  4257. }
  4258. },
  4259. "mapper": {
  4260. "type": "code",
  4261. "value": ""
  4262. },
  4263. "parser": {
  4264. "type": "code",
  4265. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4266. },
  4267. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4268. "position": {
  4269. "type": "list<double>",
  4270. "value": [
  4271. "0;9.498985864613246,-1.428425678284899%",
  4272. "0;35.142414404563056,99.98979747995101%"
  4273. ]
  4274. },
  4275. "orientation": {
  4276. "type": "double",
  4277. "value": "0;90.81845546168854"
  4278. },
  4279. "scale": {
  4280. "type": "list<double>",
  4281. "value": [
  4282. 1,
  4283. 1
  4284. ]
  4285. },
  4286. "arrow": "arrowTail",
  4287. "arrowType": "diamond-white-large",
  4288. "$linkDecoratorInfo": {
  4289. "type": "map<string,double>",
  4290. "value": {
  4291. "xratio": 1,
  4292. "yoffset": -10
  4293. }
  4294. }
  4295. },
  4296. "281": {
  4297. "segments": {
  4298. "type": "string",
  4299. "value": "m0,0 l10,4 l-10,4"
  4300. },
  4301. "style": {
  4302. "type": "map<string,string>",
  4303. "value": {
  4304. "stroke": "#000000",
  4305. "fill": "#000000",
  4306. "fill-opacity": 0,
  4307. "stroke-width": 1,
  4308. "opacity": 0
  4309. }
  4310. },
  4311. "mapper": {
  4312. "type": "code",
  4313. "value": ""
  4314. },
  4315. "parser": {
  4316. "type": "code",
  4317. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4318. },
  4319. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4320. "position": {
  4321. "type": "list<double>",
  4322. "value": [
  4323. "0;3.4995980158162183,-1.428425678284899%",
  4324. "0;35.05670886386599,99.98979747995101%"
  4325. ]
  4326. },
  4327. "orientation": {
  4328. "type": "double",
  4329. "value": "0;90.81845546168854"
  4330. },
  4331. "scale": {
  4332. "type": "list<double>",
  4333. "value": [
  4334. 1,
  4335. 1
  4336. ]
  4337. },
  4338. "arrow": "arrowTail",
  4339. "arrowType": "arrow-empty",
  4340. "$linkDecoratorInfo": {
  4341. "type": "map<string,double>",
  4342. "value": {
  4343. "xratio": 1,
  4344. "yoffset": -4
  4345. }
  4346. }
  4347. },
  4348. "282": {
  4349. "segments": {
  4350. "type": "string",
  4351. "value": "m0,0 l10,5 l-10,5 z"
  4352. },
  4353. "style": {
  4354. "type": "map<string,string>",
  4355. "value": {
  4356. "stroke": "#000000",
  4357. "fill": "#ffffff",
  4358. "opacity": 0,
  4359. "stroke-width": 1
  4360. }
  4361. },
  4362. "mapper": {
  4363. "type": "code",
  4364. "value": ""
  4365. },
  4366. "parser": {
  4367. "type": "code",
  4368. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4369. },
  4370. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4371. "position": {
  4372. "type": "list<double>",
  4373. "value": [
  4374. "0;4.499495990615628,-1.428425678284899%",
  4375. "0;35.070993120648836,99.98979747995101%"
  4376. ]
  4377. },
  4378. "orientation": {
  4379. "type": "double",
  4380. "value": "0;90.81845546168854"
  4381. },
  4382. "scale": {
  4383. "type": "list<double>",
  4384. "value": [
  4385. 1,
  4386. 1
  4387. ]
  4388. },
  4389. "arrow": "arrowTail",
  4390. "arrowType": "triangle-white",
  4391. "$linkDecoratorInfo": {
  4392. "type": "map<string,double>",
  4393. "value": {
  4394. "xratio": 1,
  4395. "yoffset": -5
  4396. }
  4397. }
  4398. },
  4399. "283": {
  4400. "segments": {
  4401. "type": "string",
  4402. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  4403. },
  4404. "style": {
  4405. "type": "map<string,string>",
  4406. "value": {
  4407. "stroke": "#000000",
  4408. "fill": "#ffffff",
  4409. "opacity": 0,
  4410. "stroke-width": 1
  4411. }
  4412. },
  4413. "mapper": {
  4414. "type": "code",
  4415. "value": ""
  4416. },
  4417. "parser": {
  4418. "type": "code",
  4419. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4420. },
  4421. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4422. "position": {
  4423. "type": "list<double>",
  4424. "value": [
  4425. "0;5.499489873997504,0%",
  4426. "0;-34.92857871608578,0%"
  4427. ]
  4428. },
  4429. "orientation": {
  4430. "type": "double",
  4431. "value": "0;90.81845546168861"
  4432. },
  4433. "scale": {
  4434. "type": "list<double>",
  4435. "value": [
  4436. 1,
  4437. 1
  4438. ]
  4439. },
  4440. "arrow": "arrowHead",
  4441. "arrowType": "diamond-white",
  4442. "$linkDecoratorInfo": {
  4443. "type": "map<string,double>",
  4444. "value": {
  4445. "xratio": -1,
  4446. "yoffset": -5
  4447. }
  4448. }
  4449. },
  4450. "284": {
  4451. "segments": {
  4452. "type": "string",
  4453. "value": "m0,0 l-10,5 l10,5 z"
  4454. },
  4455. "style": {
  4456. "type": "map<string,string>",
  4457. "value": {
  4458. "stroke": "#000000",
  4459. "fill": "#ffffff",
  4460. "opacity": 0,
  4461. "stroke-width": 1
  4462. }
  4463. },
  4464. "mapper": {
  4465. "type": "code",
  4466. "value": ""
  4467. },
  4468. "parser": {
  4469. "type": "code",
  4470. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4471. },
  4472. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4473. "position": {
  4474. "type": "list<double>",
  4475. "value": [
  4476. "0;5.499489873997504,0%",
  4477. "0;-34.92857871608578,0%"
  4478. ]
  4479. },
  4480. "orientation": {
  4481. "type": "double",
  4482. "value": "0;90.81845546168861"
  4483. },
  4484. "scale": {
  4485. "type": "list<double>",
  4486. "value": [
  4487. 1,
  4488. 1
  4489. ]
  4490. },
  4491. "arrow": "arrowHead",
  4492. "arrowType": "triangle-white",
  4493. "$linkDecoratorInfo": {
  4494. "type": "map<string,double>",
  4495. "value": {
  4496. "xratio": -1,
  4497. "yoffset": -5
  4498. }
  4499. }
  4500. },
  4501. "285": {
  4502. "segments": {
  4503. "type": "string",
  4504. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  4505. },
  4506. "style": {
  4507. "type": "map<string,string>",
  4508. "value": {
  4509. "stroke": "#000000",
  4510. "fill": "#000000",
  4511. "opacity": 0,
  4512. "stroke-width": 1
  4513. }
  4514. },
  4515. "mapper": {
  4516. "type": "code",
  4517. "value": ""
  4518. },
  4519. "parser": {
  4520. "type": "code",
  4521. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4522. },
  4523. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4524. "position": {
  4525. "type": "list<double>",
  4526. "value": [
  4527. "0;5.499489873997504,0%",
  4528. "0;-34.92857871608578,0%"
  4529. ]
  4530. },
  4531. "orientation": {
  4532. "type": "double",
  4533. "value": "0;90.81845546168861"
  4534. },
  4535. "scale": {
  4536. "type": "list<double>",
  4537. "value": [
  4538. 1,
  4539. 1
  4540. ]
  4541. },
  4542. "arrow": "arrowHead",
  4543. "arrowType": "diamond-black",
  4544. "$linkDecoratorInfo": {
  4545. "type": "map<string,double>",
  4546. "value": {
  4547. "xratio": -1,
  4548. "yoffset": -5
  4549. }
  4550. }
  4551. },
  4552. "286": {
  4553. "r": {
  4554. "type": "double",
  4555. "value": 10
  4556. },
  4557. "style": {
  4558. "type": "map<string,string>",
  4559. "value": {
  4560. "stroke": "#000000",
  4561. "fill": "#000000",
  4562. "opacity": 0,
  4563. "stroke-width": 1
  4564. }
  4565. },
  4566. "mapper": {
  4567. "type": "code",
  4568. "value": ""
  4569. },
  4570. "parser": {
  4571. "type": "code",
  4572. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4573. },
  4574. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  4575. "position": {
  4576. "type": "list<double>",
  4577. "value": [
  4578. "0;10.498979747995122,0%",
  4579. "0;-34.85715743217145,0%"
  4580. ]
  4581. },
  4582. "orientation": {
  4583. "type": "double",
  4584. "value": "0;90.81845546168861"
  4585. },
  4586. "scale": {
  4587. "type": "list<double>",
  4588. "value": [
  4589. 1,
  4590. 1
  4591. ]
  4592. },
  4593. "arrow": "arrowHead",
  4594. "arrowType": "circle-black-large",
  4595. "$linkDecoratorInfo": {
  4596. "type": "map<string,double>",
  4597. "value": {
  4598. "xratio": -1,
  4599. "yoffset": -10
  4600. }
  4601. }
  4602. },
  4603. "287": {
  4604. "segments": {
  4605. "type": "string",
  4606. "value": "m0,0 l-20,8 l20,8 l-6,-8 z"
  4607. },
  4608. "style": {
  4609. "type": "map<string,string>",
  4610. "value": {
  4611. "stroke": "#000000",
  4612. "fill": "#000000",
  4613. "opacity": 0,
  4614. "stroke-width": 1
  4615. }
  4616. },
  4617. "mapper": {
  4618. "type": "code",
  4619. "value": ""
  4620. },
  4621. "parser": {
  4622. "type": "code",
  4623. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4624. },
  4625. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4626. "position": {
  4627. "type": "list<double>",
  4628. "value": [
  4629. "0;8.499183798396075,0%",
  4630. "0;-34.88572594573725,0%"
  4631. ]
  4632. },
  4633. "orientation": {
  4634. "type": "double",
  4635. "value": "0;90.81845546168861"
  4636. },
  4637. "scale": {
  4638. "type": "list<double>",
  4639. "value": [
  4640. 1,
  4641. 1
  4642. ]
  4643. },
  4644. "arrow": "arrowHead",
  4645. "arrowType": "arrow-black-large",
  4646. "$linkDecoratorInfo": {
  4647. "type": "map<string,double>",
  4648. "value": {
  4649. "xratio": -1,
  4650. "yoffset": -8
  4651. }
  4652. }
  4653. },
  4654. "288": {
  4655. "segments": {
  4656. "type": "string",
  4657. "value": "m0,0 l-10,4 l10,4 l-3,-4 z"
  4658. },
  4659. "style": {
  4660. "type": "map<string,string>",
  4661. "value": {
  4662. "stroke": "#000000",
  4663. "fill": "#000000",
  4664. "opacity": 0,
  4665. "stroke-width": 1
  4666. }
  4667. },
  4668. "mapper": {
  4669. "type": "code",
  4670. "value": ""
  4671. },
  4672. "parser": {
  4673. "type": "code",
  4674. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4675. },
  4676. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4677. "position": {
  4678. "type": "list<double>",
  4679. "value": [
  4680. "0;4.499591899198094,0%",
  4681. "0;-34.942862972868625,0%"
  4682. ]
  4683. },
  4684. "orientation": {
  4685. "type": "double",
  4686. "value": "0;90.81845546168861"
  4687. },
  4688. "scale": {
  4689. "type": "list<double>",
  4690. "value": [
  4691. 1,
  4692. 1
  4693. ]
  4694. },
  4695. "arrow": "arrowHead",
  4696. "arrowType": "arrow-black",
  4697. "$linkDecoratorInfo": {
  4698. "type": "map<string,double>",
  4699. "value": {
  4700. "xratio": -1,
  4701. "yoffset": -4
  4702. }
  4703. }
  4704. },
  4705. "289": {
  4706. "segments": {
  4707. "type": "string",
  4708. "value": "m0,0 l-20,10 l20,10 z"
  4709. },
  4710. "style": {
  4711. "type": "map<string,string>",
  4712. "value": {
  4713. "stroke": "#000000",
  4714. "fill": "#ffffff",
  4715. "opacity": 0,
  4716. "stroke-width": 1
  4717. }
  4718. },
  4719. "mapper": {
  4720. "type": "code",
  4721. "value": ""
  4722. },
  4723. "parser": {
  4724. "type": "code",
  4725. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4726. },
  4727. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4728. "position": {
  4729. "type": "list<double>",
  4730. "value": [
  4731. "0;10.498979747995122,0%",
  4732. "0;-34.85715743217145,0%"
  4733. ]
  4734. },
  4735. "orientation": {
  4736. "type": "double",
  4737. "value": "0;90.81845546168861"
  4738. },
  4739. "scale": {
  4740. "type": "list<double>",
  4741. "value": [
  4742. 1,
  4743. 1
  4744. ]
  4745. },
  4746. "arrow": "arrowHead",
  4747. "arrowType": "triangle-white-large",
  4748. "$linkDecoratorInfo": {
  4749. "type": "map<string,double>",
  4750. "value": {
  4751. "xratio": -1,
  4752. "yoffset": -10
  4753. }
  4754. }
  4755. },
  4756. "290": {
  4757. "segments": {
  4758. "type": "string",
  4759. "value": "m0,0 l-20,10 l20,10 z"
  4760. },
  4761. "style": {
  4762. "type": "map<string,string>",
  4763. "value": {
  4764. "stroke": "#000000",
  4765. "fill": "#000000",
  4766. "opacity": 0,
  4767. "stroke-width": 1
  4768. }
  4769. },
  4770. "mapper": {
  4771. "type": "code",
  4772. "value": ""
  4773. },
  4774. "parser": {
  4775. "type": "code",
  4776. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4777. },
  4778. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4779. "position": {
  4780. "type": "list<double>",
  4781. "value": [
  4782. "0;10.498979747995122,0%",
  4783. "0;-34.85715743217145,0%"
  4784. ]
  4785. },
  4786. "orientation": {
  4787. "type": "double",
  4788. "value": "0;90.81845546168861"
  4789. },
  4790. "scale": {
  4791. "type": "list<double>",
  4792. "value": [
  4793. 1,
  4794. 1
  4795. ]
  4796. },
  4797. "arrow": "arrowHead",
  4798. "arrowType": "triangle-black-large",
  4799. "$linkDecoratorInfo": {
  4800. "type": "map<string,double>",
  4801. "value": {
  4802. "xratio": -1,
  4803. "yoffset": -10
  4804. }
  4805. }
  4806. },
  4807. "291": {
  4808. "r": {
  4809. "type": "double",
  4810. "value": 5
  4811. },
  4812. "style": {
  4813. "type": "map<string,string>",
  4814. "value": {
  4815. "stroke": "#000000",
  4816. "fill": "#000000",
  4817. "opacity": 0,
  4818. "stroke-width": 1
  4819. }
  4820. },
  4821. "mapper": {
  4822. "type": "code",
  4823. "value": ""
  4824. },
  4825. "parser": {
  4826. "type": "code",
  4827. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4828. },
  4829. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  4830. "position": {
  4831. "type": "list<double>",
  4832. "value": [
  4833. "0;5.499489873997504,0%",
  4834. "0;-34.92857871608578,0%"
  4835. ]
  4836. },
  4837. "orientation": {
  4838. "type": "double",
  4839. "value": "0;90.81845546168861"
  4840. },
  4841. "scale": {
  4842. "type": "list<double>",
  4843. "value": [
  4844. 1,
  4845. 1
  4846. ]
  4847. },
  4848. "arrow": "arrowHead",
  4849. "arrowType": "circle-black",
  4850. "$linkDecoratorInfo": {
  4851. "type": "map<string,double>",
  4852. "value": {
  4853. "xratio": -1,
  4854. "yoffset": -5
  4855. }
  4856. }
  4857. },
  4858. "292": {
  4859. "r": {
  4860. "type": "double",
  4861. "value": 5
  4862. },
  4863. "style": {
  4864. "type": "map<string,string>",
  4865. "value": {
  4866. "stroke": "#000000",
  4867. "fill": "#ffffff",
  4868. "opacity": 0,
  4869. "stroke-width": 1
  4870. }
  4871. },
  4872. "mapper": {
  4873. "type": "code",
  4874. "value": ""
  4875. },
  4876. "parser": {
  4877. "type": "code",
  4878. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4879. },
  4880. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  4881. "position": {
  4882. "type": "list<double>",
  4883. "value": [
  4884. "0;5.499489873997504,0%",
  4885. "0;-34.92857871608578,0%"
  4886. ]
  4887. },
  4888. "orientation": {
  4889. "type": "double",
  4890. "value": "0;90.81845546168861"
  4891. },
  4892. "scale": {
  4893. "type": "list<double>",
  4894. "value": [
  4895. 1,
  4896. 1
  4897. ]
  4898. },
  4899. "arrow": "arrowHead",
  4900. "arrowType": "circle-white",
  4901. "$linkDecoratorInfo": {
  4902. "type": "map<string,double>",
  4903. "value": {
  4904. "xratio": -1,
  4905. "yoffset": -5
  4906. }
  4907. }
  4908. },
  4909. "293": {
  4910. "r": {
  4911. "type": "double",
  4912. "value": 10
  4913. },
  4914. "style": {
  4915. "type": "map<string,string>",
  4916. "value": {
  4917. "stroke": "#000000",
  4918. "fill": "#ffffff",
  4919. "opacity": 0,
  4920. "stroke-width": 1
  4921. }
  4922. },
  4923. "mapper": {
  4924. "type": "code",
  4925. "value": ""
  4926. },
  4927. "parser": {
  4928. "type": "code",
  4929. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4930. },
  4931. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  4932. "position": {
  4933. "type": "list<double>",
  4934. "value": [
  4935. "0;10.498979747995122,0%",
  4936. "0;-34.85715743217145,0%"
  4937. ]
  4938. },
  4939. "orientation": {
  4940. "type": "double",
  4941. "value": "0;90.81845546168861"
  4942. },
  4943. "scale": {
  4944. "type": "list<double>",
  4945. "value": [
  4946. 1,
  4947. 1
  4948. ]
  4949. },
  4950. "arrow": "arrowHead",
  4951. "arrowType": "circle-white-large",
  4952. "$linkDecoratorInfo": {
  4953. "type": "map<string,double>",
  4954. "value": {
  4955. "xratio": -1,
  4956. "yoffset": -10
  4957. }
  4958. }
  4959. },
  4960. "294": {
  4961. "segments": {
  4962. "type": "string",
  4963. "value": "m0,0 l-20,8 l20,8"
  4964. },
  4965. "style": {
  4966. "type": "map<string,string>",
  4967. "value": {
  4968. "stroke": "#000000",
  4969. "fill": "#000000",
  4970. "fill-opacity": 0,
  4971. "stroke-width": 1,
  4972. "opacity": 0
  4973. }
  4974. },
  4975. "mapper": {
  4976. "type": "code",
  4977. "value": ""
  4978. },
  4979. "parser": {
  4980. "type": "code",
  4981. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  4982. },
  4983. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4984. "position": {
  4985. "type": "list<double>",
  4986. "value": [
  4987. "0;8.499183798396075,0%",
  4988. "0;-34.88572594573725,0%"
  4989. ]
  4990. },
  4991. "orientation": {
  4992. "type": "double",
  4993. "value": "0;90.81845546168861"
  4994. },
  4995. "scale": {
  4996. "type": "list<double>",
  4997. "value": [
  4998. 1,
  4999. 1
  5000. ]
  5001. },
  5002. "arrow": "arrowHead",
  5003. "arrowType": "arrow-empty-large",
  5004. "$linkDecoratorInfo": {
  5005. "type": "map<string,double>",
  5006. "value": {
  5007. "xratio": -1,
  5008. "yoffset": -8
  5009. }
  5010. }
  5011. },
  5012. "295": {
  5013. "segments": {
  5014. "type": "string",
  5015. "value": "m0,0 l-10,4 l10,4"
  5016. },
  5017. "style": {
  5018. "type": "map<string,string>",
  5019. "value": {
  5020. "stroke": "#000000",
  5021. "fill": "#000000",
  5022. "fill-opacity": 0,
  5023. "stroke-width": 1,
  5024. "opacity": 0
  5025. }
  5026. },
  5027. "mapper": {
  5028. "type": "code",
  5029. "value": ""
  5030. },
  5031. "parser": {
  5032. "type": "code",
  5033. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5034. },
  5035. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5036. "position": {
  5037. "type": "list<double>",
  5038. "value": [
  5039. "0;4.499591899198094,0%",
  5040. "0;-34.942862972868625,0%"
  5041. ]
  5042. },
  5043. "orientation": {
  5044. "type": "double",
  5045. "value": "0;90.81845546168861"
  5046. },
  5047. "scale": {
  5048. "type": "list<double>",
  5049. "value": [
  5050. 1,
  5051. 1
  5052. ]
  5053. },
  5054. "arrow": "arrowHead",
  5055. "arrowType": "arrow-empty",
  5056. "$linkDecoratorInfo": {
  5057. "type": "map<string,double>",
  5058. "value": {
  5059. "xratio": -1,
  5060. "yoffset": -4
  5061. }
  5062. }
  5063. },
  5064. "296": {
  5065. "segments": {
  5066. "type": "string",
  5067. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  5068. },
  5069. "style": {
  5070. "type": "map<string,string>",
  5071. "value": {
  5072. "stroke": "#000000",
  5073. "fill": "#000000",
  5074. "opacity": 0,
  5075. "stroke-width": 1
  5076. }
  5077. },
  5078. "mapper": {
  5079. "type": "code",
  5080. "value": ""
  5081. },
  5082. "parser": {
  5083. "type": "code",
  5084. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5085. },
  5086. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5087. "position": {
  5088. "type": "list<double>",
  5089. "value": [
  5090. "0;10.498979747995122,0%",
  5091. "0;-34.85715743217145,0%"
  5092. ]
  5093. },
  5094. "orientation": {
  5095. "type": "double",
  5096. "value": "0;90.81845546168861"
  5097. },
  5098. "scale": {
  5099. "type": "list<double>",
  5100. "value": [
  5101. 1,
  5102. 1
  5103. ]
  5104. },
  5105. "arrow": "arrowHead",
  5106. "arrowType": "diamond-black-large",
  5107. "$linkDecoratorInfo": {
  5108. "type": "map<string,double>",
  5109. "value": {
  5110. "xratio": -1,
  5111. "yoffset": -10
  5112. }
  5113. }
  5114. },
  5115. "297": {
  5116. "segments": {
  5117. "type": "string",
  5118. "value": "m0,0 l-10,4 l10,4 z"
  5119. },
  5120. "style": {
  5121. "type": "map<string,string>",
  5122. "value": {
  5123. "stroke": "#000000",
  5124. "fill": "#000000",
  5125. "opacity": 0,
  5126. "stroke-width": 1
  5127. }
  5128. },
  5129. "mapper": {
  5130. "type": "code",
  5131. "value": ""
  5132. },
  5133. "parser": {
  5134. "type": "code",
  5135. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5136. },
  5137. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5138. "position": {
  5139. "type": "list<double>",
  5140. "value": [
  5141. "0;4.499591899198094,0%",
  5142. "0;-34.942862972868625,0%"
  5143. ]
  5144. },
  5145. "orientation": {
  5146. "type": "double",
  5147. "value": "0;90.81845546168861"
  5148. },
  5149. "scale": {
  5150. "type": "list<double>",
  5151. "value": [
  5152. 1,
  5153. 1
  5154. ]
  5155. },
  5156. "arrow": "arrowHead",
  5157. "arrowType": "triangle-black",
  5158. "$linkDecoratorInfo": {
  5159. "type": "map<string,double>",
  5160. "value": {
  5161. "xratio": -1,
  5162. "yoffset": -4
  5163. }
  5164. }
  5165. },
  5166. "298": {
  5167. "segments": {
  5168. "type": "string",
  5169. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  5170. },
  5171. "style": {
  5172. "type": "map<string,string>",
  5173. "value": {
  5174. "stroke": "#000000",
  5175. "fill": "#ffffff",
  5176. "opacity": 0,
  5177. "stroke-width": 1
  5178. }
  5179. },
  5180. "mapper": {
  5181. "type": "code",
  5182. "value": ""
  5183. },
  5184. "parser": {
  5185. "type": "code",
  5186. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5187. },
  5188. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5189. "position": {
  5190. "type": "list<double>",
  5191. "value": [
  5192. "0;10.498979747995122,0%",
  5193. "0;-34.85715743217145,0%"
  5194. ]
  5195. },
  5196. "orientation": {
  5197. "type": "double",
  5198. "value": "0;90.81845546168861"
  5199. },
  5200. "scale": {
  5201. "type": "list<double>",
  5202. "value": [
  5203. 1,
  5204. 1
  5205. ]
  5206. },
  5207. "arrow": "arrowHead",
  5208. "arrowType": "diamond-white-large",
  5209. "$linkDecoratorInfo": {
  5210. "type": "map<string,double>",
  5211. "value": {
  5212. "xratio": -1,
  5213. "yoffset": -10
  5214. }
  5215. }
  5216. }
  5217. },
  5218. "edges": []
  5219. }
  5220. },
  5221. "$asuri": {
  5222. "type": "string",
  5223. "value": "/Formalisms/__Transformations__/Transformation/MoTif/success/91.instance"
  5224. },
  5225. "$segments": {
  5226. "type": "map<string,list<string>>",
  5227. "value": {
  5228. "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/LRuleIcon/88.instance--/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/successLink/91.instance": "M618,606L617.5,641",
  5229. "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/successLink/91.instance--/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/EndSuccessIcon/6.instance": "M617.4989316333757,641.0747856637014L617.0000061166181,675.9995718367346"
  5230. }
  5231. },
  5232. "$type": "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/successLink"
  5233. },
  5234. "92": {
  5235. "link-style": {
  5236. "type": "map<string,string>",
  5237. "value": {
  5238. "stroke": "#800000",
  5239. "stroke-dasharray": "",
  5240. "stroke-opacity": 1,
  5241. "stroke-width": 2
  5242. }
  5243. },
  5244. "arrowHead": {
  5245. "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)",
  5246. "value": "custom"
  5247. },
  5248. "arrowTail": {
  5249. "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)",
  5250. "value": "arrow-black"
  5251. },
  5252. "typename": {
  5253. "type": "string",
  5254. "value": "failLink"
  5255. },
  5256. "position": {
  5257. "type": "list<double>",
  5258. "value": [
  5259. 716,
  5260. 639
  5261. ]
  5262. },
  5263. "orientation": {
  5264. "type": "double",
  5265. "value": 0
  5266. },
  5267. "scale": {
  5268. "type": "list<double>",
  5269. "value": [
  5270. 1,
  5271. 1
  5272. ]
  5273. },
  5274. "mapper": {
  5275. "type": "code",
  5276. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  5277. },
  5278. "parser": {
  5279. "type": "code",
  5280. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5281. },
  5282. "$contents": {
  5283. "type": "map<string,*>",
  5284. "value": {
  5285. "nodes": {
  5286. "267": {
  5287. "segments": {
  5288. "type": "string",
  5289. "value": "m0,0 l10,4 l-10,4 l3,-4 z"
  5290. },
  5291. "style": {
  5292. "type": "map<string,string>",
  5293. "value": {
  5294. "stroke": "#000000",
  5295. "fill": "#000000",
  5296. "opacity": 0,
  5297. "stroke-width": 1
  5298. }
  5299. },
  5300. "mapper": {
  5301. "type": "code",
  5302. "value": ""
  5303. },
  5304. "parser": {
  5305. "type": "code",
  5306. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5307. },
  5308. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5309. "position": {
  5310. "type": "list<double>",
  5311. "value": [
  5312. "0;1.9938645395362755,-5.547001962252532%",
  5313. "0;36.2214637976258,99.84603532054123%"
  5314. ]
  5315. },
  5316. "orientation": {
  5317. "type": "double",
  5318. "value": "0;93.17983011986438"
  5319. },
  5320. "scale": {
  5321. "type": "list<double>",
  5322. "value": [
  5323. 1,
  5324. 1
  5325. ]
  5326. },
  5327. "arrow": "arrowTail",
  5328. "arrowType": "arrow-black",
  5329. "$linkDecoratorInfo": {
  5330. "type": "map<string,double>",
  5331. "value": {
  5332. "xratio": 1,
  5333. "yoffset": -4
  5334. }
  5335. }
  5336. },
  5337. "268": {
  5338. "segments": {
  5339. "type": "string",
  5340. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  5341. },
  5342. "style": {
  5343. "type": "map<string,string>",
  5344. "value": {
  5345. "stroke": "#000000",
  5346. "fill": "#000000",
  5347. "opacity": 0,
  5348. "stroke-width": 1
  5349. }
  5350. },
  5351. "mapper": {
  5352. "type": "code",
  5353. "value": ""
  5354. },
  5355. "parser": {
  5356. "type": "code",
  5357. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5358. },
  5359. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5360. "position": {
  5361. "type": "list<double>",
  5362. "value": [
  5363. "0;7.984626658768775,-5.547001962252532%",
  5364. "0;36.554283915360884,99.84603532054123%"
  5365. ]
  5366. },
  5367. "orientation": {
  5368. "type": "double",
  5369. "value": "0;93.17983011986438"
  5370. },
  5371. "scale": {
  5372. "type": "list<double>",
  5373. "value": [
  5374. 1,
  5375. 1
  5376. ]
  5377. },
  5378. "arrow": "arrowTail",
  5379. "arrowType": "diamond-black-large",
  5380. "$linkDecoratorInfo": {
  5381. "type": "map<string,double>",
  5382. "value": {
  5383. "xratio": 1,
  5384. "yoffset": -10
  5385. }
  5386. }
  5387. },
  5388. "269": {
  5389. "r": {
  5390. "type": "double",
  5391. "value": 10
  5392. },
  5393. "style": {
  5394. "type": "map<string,string>",
  5395. "value": {
  5396. "stroke": "#000000",
  5397. "fill": "#000000",
  5398. "opacity": 0,
  5399. "stroke-width": 1
  5400. }
  5401. },
  5402. "mapper": {
  5403. "type": "code",
  5404. "value": ""
  5405. },
  5406. "parser": {
  5407. "type": "code",
  5408. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5409. },
  5410. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  5411. "position": {
  5412. "type": "list<double>",
  5413. "value": [
  5414. "0;7.984626658768775,-5.547001962252532%",
  5415. "0;36.554283915360884,99.84603532054123%"
  5416. ]
  5417. },
  5418. "orientation": {
  5419. "type": "double",
  5420. "value": "0;93.17983011986438"
  5421. },
  5422. "scale": {
  5423. "type": "list<double>",
  5424. "value": [
  5425. 1,
  5426. 1
  5427. ]
  5428. },
  5429. "arrow": "arrowTail",
  5430. "arrowType": "circle-black-large",
  5431. "$linkDecoratorInfo": {
  5432. "type": "map<string,double>",
  5433. "value": {
  5434. "xratio": 1,
  5435. "yoffset": -10
  5436. }
  5437. }
  5438. },
  5439. "270": {
  5440. "r": {
  5441. "type": "double",
  5442. "value": 10
  5443. },
  5444. "style": {
  5445. "type": "map<string,string>",
  5446. "value": {
  5447. "stroke": "#000000",
  5448. "fill": "#ffffff",
  5449. "opacity": 0,
  5450. "stroke-width": 1
  5451. }
  5452. },
  5453. "mapper": {
  5454. "type": "code",
  5455. "value": ""
  5456. },
  5457. "parser": {
  5458. "type": "code",
  5459. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5460. },
  5461. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  5462. "position": {
  5463. "type": "list<double>",
  5464. "value": [
  5465. "0;7.984626658768775,-5.547001962252532%",
  5466. "0;36.554283915360884,99.84603532054123%"
  5467. ]
  5468. },
  5469. "orientation": {
  5470. "type": "double",
  5471. "value": "0;93.17983011986438"
  5472. },
  5473. "scale": {
  5474. "type": "list<double>",
  5475. "value": [
  5476. 1,
  5477. 1
  5478. ]
  5479. },
  5480. "arrow": "arrowTail",
  5481. "arrowType": "circle-white-large",
  5482. "$linkDecoratorInfo": {
  5483. "type": "map<string,double>",
  5484. "value": {
  5485. "xratio": 1,
  5486. "yoffset": -10
  5487. }
  5488. }
  5489. },
  5490. "271": {
  5491. "r": {
  5492. "type": "double",
  5493. "value": 5
  5494. },
  5495. "style": {
  5496. "type": "map<string,string>",
  5497. "value": {
  5498. "stroke": "#000000",
  5499. "fill": "#000000",
  5500. "opacity": 0,
  5501. "stroke-width": 1
  5502. }
  5503. },
  5504. "mapper": {
  5505. "type": "code",
  5506. "value": ""
  5507. },
  5508. "parser": {
  5509. "type": "code",
  5510. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5511. },
  5512. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  5513. "position": {
  5514. "type": "list<double>",
  5515. "value": [
  5516. "0;2.9923248927416353,-5.547001962252532%",
  5517. "0;36.27693381724828,99.84603532054123%"
  5518. ]
  5519. },
  5520. "orientation": {
  5521. "type": "double",
  5522. "value": "0;93.17983011986438"
  5523. },
  5524. "scale": {
  5525. "type": "list<double>",
  5526. "value": [
  5527. 1,
  5528. 1
  5529. ]
  5530. },
  5531. "arrow": "arrowTail",
  5532. "arrowType": "circle-black",
  5533. "$linkDecoratorInfo": {
  5534. "type": "map<string,double>",
  5535. "value": {
  5536. "xratio": 1,
  5537. "yoffset": -5
  5538. }
  5539. }
  5540. },
  5541. "272": {
  5542. "segments": {
  5543. "type": "string",
  5544. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  5545. },
  5546. "style": {
  5547. "type": "map<string,string>",
  5548. "value": {
  5549. "stroke": "#000000",
  5550. "fill": "#000000",
  5551. "opacity": 0,
  5552. "stroke-width": 1
  5553. }
  5554. },
  5555. "mapper": {
  5556. "type": "code",
  5557. "value": ""
  5558. },
  5559. "parser": {
  5560. "type": "code",
  5561. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5562. },
  5563. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5564. "position": {
  5565. "type": "list<double>",
  5566. "value": [
  5567. "0;2.9923248927416353,-5.547001962252532%",
  5568. "0;36.27693381724828,99.84603532054123%"
  5569. ]
  5570. },
  5571. "orientation": {
  5572. "type": "double",
  5573. "value": "0;93.17983011986438"
  5574. },
  5575. "scale": {
  5576. "type": "list<double>",
  5577. "value": [
  5578. 1,
  5579. 1
  5580. ]
  5581. },
  5582. "arrow": "arrowTail",
  5583. "arrowType": "diamond-black",
  5584. "$linkDecoratorInfo": {
  5585. "type": "map<string,double>",
  5586. "value": {
  5587. "xratio": 1,
  5588. "yoffset": -5
  5589. }
  5590. }
  5591. },
  5592. "273": {
  5593. "segments": {
  5594. "type": "string",
  5595. "value": "m0,0 l20,10 l-20,10 z"
  5596. },
  5597. "style": {
  5598. "type": "map<string,string>",
  5599. "value": {
  5600. "stroke": "#000000",
  5601. "fill": "#000000",
  5602. "opacity": 0,
  5603. "stroke-width": 1
  5604. }
  5605. },
  5606. "mapper": {
  5607. "type": "code",
  5608. "value": ""
  5609. },
  5610. "parser": {
  5611. "type": "code",
  5612. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5613. },
  5614. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5615. "position": {
  5616. "type": "list<double>",
  5617. "value": [
  5618. "0;7.984626658768775,-5.547001962252532%",
  5619. "0;36.554283915360884,99.84603532054123%"
  5620. ]
  5621. },
  5622. "orientation": {
  5623. "type": "double",
  5624. "value": "0;93.17983011986438"
  5625. },
  5626. "scale": {
  5627. "type": "list<double>",
  5628. "value": [
  5629. 1,
  5630. 1
  5631. ]
  5632. },
  5633. "arrow": "arrowTail",
  5634. "arrowType": "triangle-black-large",
  5635. "$linkDecoratorInfo": {
  5636. "type": "map<string,double>",
  5637. "value": {
  5638. "xratio": 1,
  5639. "yoffset": -10
  5640. }
  5641. }
  5642. },
  5643. "274": {
  5644. "segments": {
  5645. "type": "string",
  5646. "value": "m0,0 l10,4 l-10,4 z"
  5647. },
  5648. "style": {
  5649. "type": "map<string,string>",
  5650. "value": {
  5651. "stroke": "#000000",
  5652. "fill": "#000000",
  5653. "opacity": 0,
  5654. "stroke-width": 1
  5655. }
  5656. },
  5657. "mapper": {
  5658. "type": "code",
  5659. "value": ""
  5660. },
  5661. "parser": {
  5662. "type": "code",
  5663. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5664. },
  5665. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5666. "position": {
  5667. "type": "list<double>",
  5668. "value": [
  5669. "0;1.9938645395362755,-5.547001962252532%",
  5670. "0;36.2214637976258,99.84603532054123%"
  5671. ]
  5672. },
  5673. "orientation": {
  5674. "type": "double",
  5675. "value": "0;93.17983011986438"
  5676. },
  5677. "scale": {
  5678. "type": "list<double>",
  5679. "value": [
  5680. 1,
  5681. 1
  5682. ]
  5683. },
  5684. "arrow": "arrowTail",
  5685. "arrowType": "triangle-black",
  5686. "$linkDecoratorInfo": {
  5687. "type": "map<string,double>",
  5688. "value": {
  5689. "xratio": 1,
  5690. "yoffset": -4
  5691. }
  5692. }
  5693. },
  5694. "275": {
  5695. "segments": {
  5696. "type": "string",
  5697. "value": "m0,0 l20,8 l-20,8 l6,-8 z"
  5698. },
  5699. "style": {
  5700. "type": "map<string,string>",
  5701. "value": {
  5702. "stroke": "#000000",
  5703. "fill": "#000000",
  5704. "opacity": 0,
  5705. "stroke-width": 1
  5706. }
  5707. },
  5708. "mapper": {
  5709. "type": "code",
  5710. "value": ""
  5711. },
  5712. "parser": {
  5713. "type": "code",
  5714. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5715. },
  5716. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5717. "position": {
  5718. "type": "list<double>",
  5719. "value": [
  5720. "0;5.987705952357942,-5.547001962252532%",
  5721. "0;36.44334387611582,99.84603532054123%"
  5722. ]
  5723. },
  5724. "orientation": {
  5725. "type": "double",
  5726. "value": "0;93.17983011986438"
  5727. },
  5728. "scale": {
  5729. "type": "list<double>",
  5730. "value": [
  5731. 1,
  5732. 1
  5733. ]
  5734. },
  5735. "arrow": "arrowTail",
  5736. "arrowType": "arrow-black-large",
  5737. "$linkDecoratorInfo": {
  5738. "type": "map<string,double>",
  5739. "value": {
  5740. "xratio": 1,
  5741. "yoffset": -8
  5742. }
  5743. }
  5744. },
  5745. "276": {
  5746. "segments": {
  5747. "type": "string",
  5748. "value": "m0,0 l20,10 l-20,10 z"
  5749. },
  5750. "style": {
  5751. "type": "map<string,string>",
  5752. "value": {
  5753. "stroke": "#000000",
  5754. "fill": "#ffffff",
  5755. "opacity": 0,
  5756. "stroke-width": 1
  5757. }
  5758. },
  5759. "mapper": {
  5760. "type": "code",
  5761. "value": ""
  5762. },
  5763. "parser": {
  5764. "type": "code",
  5765. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5766. },
  5767. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5768. "position": {
  5769. "type": "list<double>",
  5770. "value": [
  5771. "0;7.984626658768775,-5.547001962252532%",
  5772. "0;36.554283915360884,99.84603532054123%"
  5773. ]
  5774. },
  5775. "orientation": {
  5776. "type": "double",
  5777. "value": "0;93.17983011986438"
  5778. },
  5779. "scale": {
  5780. "type": "list<double>",
  5781. "value": [
  5782. 1,
  5783. 1
  5784. ]
  5785. },
  5786. "arrow": "arrowTail",
  5787. "arrowType": "triangle-white-large",
  5788. "$linkDecoratorInfo": {
  5789. "type": "map<string,double>",
  5790. "value": {
  5791. "xratio": 1,
  5792. "yoffset": -10
  5793. }
  5794. }
  5795. },
  5796. "277": {
  5797. "segments": {
  5798. "type": "string",
  5799. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  5800. },
  5801. "style": {
  5802. "type": "map<string,string>",
  5803. "value": {
  5804. "stroke": "#000000",
  5805. "fill": "#ffffff",
  5806. "opacity": 0,
  5807. "stroke-width": 1
  5808. }
  5809. },
  5810. "mapper": {
  5811. "type": "code",
  5812. "value": ""
  5813. },
  5814. "parser": {
  5815. "type": "code",
  5816. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5817. },
  5818. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5819. "position": {
  5820. "type": "list<double>",
  5821. "value": [
  5822. "0;2.9923248927416353,-5.547001962252532%",
  5823. "0;36.27693381724828,99.84603532054123%"
  5824. ]
  5825. },
  5826. "orientation": {
  5827. "type": "double",
  5828. "value": "0;93.17983011986438"
  5829. },
  5830. "scale": {
  5831. "type": "list<double>",
  5832. "value": [
  5833. 1,
  5834. 1
  5835. ]
  5836. },
  5837. "arrow": "arrowTail",
  5838. "arrowType": "diamond-white",
  5839. "$linkDecoratorInfo": {
  5840. "type": "map<string,double>",
  5841. "value": {
  5842. "xratio": 1,
  5843. "yoffset": -5
  5844. }
  5845. }
  5846. },
  5847. "278": {
  5848. "segments": {
  5849. "type": "string",
  5850. "value": "m0,0 l20,8 l-20,8"
  5851. },
  5852. "style": {
  5853. "type": "map<string,string>",
  5854. "value": {
  5855. "stroke": "#000000",
  5856. "fill": "#000000",
  5857. "fill-opacity": 0,
  5858. "stroke-width": 1,
  5859. "opacity": 0
  5860. }
  5861. },
  5862. "mapper": {
  5863. "type": "code",
  5864. "value": ""
  5865. },
  5866. "parser": {
  5867. "type": "code",
  5868. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5869. },
  5870. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5871. "position": {
  5872. "type": "list<double>",
  5873. "value": [
  5874. "0;5.987705952357942,-5.547001962252532%",
  5875. "0;36.44334387611582,99.84603532054123%"
  5876. ]
  5877. },
  5878. "orientation": {
  5879. "type": "double",
  5880. "value": "0;93.17983011986438"
  5881. },
  5882. "scale": {
  5883. "type": "list<double>",
  5884. "value": [
  5885. 1,
  5886. 1
  5887. ]
  5888. },
  5889. "arrow": "arrowTail",
  5890. "arrowType": "arrow-empty-large",
  5891. "$linkDecoratorInfo": {
  5892. "type": "map<string,double>",
  5893. "value": {
  5894. "xratio": 1,
  5895. "yoffset": -8
  5896. }
  5897. }
  5898. },
  5899. "279": {
  5900. "r": {
  5901. "type": "double",
  5902. "value": 5
  5903. },
  5904. "style": {
  5905. "type": "map<string,string>",
  5906. "value": {
  5907. "stroke": "#000000",
  5908. "fill": "#ffffff",
  5909. "opacity": 0,
  5910. "stroke-width": 1
  5911. }
  5912. },
  5913. "mapper": {
  5914. "type": "code",
  5915. "value": ""
  5916. },
  5917. "parser": {
  5918. "type": "code",
  5919. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5920. },
  5921. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  5922. "position": {
  5923. "type": "list<double>",
  5924. "value": [
  5925. "0;2.9923248927416353,-5.547001962252532%",
  5926. "0;36.27693381724828,99.84603532054123%"
  5927. ]
  5928. },
  5929. "orientation": {
  5930. "type": "double",
  5931. "value": "0;93.17983011986438"
  5932. },
  5933. "scale": {
  5934. "type": "list<double>",
  5935. "value": [
  5936. 1,
  5937. 1
  5938. ]
  5939. },
  5940. "arrow": "arrowTail",
  5941. "arrowType": "circle-white",
  5942. "$linkDecoratorInfo": {
  5943. "type": "map<string,double>",
  5944. "value": {
  5945. "xratio": 1,
  5946. "yoffset": -5
  5947. }
  5948. }
  5949. },
  5950. "280": {
  5951. "segments": {
  5952. "type": "string",
  5953. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  5954. },
  5955. "style": {
  5956. "type": "map<string,string>",
  5957. "value": {
  5958. "stroke": "#000000",
  5959. "fill": "#ffffff",
  5960. "opacity": 0,
  5961. "stroke-width": 1
  5962. }
  5963. },
  5964. "mapper": {
  5965. "type": "code",
  5966. "value": ""
  5967. },
  5968. "parser": {
  5969. "type": "code",
  5970. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5971. },
  5972. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  5973. "position": {
  5974. "type": "list<double>",
  5975. "value": [
  5976. "0;7.984626658768775,-5.547001962252532%",
  5977. "0;36.554283915360884,99.84603532054123%"
  5978. ]
  5979. },
  5980. "orientation": {
  5981. "type": "double",
  5982. "value": "0;93.17983011986438"
  5983. },
  5984. "scale": {
  5985. "type": "list<double>",
  5986. "value": [
  5987. 1,
  5988. 1
  5989. ]
  5990. },
  5991. "arrow": "arrowTail",
  5992. "arrowType": "diamond-white-large",
  5993. "$linkDecoratorInfo": {
  5994. "type": "map<string,double>",
  5995. "value": {
  5996. "xratio": 1,
  5997. "yoffset": -10
  5998. }
  5999. }
  6000. },
  6001. "281": {
  6002. "segments": {
  6003. "type": "string",
  6004. "value": "m0,0 l10,4 l-10,4"
  6005. },
  6006. "style": {
  6007. "type": "map<string,string>",
  6008. "value": {
  6009. "stroke": "#000000",
  6010. "fill": "#000000",
  6011. "fill-opacity": 0,
  6012. "stroke-width": 1,
  6013. "opacity": 0
  6014. }
  6015. },
  6016. "mapper": {
  6017. "type": "code",
  6018. "value": ""
  6019. },
  6020. "parser": {
  6021. "type": "code",
  6022. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6023. },
  6024. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  6025. "position": {
  6026. "type": "list<double>",
  6027. "value": [
  6028. "0;1.9938645395362755,-5.547001962252532%",
  6029. "0;36.2214637976258,99.84603532054123%"
  6030. ]
  6031. },
  6032. "orientation": {
  6033. "type": "double",
  6034. "value": "0;93.17983011986438"
  6035. },
  6036. "scale": {
  6037. "type": "list<double>",
  6038. "value": [
  6039. 1,
  6040. 1
  6041. ]
  6042. },
  6043. "arrow": "arrowTail",
  6044. "arrowType": "arrow-empty",
  6045. "$linkDecoratorInfo": {
  6046. "type": "map<string,double>",
  6047. "value": {
  6048. "xratio": 1,
  6049. "yoffset": -4
  6050. }
  6051. }
  6052. },
  6053. "282": {
  6054. "segments": {
  6055. "type": "string",
  6056. "value": "m0,0 l10,5 l-10,5 z"
  6057. },
  6058. "style": {
  6059. "type": "map<string,string>",
  6060. "value": {
  6061. "stroke": "#000000",
  6062. "fill": "#ffffff",
  6063. "opacity": 0,
  6064. "stroke-width": 1
  6065. }
  6066. },
  6067. "mapper": {
  6068. "type": "code",
  6069. "value": ""
  6070. },
  6071. "parser": {
  6072. "type": "code",
  6073. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6074. },
  6075. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  6076. "position": {
  6077. "type": "list<double>",
  6078. "value": [
  6079. "0;2.9923248927416353,-5.547001962252532%",
  6080. "0;36.27693381724828,99.84603532054123%"
  6081. ]
  6082. },
  6083. "orientation": {
  6084. "type": "double",
  6085. "value": "0;93.17983011986438"
  6086. },
  6087. "scale": {
  6088. "type": "list<double>",
  6089. "value": [
  6090. 1,
  6091. 1
  6092. ]
  6093. },
  6094. "arrow": "arrowTail",
  6095. "arrowType": "triangle-white",
  6096. "$linkDecoratorInfo": {
  6097. "type": "map<string,double>",
  6098. "value": {
  6099. "xratio": 1,
  6100. "yoffset": -5
  6101. }
  6102. }
  6103. },
  6104. "283": {
  6105. "segments": {
  6106. "type": "string",
  6107. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  6108. },
  6109. "style": {
  6110. "type": "map<string,string>",
  6111. "value": {
  6112. "stroke": "#000000",
  6113. "fill": "#ffffff",
  6114. "opacity": 0,
  6115. "stroke-width": 1
  6116. }
  6117. },
  6118. "mapper": {
  6119. "type": "code",
  6120. "value": ""
  6121. },
  6122. "parser": {
  6123. "type": "code",
  6124. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6125. },
  6126. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  6127. "position": {
  6128. "type": "list<double>",
  6129. "value": [
  6130. "0;6.992301766027026,0%",
  6131. "0;-35.722649901887394,0%"
  6132. ]
  6133. },
  6134. "orientation": {
  6135. "type": "double",
  6136. "value": "0;93.17983011986425"
  6137. },
  6138. "scale": {
  6139. "type": "list<double>",
  6140. "value": [
  6141. 1,
  6142. 1
  6143. ]
  6144. },
  6145. "arrow": "arrowHead",
  6146. "arrowType": "diamond-white",
  6147. "$linkDecoratorInfo": {
  6148. "type": "map<string,double>",
  6149. "value": {
  6150. "xratio": -1,
  6151. "yoffset": -5
  6152. }
  6153. }
  6154. },
  6155. "284": {
  6156. "segments": {
  6157. "type": "string",
  6158. "value": "m0,0 l-10,5 l10,5 z"
  6159. },
  6160. "style": {
  6161. "type": "map<string,string>",
  6162. "value": {
  6163. "stroke": "#000000",
  6164. "fill": "#ffffff",
  6165. "opacity": 0,
  6166. "stroke-width": 1
  6167. }
  6168. },
  6169. "mapper": {
  6170. "type": "code",
  6171. "value": ""
  6172. },
  6173. "parser": {
  6174. "type": "code",
  6175. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6176. },
  6177. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  6178. "position": {
  6179. "type": "list<double>",
  6180. "value": [
  6181. "0;6.992301766027026,0%",
  6182. "0;-35.722649901887394,0%"
  6183. ]
  6184. },
  6185. "orientation": {
  6186. "type": "double",
  6187. "value": "0;93.17983011986425"
  6188. },
  6189. "scale": {
  6190. "type": "list<double>",
  6191. "value": [
  6192. 1,
  6193. 1
  6194. ]
  6195. },
  6196. "arrow": "arrowHead",
  6197. "arrowType": "triangle-white",
  6198. "$linkDecoratorInfo": {
  6199. "type": "map<string,double>",
  6200. "value": {
  6201. "xratio": -1,
  6202. "yoffset": -5
  6203. }
  6204. }
  6205. },
  6206. "285": {
  6207. "segments": {
  6208. "type": "string",
  6209. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  6210. },
  6211. "style": {
  6212. "type": "map<string,string>",
  6213. "value": {
  6214. "stroke": "#000000",
  6215. "fill": "#000000",
  6216. "opacity": 0,
  6217. "stroke-width": 1
  6218. }
  6219. },
  6220. "mapper": {
  6221. "type": "code",
  6222. "value": ""
  6223. },
  6224. "parser": {
  6225. "type": "code",
  6226. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6227. },
  6228. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  6229. "position": {
  6230. "type": "list<double>",
  6231. "value": [
  6232. "0;6.992301766027026,0%",
  6233. "0;-35.722649901887394,0%"
  6234. ]
  6235. },
  6236. "orientation": {
  6237. "type": "double",
  6238. "value": "0;93.17983011986425"
  6239. },
  6240. "scale": {
  6241. "type": "list<double>",
  6242. "value": [
  6243. 1,
  6244. 1
  6245. ]
  6246. },
  6247. "arrow": "arrowHead",
  6248. "arrowType": "diamond-black",
  6249. "$linkDecoratorInfo": {
  6250. "type": "map<string,double>",
  6251. "value": {
  6252. "xratio": -1,
  6253. "yoffset": -5
  6254. }
  6255. }
  6256. },
  6257. "286": {
  6258. "r": {
  6259. "type": "double",
  6260. "value": 10
  6261. },
  6262. "style": {
  6263. "type": "map<string,string>",
  6264. "value": {
  6265. "stroke": "#000000",
  6266. "fill": "#000000",
  6267. "opacity": 0,
  6268. "stroke-width": 1
  6269. }
  6270. },
  6271. "mapper": {
  6272. "type": "code",
  6273. "value": ""
  6274. },
  6275. "parser": {
  6276. "type": "code",
  6277. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6278. },
  6279. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  6280. "position": {
  6281. "type": "list<double>",
  6282. "value": [
  6283. "0;11.984603532054166,0%",
  6284. "0;-35.44529980377479,0%"
  6285. ]
  6286. },
  6287. "orientation": {
  6288. "type": "double",
  6289. "value": "0;93.17983011986425"
  6290. },
  6291. "scale": {
  6292. "type": "list<double>",
  6293. "value": [
  6294. 1,
  6295. 1
  6296. ]
  6297. },
  6298. "arrow": "arrowHead",
  6299. "arrowType": "circle-black-large",
  6300. "$linkDecoratorInfo": {
  6301. "type": "map<string,double>",
  6302. "value": {
  6303. "xratio": -1,
  6304. "yoffset": -10
  6305. }
  6306. }
  6307. },
  6308. "287": {
  6309. "segments": {
  6310. "type": "string",
  6311. "value": "m0,0 l-20,8 l20,8 l-6,-8 z"
  6312. },
  6313. "style": {
  6314. "type": "map<string,string>",
  6315. "value": {
  6316. "stroke": "#000000",
  6317. "fill": "#000000",
  6318. "opacity": 0,
  6319. "stroke-width": 1
  6320. }
  6321. },
  6322. "mapper": {
  6323. "type": "code",
  6324. "value": ""
  6325. },
  6326. "parser": {
  6327. "type": "code",
  6328. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6329. },
  6330. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  6331. "position": {
  6332. "type": "list<double>",
  6333. "value": [
  6334. "0;9.987682825643333,0%",
  6335. "0;-35.55623984301985,0%"
  6336. ]
  6337. },
  6338. "orientation": {
  6339. "type": "double",
  6340. "value": "0;93.17983011986425"
  6341. },
  6342. "scale": {
  6343. "type": "list<double>",
  6344. "value": [
  6345. 1,
  6346. 1
  6347. ]
  6348. },
  6349. "arrow": "arrowHead",
  6350. "arrowType": "arrow-black-large",
  6351. "$linkDecoratorInfo": {
  6352. "type": "map<string,double>",
  6353. "value": {
  6354. "xratio": -1,
  6355. "yoffset": -8
  6356. }
  6357. }
  6358. },
  6359. "288": {
  6360. "segments": {
  6361. "type": "string",
  6362. "value": "m0,0 l-10,4 l10,4 l-3,-4 z"
  6363. },
  6364. "style": {
  6365. "type": "map<string,string>",
  6366. "value": {
  6367. "stroke": "#000000",
  6368. "fill": "#000000",
  6369. "opacity": 0,
  6370. "stroke-width": 1
  6371. }
  6372. },
  6373. "mapper": {
  6374. "type": "code",
  6375. "value": ""
  6376. },
  6377. "parser": {
  6378. "type": "code",
  6379. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6380. },
  6381. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  6382. "position": {
  6383. "type": "list<double>",
  6384. "value": [
  6385. "0;5.993841412821666,0%",
  6386. "0;-35.77811992150987,0%"
  6387. ]
  6388. },
  6389. "orientation": {
  6390. "type": "double",
  6391. "value": "0;93.17983011986425"
  6392. },
  6393. "scale": {
  6394. "type": "list<double>",
  6395. "value": [
  6396. 1,
  6397. 1
  6398. ]
  6399. },
  6400. "arrow": "arrowHead",
  6401. "arrowType": "arrow-black",
  6402. "$linkDecoratorInfo": {
  6403. "type": "map<string,double>",
  6404. "value": {
  6405. "xratio": -1,
  6406. "yoffset": -4
  6407. }
  6408. }
  6409. },
  6410. "289": {
  6411. "segments": {
  6412. "type": "string",
  6413. "value": "m0,0 l-20,10 l20,10 z"
  6414. },
  6415. "style": {
  6416. "type": "map<string,string>",
  6417. "value": {
  6418. "stroke": "#000000",
  6419. "fill": "#ffffff",
  6420. "opacity": 0,
  6421. "stroke-width": 1
  6422. }
  6423. },
  6424. "mapper": {
  6425. "type": "code",
  6426. "value": ""
  6427. },
  6428. "parser": {
  6429. "type": "code",
  6430. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6431. },
  6432. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  6433. "position": {
  6434. "type": "list<double>",
  6435. "value": [
  6436. "0;11.984603532054166,0%",
  6437. "0;-35.44529980377479,0%"
  6438. ]
  6439. },
  6440. "orientation": {
  6441. "type": "double",
  6442. "value": "0;93.17983011986425"
  6443. },
  6444. "scale": {
  6445. "type": "list<double>",
  6446. "value": [
  6447. 1,
  6448. 1
  6449. ]
  6450. },
  6451. "arrow": "arrowHead",
  6452. "arrowType": "triangle-white-large",
  6453. "$linkDecoratorInfo": {
  6454. "type": "map<string,double>",
  6455. "value": {
  6456. "xratio": -1,
  6457. "yoffset": -10
  6458. }
  6459. }
  6460. },
  6461. "290": {
  6462. "segments": {
  6463. "type": "string",
  6464. "value": "m0,0 l-20,10 l20,10 z"
  6465. },
  6466. "style": {
  6467. "type": "map<string,string>",
  6468. "value": {
  6469. "stroke": "#000000",
  6470. "fill": "#000000",
  6471. "opacity": 0,
  6472. "stroke-width": 1
  6473. }
  6474. },
  6475. "mapper": {
  6476. "type": "code",
  6477. "value": ""
  6478. },
  6479. "parser": {
  6480. "type": "code",
  6481. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6482. },
  6483. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  6484. "position": {
  6485. "type": "list<double>",
  6486. "value": [
  6487. "0;11.984603532054166,0%",
  6488. "0;-35.44529980377479,0%"
  6489. ]
  6490. },
  6491. "orientation": {
  6492. "type": "double",
  6493. "value": "0;93.17983011986425"
  6494. },
  6495. "scale": {
  6496. "type": "list<double>",
  6497. "value": [
  6498. 1,
  6499. 1
  6500. ]
  6501. },
  6502. "arrow": "arrowHead",
  6503. "arrowType": "triangle-black-large",
  6504. "$linkDecoratorInfo": {
  6505. "type": "map<string,double>",
  6506. "value": {
  6507. "xratio": -1,
  6508. "yoffset": -10
  6509. }
  6510. }
  6511. },
  6512. "291": {
  6513. "r": {
  6514. "type": "double",
  6515. "value": 5
  6516. },
  6517. "style": {
  6518. "type": "map<string,string>",
  6519. "value": {
  6520. "stroke": "#000000",
  6521. "fill": "#000000",
  6522. "opacity": 0,
  6523. "stroke-width": 1
  6524. }
  6525. },
  6526. "mapper": {
  6527. "type": "code",
  6528. "value": ""
  6529. },
  6530. "parser": {
  6531. "type": "code",
  6532. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6533. },
  6534. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  6535. "position": {
  6536. "type": "list<double>",
  6537. "value": [
  6538. "0;6.992301766027026,0%",
  6539. "0;-35.722649901887394,0%"
  6540. ]
  6541. },
  6542. "orientation": {
  6543. "type": "double",
  6544. "value": "0;93.17983011986425"
  6545. },
  6546. "scale": {
  6547. "type": "list<double>",
  6548. "value": [
  6549. 1,
  6550. 1
  6551. ]
  6552. },
  6553. "arrow": "arrowHead",
  6554. "arrowType": "circle-black",
  6555. "$linkDecoratorInfo": {
  6556. "type": "map<string,double>",
  6557. "value": {
  6558. "xratio": -1,
  6559. "yoffset": -5
  6560. }
  6561. }
  6562. },
  6563. "292": {
  6564. "r": {
  6565. "type": "double",
  6566. "value": 5
  6567. },
  6568. "style": {
  6569. "type": "map<string,string>",
  6570. "value": {
  6571. "stroke": "#000000",
  6572. "fill": "#ffffff",
  6573. "opacity": 0,
  6574. "stroke-width": 1
  6575. }
  6576. },
  6577. "mapper": {
  6578. "type": "code",
  6579. "value": ""
  6580. },
  6581. "parser": {
  6582. "type": "code",
  6583. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6584. },
  6585. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  6586. "position": {
  6587. "type": "list<double>",
  6588. "value": [
  6589. "0;6.992301766027026,0%",
  6590. "0;-35.722649901887394,0%"
  6591. ]
  6592. },
  6593. "orientation": {
  6594. "type": "double",
  6595. "value": "0;93.17983011986425"
  6596. },
  6597. "scale": {
  6598. "type": "list<double>",
  6599. "value": [
  6600. 1,
  6601. 1
  6602. ]
  6603. },
  6604. "arrow": "arrowHead",
  6605. "arrowType": "circle-white",
  6606. "$linkDecoratorInfo": {
  6607. "type": "map<string,double>",
  6608. "value": {
  6609. "xratio": -1,
  6610. "yoffset": -5
  6611. }
  6612. }
  6613. },
  6614. "293": {
  6615. "r": {
  6616. "type": "double",
  6617. "value": 10
  6618. },
  6619. "style": {
  6620. "type": "map<string,string>",
  6621. "value": {
  6622. "stroke": "#000000",
  6623. "fill": "#ffffff",
  6624. "opacity": 0,
  6625. "stroke-width": 1
  6626. }
  6627. },
  6628. "mapper": {
  6629. "type": "code",
  6630. "value": ""
  6631. },
  6632. "parser": {
  6633. "type": "code",
  6634. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6635. },
  6636. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  6637. "position": {
  6638. "type": "list<double>",
  6639. "value": [
  6640. "0;11.984603532054166,0%",
  6641. "0;-35.44529980377479,0%"
  6642. ]
  6643. },
  6644. "orientation": {
  6645. "type": "double",
  6646. "value": "0;93.17983011986425"
  6647. },
  6648. "scale": {
  6649. "type": "list<double>",
  6650. "value": [
  6651. 1,
  6652. 1
  6653. ]
  6654. },
  6655. "arrow": "arrowHead",
  6656. "arrowType": "circle-white-large",
  6657. "$linkDecoratorInfo": {
  6658. "type": "map<string,double>",
  6659. "value": {
  6660. "xratio": -1,
  6661. "yoffset": -10
  6662. }
  6663. }
  6664. },
  6665. "294": {
  6666. "segments": {
  6667. "type": "string",
  6668. "value": "m0,0 l-20,8 l20,8"
  6669. },
  6670. "style": {
  6671. "type": "map<string,string>",
  6672. "value": {
  6673. "stroke": "#000000",
  6674. "fill": "#000000",
  6675. "fill-opacity": 0,
  6676. "stroke-width": 1,
  6677. "opacity": 0
  6678. }
  6679. },
  6680. "mapper": {
  6681. "type": "code",
  6682. "value": ""
  6683. },
  6684. "parser": {
  6685. "type": "code",
  6686. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6687. },
  6688. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  6689. "position": {
  6690. "type": "list<double>",
  6691. "value": [
  6692. "0;9.987682825643333,0%",
  6693. "0;-35.55623984301985,0%"
  6694. ]
  6695. },
  6696. "orientation": {
  6697. "type": "double",
  6698. "value": "0;93.17983011986425"
  6699. },
  6700. "scale": {
  6701. "type": "list<double>",
  6702. "value": [
  6703. 1,
  6704. 1
  6705. ]
  6706. },
  6707. "arrow": "arrowHead",
  6708. "arrowType": "arrow-empty-large",
  6709. "$linkDecoratorInfo": {
  6710. "type": "map<string,double>",
  6711. "value": {
  6712. "xratio": -1,
  6713. "yoffset": -8
  6714. }
  6715. }
  6716. },
  6717. "295": {
  6718. "segments": {
  6719. "type": "string",
  6720. "value": "m0,0 l-10,4 l10,4"
  6721. },
  6722. "style": {
  6723. "type": "map<string,string>",
  6724. "value": {
  6725. "stroke": "#000000",
  6726. "fill": "#000000",
  6727. "fill-opacity": 0,
  6728. "stroke-width": 1,
  6729. "opacity": 0
  6730. }
  6731. },
  6732. "mapper": {
  6733. "type": "code",
  6734. "value": ""
  6735. },
  6736. "parser": {
  6737. "type": "code",
  6738. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6739. },
  6740. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  6741. "position": {
  6742. "type": "list<double>",
  6743. "value": [
  6744. "0;5.993841412821666,0%",
  6745. "0;-35.77811992150987,0%"
  6746. ]
  6747. },
  6748. "orientation": {
  6749. "type": "double",
  6750. "value": "0;93.17983011986425"
  6751. },
  6752. "scale": {
  6753. "type": "list<double>",
  6754. "value": [
  6755. 1,
  6756. 1
  6757. ]
  6758. },
  6759. "arrow": "arrowHead",
  6760. "arrowType": "arrow-empty",
  6761. "$linkDecoratorInfo": {
  6762. "type": "map<string,double>",
  6763. "value": {
  6764. "xratio": -1,
  6765. "yoffset": -4
  6766. }
  6767. }
  6768. },
  6769. "296": {
  6770. "segments": {
  6771. "type": "string",
  6772. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  6773. },
  6774. "style": {
  6775. "type": "map<string,string>",
  6776. "value": {
  6777. "stroke": "#000000",
  6778. "fill": "#000000",
  6779. "opacity": 0,
  6780. "stroke-width": 1
  6781. }
  6782. },
  6783. "mapper": {
  6784. "type": "code",
  6785. "value": ""
  6786. },
  6787. "parser": {
  6788. "type": "code",
  6789. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6790. },
  6791. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  6792. "position": {
  6793. "type": "list<double>",
  6794. "value": [
  6795. "0;11.984603532054166,0%",
  6796. "0;-35.44529980377479,0%"
  6797. ]
  6798. },
  6799. "orientation": {
  6800. "type": "double",
  6801. "value": "0;93.17983011986425"
  6802. },
  6803. "scale": {
  6804. "type": "list<double>",
  6805. "value": [
  6806. 1,
  6807. 1
  6808. ]
  6809. },
  6810. "arrow": "arrowHead",
  6811. "arrowType": "diamond-black-large",
  6812. "$linkDecoratorInfo": {
  6813. "type": "map<string,double>",
  6814. "value": {
  6815. "xratio": -1,
  6816. "yoffset": -10
  6817. }
  6818. }
  6819. },
  6820. "297": {
  6821. "segments": {
  6822. "type": "string",
  6823. "value": "m0,0 l-10,4 l10,4 z"
  6824. },
  6825. "style": {
  6826. "type": "map<string,string>",
  6827. "value": {
  6828. "stroke": "#000000",
  6829. "fill": "#000000",
  6830. "opacity": 0,
  6831. "stroke-width": 1
  6832. }
  6833. },
  6834. "mapper": {
  6835. "type": "code",
  6836. "value": ""
  6837. },
  6838. "parser": {
  6839. "type": "code",
  6840. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6841. },
  6842. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  6843. "position": {
  6844. "type": "list<double>",
  6845. "value": [
  6846. "0;5.993841412821666,0%",
  6847. "0;-35.77811992150987,0%"
  6848. ]
  6849. },
  6850. "orientation": {
  6851. "type": "double",
  6852. "value": "0;93.17983011986425"
  6853. },
  6854. "scale": {
  6855. "type": "list<double>",
  6856. "value": [
  6857. 1,
  6858. 1
  6859. ]
  6860. },
  6861. "arrow": "arrowHead",
  6862. "arrowType": "triangle-black",
  6863. "$linkDecoratorInfo": {
  6864. "type": "map<string,double>",
  6865. "value": {
  6866. "xratio": -1,
  6867. "yoffset": -4
  6868. }
  6869. }
  6870. },
  6871. "298": {
  6872. "segments": {
  6873. "type": "string",
  6874. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  6875. },
  6876. "style": {
  6877. "type": "map<string,string>",
  6878. "value": {
  6879. "stroke": "#000000",
  6880. "fill": "#ffffff",
  6881. "opacity": 0,
  6882. "stroke-width": 1
  6883. }
  6884. },
  6885. "mapper": {
  6886. "type": "code",
  6887. "value": ""
  6888. },
  6889. "parser": {
  6890. "type": "code",
  6891. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6892. },
  6893. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  6894. "position": {
  6895. "type": "list<double>",
  6896. "value": [
  6897. "0;11.984603532054166,0%",
  6898. "0;-35.44529980377479,0%"
  6899. ]
  6900. },
  6901. "orientation": {
  6902. "type": "double",
  6903. "value": "0;93.17983011986425"
  6904. },
  6905. "scale": {
  6906. "type": "list<double>",
  6907. "value": [
  6908. 1,
  6909. 1
  6910. ]
  6911. },
  6912. "arrow": "arrowHead",
  6913. "arrowType": "diamond-white-large",
  6914. "$linkDecoratorInfo": {
  6915. "type": "map<string,double>",
  6916. "value": {
  6917. "xratio": -1,
  6918. "yoffset": -10
  6919. }
  6920. }
  6921. }
  6922. },
  6923. "edges": []
  6924. }
  6925. },
  6926. "$asuri": {
  6927. "type": "string",
  6928. "value": "/Formalisms/__Transformations__/Transformation/MoTif/fail/92.instance"
  6929. },
  6930. "$segments": {
  6931. "type": "map<string,list<string>>",
  6932. "value": {
  6933. "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/LRuleIcon/88.instance--/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/failLink/92.instance": "M718,603L716,639",
  6934. "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/failLink/92.instance--/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/EndFailIcon/7.instance": "M715.9958449100644,639.0747916188421L714.0000231267146,674.9995837191357"
  6935. }
  6936. },
  6937. "$type": "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/failLink"
  6938. },
  6939. "93": {
  6940. "link-style": {
  6941. "type": "map<string,string>",
  6942. "value": {
  6943. "stroke": "#000000",
  6944. "stroke-dasharray": "",
  6945. "stroke-opacity": 1,
  6946. "stroke-width": 0
  6947. }
  6948. },
  6949. "arrowHead": {
  6950. "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)",
  6951. "value": "custom"
  6952. },
  6953. "arrowTail": {
  6954. "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)",
  6955. "value": "arrow-black"
  6956. },
  6957. "typename": {
  6958. "type": "string",
  6959. "value": "baseLink"
  6960. },
  6961. "position": {
  6962. "type": "list<double>",
  6963. "value": [
  6964. 587.25,
  6965. 371.9688130645752
  6966. ]
  6967. },
  6968. "orientation": {
  6969. "type": "double",
  6970. "value": 0
  6971. },
  6972. "scale": {
  6973. "type": "list<double>",
  6974. "value": [
  6975. 1,
  6976. 1
  6977. ]
  6978. },
  6979. "mapper": {
  6980. "type": "code",
  6981. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  6982. },
  6983. "parser": {
  6984. "type": "code",
  6985. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6986. },
  6987. "$contents": {
  6988. "type": "map<string,*>",
  6989. "value": {
  6990. "nodes": {
  6991. "267": {
  6992. "segments": {
  6993. "type": "string",
  6994. "value": "m0,0 l10,4 l-10,4 l3,-4 z"
  6995. },
  6996. "style": {
  6997. "type": "map<string,string>",
  6998. "value": {
  6999. "stroke": "#000000",
  7000. "fill": "#000000",
  7001. "opacity": 0,
  7002. "stroke-width": 1
  7003. }
  7004. },
  7005. "mapper": {
  7006. "type": "code",
  7007. "value": ""
  7008. },
  7009. "parser": {
  7010. "type": "code",
  7011. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7012. },
  7013. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  7014. "position": {
  7015. "type": "list<double>",
  7016. "value": [
  7017. "0;74.17191529051865,87.69180790204646%",
  7018. "0;36.09228767189285,48.06398679750342%"
  7019. ]
  7020. },
  7021. "orientation": {
  7022. "type": "double",
  7023. "value": "0;28.727201140253793"
  7024. },
  7025. "scale": {
  7026. "type": "list<double>",
  7027. "value": [
  7028. 1,
  7029. 1
  7030. ]
  7031. },
  7032. "arrow": "arrowTail",
  7033. "arrowType": "arrow-black",
  7034. "$linkDecoratorInfo": {
  7035. "type": "map<string,double>",
  7036. "value": {
  7037. "xratio": 1,
  7038. "yoffset": -4
  7039. }
  7040. }
  7041. },
  7042. "268": {
  7043. "segments": {
  7044. "type": "string",
  7045. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  7046. },
  7047. "style": {
  7048. "type": "map<string,string>",
  7049. "value": {
  7050. "stroke": "#000000",
  7051. "fill": "#000000",
  7052. "opacity": 0,
  7053. "stroke-width": 1
  7054. }
  7055. },
  7056. "mapper": {
  7057. "type": "code",
  7058. "value": ""
  7059. },
  7060. "parser": {
  7061. "type": "code",
  7062. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7063. },
  7064. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  7065. "position": {
  7066. "type": "list<double>",
  7067. "value": [
  7068. "0;77.05575449836886,87.69180790204646%",
  7069. "0;30.830779197770084,48.06398679750342%"
  7070. ]
  7071. },
  7072. "orientation": {
  7073. "type": "double",
  7074. "value": "0;28.727201140253793"
  7075. },
  7076. "scale": {
  7077. "type": "list<double>",
  7078. "value": [
  7079. 1,
  7080. 1
  7081. ]
  7082. },
  7083. "arrow": "arrowTail",
  7084. "arrowType": "diamond-black-large",
  7085. "$linkDecoratorInfo": {
  7086. "type": "map<string,double>",
  7087. "value": {
  7088. "xratio": 1,
  7089. "yoffset": -10
  7090. }
  7091. }
  7092. },
  7093. "269": {
  7094. "r": {
  7095. "type": "double",
  7096. "value": 10
  7097. },
  7098. "style": {
  7099. "type": "map<string,string>",
  7100. "value": {
  7101. "stroke": "#000000",
  7102. "fill": "#000000",
  7103. "opacity": 0,
  7104. "stroke-width": 1
  7105. }
  7106. },
  7107. "mapper": {
  7108. "type": "code",
  7109. "value": ""
  7110. },
  7111. "parser": {
  7112. "type": "code",
  7113. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7114. },
  7115. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  7116. "position": {
  7117. "type": "list<double>",
  7118. "value": [
  7119. "0;77.05575449836886,87.69180790204646%",
  7120. "0;30.830779197770084,48.06398679750342%"
  7121. ]
  7122. },
  7123. "orientation": {
  7124. "type": "double",
  7125. "value": "0;28.727201140253793"
  7126. },
  7127. "scale": {
  7128. "type": "list<double>",
  7129. "value": [
  7130. 1,
  7131. 1
  7132. ]
  7133. },
  7134. "arrow": "arrowTail",
  7135. "arrowType": "circle-black-large",
  7136. "$linkDecoratorInfo": {
  7137. "type": "map<string,double>",
  7138. "value": {
  7139. "xratio": 1,
  7140. "yoffset": -10
  7141. }
  7142. }
  7143. },
  7144. "270": {
  7145. "r": {
  7146. "type": "double",
  7147. "value": 10
  7148. },
  7149. "style": {
  7150. "type": "map<string,string>",
  7151. "value": {
  7152. "stroke": "#000000",
  7153. "fill": "#ffffff",
  7154. "opacity": 0,
  7155. "stroke-width": 1
  7156. }
  7157. },
  7158. "mapper": {
  7159. "type": "code",
  7160. "value": ""
  7161. },
  7162. "parser": {
  7163. "type": "code",
  7164. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7165. },
  7166. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  7167. "position": {
  7168. "type": "list<double>",
  7169. "value": [
  7170. "0;77.05575449836886,87.69180790204646%",
  7171. "0;30.830779197770084,48.06398679750342%"
  7172. ]
  7173. },
  7174. "orientation": {
  7175. "type": "double",
  7176. "value": "0;28.727201140253793"
  7177. },
  7178. "scale": {
  7179. "type": "list<double>",
  7180. "value": [
  7181. 1,
  7182. 1
  7183. ]
  7184. },
  7185. "arrow": "arrowTail",
  7186. "arrowType": "circle-white-large",
  7187. "$linkDecoratorInfo": {
  7188. "type": "map<string,double>",
  7189. "value": {
  7190. "xratio": 1,
  7191. "yoffset": -10
  7192. }
  7193. }
  7194. },
  7195. "271": {
  7196. "r": {
  7197. "type": "double",
  7198. "value": 5
  7199. },
  7200. "style": {
  7201. "type": "map<string,string>",
  7202. "value": {
  7203. "stroke": "#000000",
  7204. "fill": "#000000",
  7205. "opacity": 0,
  7206. "stroke-width": 1
  7207. }
  7208. },
  7209. "mapper": {
  7210. "type": "code",
  7211. "value": ""
  7212. },
  7213. "parser": {
  7214. "type": "code",
  7215. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7216. },
  7217. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  7218. "position": {
  7219. "type": "list<double>",
  7220. "value": [
  7221. "0;74.65255515849367,87.69180790204646%",
  7222. "0;35.21536959287238,48.06398679750342%"
  7223. ]
  7224. },
  7225. "orientation": {
  7226. "type": "double",
  7227. "value": "0;28.727201140253793"
  7228. },
  7229. "scale": {
  7230. "type": "list<double>",
  7231. "value": [
  7232. 1,
  7233. 1
  7234. ]
  7235. },
  7236. "arrow": "arrowTail",
  7237. "arrowType": "circle-black",
  7238. "$linkDecoratorInfo": {
  7239. "type": "map<string,double>",
  7240. "value": {
  7241. "xratio": 1,
  7242. "yoffset": -5
  7243. }
  7244. }
  7245. },
  7246. "272": {
  7247. "segments": {
  7248. "type": "string",
  7249. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  7250. },
  7251. "style": {
  7252. "type": "map<string,string>",
  7253. "value": {
  7254. "stroke": "#000000",
  7255. "fill": "#000000",
  7256. "opacity": 0,
  7257. "stroke-width": 1
  7258. }
  7259. },
  7260. "mapper": {
  7261. "type": "code",
  7262. "value": ""
  7263. },
  7264. "parser": {
  7265. "type": "code",
  7266. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7267. },
  7268. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  7269. "position": {
  7270. "type": "list<double>",
  7271. "value": [
  7272. "0;74.65255515849367,87.69180790204646%",
  7273. "0;35.21536959287238,48.06398679750342%"
  7274. ]
  7275. },
  7276. "orientation": {
  7277. "type": "double",
  7278. "value": "0;28.727201140253793"
  7279. },
  7280. "scale": {
  7281. "type": "list<double>",
  7282. "value": [
  7283. 1,
  7284. 1
  7285. ]
  7286. },
  7287. "arrow": "arrowTail",
  7288. "arrowType": "diamond-black",
  7289. "$linkDecoratorInfo": {
  7290. "type": "map<string,double>",
  7291. "value": {
  7292. "xratio": 1,
  7293. "yoffset": -5
  7294. }
  7295. }
  7296. },
  7297. "273": {
  7298. "segments": {
  7299. "type": "string",
  7300. "value": "m0,0 l20,10 l-20,10 z"
  7301. },
  7302. "style": {
  7303. "type": "map<string,string>",
  7304. "value": {
  7305. "stroke": "#000000",
  7306. "fill": "#000000",
  7307. "opacity": 0,
  7308. "stroke-width": 1
  7309. }
  7310. },
  7311. "mapper": {
  7312. "type": "code",
  7313. "value": ""
  7314. },
  7315. "parser": {
  7316. "type": "code",
  7317. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7318. },
  7319. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  7320. "position": {
  7321. "type": "list<double>",
  7322. "value": [
  7323. "0;77.05575449836886,87.69180790204646%",
  7324. "0;30.830779197770084,48.06398679750342%"
  7325. ]
  7326. },
  7327. "orientation": {
  7328. "type": "double",
  7329. "value": "0;28.727201140253793"
  7330. },
  7331. "scale": {
  7332. "type": "list<double>",
  7333. "value": [
  7334. 1,
  7335. 1
  7336. ]
  7337. },
  7338. "arrow": "arrowTail",
  7339. "arrowType": "triangle-black-large",
  7340. "$linkDecoratorInfo": {
  7341. "type": "map<string,double>",
  7342. "value": {
  7343. "xratio": 1,
  7344. "yoffset": -10
  7345. }
  7346. }
  7347. },
  7348. "274": {
  7349. "segments": {
  7350. "type": "string",
  7351. "value": "m0,0 l10,4 l-10,4 z"
  7352. },
  7353. "style": {
  7354. "type": "map<string,string>",
  7355. "value": {
  7356. "stroke": "#000000",
  7357. "fill": "#000000",
  7358. "opacity": 0,
  7359. "stroke-width": 1
  7360. }
  7361. },
  7362. "mapper": {
  7363. "type": "code",
  7364. "value": ""
  7365. },
  7366. "parser": {
  7367. "type": "code",
  7368. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7369. },
  7370. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  7371. "position": {
  7372. "type": "list<double>",
  7373. "value": [
  7374. "0;74.17191529051865,87.69180790204646%",
  7375. "0;36.09228767189285,48.06398679750342%"
  7376. ]
  7377. },
  7378. "orientation": {
  7379. "type": "double",
  7380. "value": "0;28.727201140253793"
  7381. },
  7382. "scale": {
  7383. "type": "list<double>",
  7384. "value": [
  7385. 1,
  7386. 1
  7387. ]
  7388. },
  7389. "arrow": "arrowTail",
  7390. "arrowType": "triangle-black",
  7391. "$linkDecoratorInfo": {
  7392. "type": "map<string,double>",
  7393. "value": {
  7394. "xratio": 1,
  7395. "yoffset": -4
  7396. }
  7397. }
  7398. },
  7399. "275": {
  7400. "segments": {
  7401. "type": "string",
  7402. "value": "m0,0 l20,8 l-20,8 l6,-8 z"
  7403. },
  7404. "style": {
  7405. "type": "map<string,string>",
  7406. "value": {
  7407. "stroke": "#000000",
  7408. "fill": "#000000",
  7409. "opacity": 0,
  7410. "stroke-width": 1
  7411. }
  7412. },
  7413. "mapper": {
  7414. "type": "code",
  7415. "value": ""
  7416. },
  7417. "parser": {
  7418. "type": "code",
  7419. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7420. },
  7421. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  7422. "position": {
  7423. "type": "list<double>",
  7424. "value": [
  7425. "0;76.09447476241871,87.69180790204646%",
  7426. "0;32.584615355811025,48.06398679750342%"
  7427. ]
  7428. },
  7429. "orientation": {
  7430. "type": "double",
  7431. "value": "0;28.727201140253793"
  7432. },
  7433. "scale": {
  7434. "type": "list<double>",
  7435. "value": [
  7436. 1,
  7437. 1
  7438. ]
  7439. },
  7440. "arrow": "arrowTail",
  7441. "arrowType": "arrow-black-large",
  7442. "$linkDecoratorInfo": {
  7443. "type": "map<string,double>",
  7444. "value": {
  7445. "xratio": 1,
  7446. "yoffset": -8
  7447. }
  7448. }
  7449. },
  7450. "276": {
  7451. "segments": {
  7452. "type": "string",
  7453. "value": "m0,0 l20,10 l-20,10 z"
  7454. },
  7455. "style": {
  7456. "type": "map<string,string>",
  7457. "value": {
  7458. "stroke": "#000000",
  7459. "fill": "#ffffff",
  7460. "opacity": 0,
  7461. "stroke-width": 1
  7462. }
  7463. },
  7464. "mapper": {
  7465. "type": "code",
  7466. "value": ""
  7467. },
  7468. "parser": {
  7469. "type": "code",
  7470. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7471. },
  7472. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  7473. "position": {
  7474. "type": "list<double>",
  7475. "value": [
  7476. "0;77.05575449836886,87.69180790204646%",
  7477. "0;30.830779197770084,48.06398679750342%"
  7478. ]
  7479. },
  7480. "orientation": {
  7481. "type": "double",
  7482. "value": "0;28.727201140253793"
  7483. },
  7484. "scale": {
  7485. "type": "list<double>",
  7486. "value": [
  7487. 1,
  7488. 1
  7489. ]
  7490. },
  7491. "arrow": "arrowTail",
  7492. "arrowType": "triangle-white-large",
  7493. "$linkDecoratorInfo": {
  7494. "type": "map<string,double>",
  7495. "value": {
  7496. "xratio": 1,
  7497. "yoffset": -10
  7498. }
  7499. }
  7500. },
  7501. "277": {
  7502. "segments": {
  7503. "type": "string",
  7504. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  7505. },
  7506. "style": {
  7507. "type": "map<string,string>",
  7508. "value": {
  7509. "stroke": "#000000",
  7510. "fill": "#ffffff",
  7511. "opacity": 0,
  7512. "stroke-width": 1
  7513. }
  7514. },
  7515. "mapper": {
  7516. "type": "code",
  7517. "value": ""
  7518. },
  7519. "parser": {
  7520. "type": "code",
  7521. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7522. },
  7523. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  7524. "position": {
  7525. "type": "list<double>",
  7526. "value": [
  7527. "0;74.65255515849367,87.69180790204646%",
  7528. "0;35.21536959287238,48.06398679750342%"
  7529. ]
  7530. },
  7531. "orientation": {
  7532. "type": "double",
  7533. "value": "0;28.727201140253793"
  7534. },
  7535. "scale": {
  7536. "type": "list<double>",
  7537. "value": [
  7538. 1,
  7539. 1
  7540. ]
  7541. },
  7542. "arrow": "arrowTail",
  7543. "arrowType": "diamond-white",
  7544. "$linkDecoratorInfo": {
  7545. "type": "map<string,double>",
  7546. "value": {
  7547. "xratio": 1,
  7548. "yoffset": -5
  7549. }
  7550. }
  7551. },
  7552. "278": {
  7553. "segments": {
  7554. "type": "string",
  7555. "value": "m0,0 l20,8 l-20,8"
  7556. },
  7557. "style": {
  7558. "type": "map<string,string>",
  7559. "value": {
  7560. "stroke": "#000000",
  7561. "fill": "#000000",
  7562. "fill-opacity": 0,
  7563. "stroke-width": 1,
  7564. "opacity": 0
  7565. }
  7566. },
  7567. "mapper": {
  7568. "type": "code",
  7569. "value": ""
  7570. },
  7571. "parser": {
  7572. "type": "code",
  7573. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7574. },
  7575. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  7576. "position": {
  7577. "type": "list<double>",
  7578. "value": [
  7579. "0;76.09447476241871,87.69180790204646%",
  7580. "0;32.584615355811025,48.06398679750342%"
  7581. ]
  7582. },
  7583. "orientation": {
  7584. "type": "double",
  7585. "value": "0;28.727201140253793"
  7586. },
  7587. "scale": {
  7588. "type": "list<double>",
  7589. "value": [
  7590. 1,
  7591. 1
  7592. ]
  7593. },
  7594. "arrow": "arrowTail",
  7595. "arrowType": "arrow-empty-large",
  7596. "$linkDecoratorInfo": {
  7597. "type": "map<string,double>",
  7598. "value": {
  7599. "xratio": 1,
  7600. "yoffset": -8
  7601. }
  7602. }
  7603. },
  7604. "279": {
  7605. "r": {
  7606. "type": "double",
  7607. "value": 5
  7608. },
  7609. "style": {
  7610. "type": "map<string,string>",
  7611. "value": {
  7612. "stroke": "#000000",
  7613. "fill": "#ffffff",
  7614. "opacity": 0,
  7615. "stroke-width": 1
  7616. }
  7617. },
  7618. "mapper": {
  7619. "type": "code",
  7620. "value": ""
  7621. },
  7622. "parser": {
  7623. "type": "code",
  7624. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7625. },
  7626. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  7627. "position": {
  7628. "type": "list<double>",
  7629. "value": [
  7630. "0;74.65255515849367,87.69180790204646%",
  7631. "0;35.21536959287238,48.06398679750342%"
  7632. ]
  7633. },
  7634. "orientation": {
  7635. "type": "double",
  7636. "value": "0;28.727201140253793"
  7637. },
  7638. "scale": {
  7639. "type": "list<double>",
  7640. "value": [
  7641. 1,
  7642. 1
  7643. ]
  7644. },
  7645. "arrow": "arrowTail",
  7646. "arrowType": "circle-white",
  7647. "$linkDecoratorInfo": {
  7648. "type": "map<string,double>",
  7649. "value": {
  7650. "xratio": 1,
  7651. "yoffset": -5
  7652. }
  7653. }
  7654. },
  7655. "280": {
  7656. "segments": {
  7657. "type": "string",
  7658. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  7659. },
  7660. "style": {
  7661. "type": "map<string,string>",
  7662. "value": {
  7663. "stroke": "#000000",
  7664. "fill": "#ffffff",
  7665. "opacity": 0,
  7666. "stroke-width": 1
  7667. }
  7668. },
  7669. "mapper": {
  7670. "type": "code",
  7671. "value": ""
  7672. },
  7673. "parser": {
  7674. "type": "code",
  7675. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7676. },
  7677. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  7678. "position": {
  7679. "type": "list<double>",
  7680. "value": [
  7681. "0;77.05575449836886,87.69180790204646%",
  7682. "0;30.830779197770084,48.06398679750342%"
  7683. ]
  7684. },
  7685. "orientation": {
  7686. "type": "double",
  7687. "value": "0;28.727201140253793"
  7688. },
  7689. "scale": {
  7690. "type": "list<double>",
  7691. "value": [
  7692. 1,
  7693. 1
  7694. ]
  7695. },
  7696. "arrow": "arrowTail",
  7697. "arrowType": "diamond-white-large",
  7698. "$linkDecoratorInfo": {
  7699. "type": "map<string,double>",
  7700. "value": {
  7701. "xratio": 1,
  7702. "yoffset": -10
  7703. }
  7704. }
  7705. },
  7706. "281": {
  7707. "segments": {
  7708. "type": "string",
  7709. "value": "m0,0 l10,4 l-10,4"
  7710. },
  7711. "style": {
  7712. "type": "map<string,string>",
  7713. "value": {
  7714. "stroke": "#000000",
  7715. "fill": "#000000",
  7716. "fill-opacity": 0,
  7717. "stroke-width": 1,
  7718. "opacity": 0
  7719. }
  7720. },
  7721. "mapper": {
  7722. "type": "code",
  7723. "value": ""
  7724. },
  7725. "parser": {
  7726. "type": "code",
  7727. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7728. },
  7729. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  7730. "position": {
  7731. "type": "list<double>",
  7732. "value": [
  7733. "0;74.17191529051865,87.69180790204646%",
  7734. "0;36.09228767189285,48.06398679750342%"
  7735. ]
  7736. },
  7737. "orientation": {
  7738. "type": "double",
  7739. "value": "0;28.727201140253793"
  7740. },
  7741. "scale": {
  7742. "type": "list<double>",
  7743. "value": [
  7744. 1,
  7745. 1
  7746. ]
  7747. },
  7748. "arrow": "arrowTail",
  7749. "arrowType": "arrow-empty",
  7750. "$linkDecoratorInfo": {
  7751. "type": "map<string,double>",
  7752. "value": {
  7753. "xratio": 1,
  7754. "yoffset": -4
  7755. }
  7756. }
  7757. },
  7758. "282": {
  7759. "segments": {
  7760. "type": "string",
  7761. "value": "m0,0 l10,5 l-10,5 z"
  7762. },
  7763. "style": {
  7764. "type": "map<string,string>",
  7765. "value": {
  7766. "stroke": "#000000",
  7767. "fill": "#ffffff",
  7768. "opacity": 0,
  7769. "stroke-width": 1
  7770. }
  7771. },
  7772. "mapper": {
  7773. "type": "code",
  7774. "value": ""
  7775. },
  7776. "parser": {
  7777. "type": "code",
  7778. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7779. },
  7780. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  7781. "position": {
  7782. "type": "list<double>",
  7783. "value": [
  7784. "0;74.65255515849367,87.69180790204646%",
  7785. "0;35.21536959287238,48.06398679750342%"
  7786. ]
  7787. },
  7788. "orientation": {
  7789. "type": "double",
  7790. "value": "0;28.727201140253793"
  7791. },
  7792. "scale": {
  7793. "type": "list<double>",
  7794. "value": [
  7795. 1,
  7796. 1
  7797. ]
  7798. },
  7799. "arrow": "arrowTail",
  7800. "arrowType": "triangle-white",
  7801. "$linkDecoratorInfo": {
  7802. "type": "map<string,double>",
  7803. "value": {
  7804. "xratio": 1,
  7805. "yoffset": -5
  7806. }
  7807. }
  7808. },
  7809. "283": {
  7810. "segments": {
  7811. "type": "string",
  7812. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  7813. },
  7814. "style": {
  7815. "type": "map<string,string>",
  7816. "value": {
  7817. "stroke": "#000000",
  7818. "fill": "#ffffff",
  7819. "opacity": 0,
  7820. "stroke-width": 1
  7821. }
  7822. },
  7823. "mapper": {
  7824. "type": "code",
  7825. "value": ""
  7826. },
  7827. "parser": {
  7828. "type": "code",
  7829. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7830. },
  7831. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  7832. "position": {
  7833. "type": "list<double>",
  7834. "value": [
  7835. "0;-69.84680066012481,0%",
  7836. "0;-43.984903459677525,0%"
  7837. ]
  7838. },
  7839. "orientation": {
  7840. "type": "double",
  7841. "value": "0;28.727201140253865"
  7842. },
  7843. "scale": {
  7844. "type": "list<double>",
  7845. "value": [
  7846. 1,
  7847. 1
  7848. ]
  7849. },
  7850. "arrow": "arrowHead",
  7851. "arrowType": "diamond-white",
  7852. "$linkDecoratorInfo": {
  7853. "type": "map<string,double>",
  7854. "value": {
  7855. "xratio": -1,
  7856. "yoffset": -5
  7857. }
  7858. }
  7859. },
  7860. "284": {
  7861. "segments": {
  7862. "type": "string",
  7863. "value": "m0,0 l-10,5 l10,5 z"
  7864. },
  7865. "style": {
  7866. "type": "map<string,string>",
  7867. "value": {
  7868. "stroke": "#000000",
  7869. "fill": "#ffffff",
  7870. "opacity": 0,
  7871. "stroke-width": 1
  7872. }
  7873. },
  7874. "mapper": {
  7875. "type": "code",
  7876. "value": ""
  7877. },
  7878. "parser": {
  7879. "type": "code",
  7880. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7881. },
  7882. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  7883. "position": {
  7884. "type": "list<double>",
  7885. "value": [
  7886. "0;-69.84680066012481,0%",
  7887. "0;-43.984903459677525,0%"
  7888. ]
  7889. },
  7890. "orientation": {
  7891. "type": "double",
  7892. "value": "0;28.727201140253865"
  7893. },
  7894. "scale": {
  7895. "type": "list<double>",
  7896. "value": [
  7897. 1,
  7898. 1
  7899. ]
  7900. },
  7901. "arrow": "arrowHead",
  7902. "arrowType": "triangle-white",
  7903. "$linkDecoratorInfo": {
  7904. "type": "map<string,double>",
  7905. "value": {
  7906. "xratio": -1,
  7907. "yoffset": -5
  7908. }
  7909. }
  7910. },
  7911. "285": {
  7912. "segments": {
  7913. "type": "string",
  7914. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  7915. },
  7916. "style": {
  7917. "type": "map<string,string>",
  7918. "value": {
  7919. "stroke": "#000000",
  7920. "fill": "#000000",
  7921. "opacity": 0,
  7922. "stroke-width": 1
  7923. }
  7924. },
  7925. "mapper": {
  7926. "type": "code",
  7927. "value": ""
  7928. },
  7929. "parser": {
  7930. "type": "code",
  7931. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7932. },
  7933. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  7934. "position": {
  7935. "type": "list<double>",
  7936. "value": [
  7937. "0;-69.84680066012481,0%",
  7938. "0;-43.984903459677525,0%"
  7939. ]
  7940. },
  7941. "orientation": {
  7942. "type": "double",
  7943. "value": "0;28.727201140253865"
  7944. },
  7945. "scale": {
  7946. "type": "list<double>",
  7947. "value": [
  7948. 1,
  7949. 1
  7950. ]
  7951. },
  7952. "arrow": "arrowHead",
  7953. "arrowType": "diamond-black",
  7954. "$linkDecoratorInfo": {
  7955. "type": "map<string,double>",
  7956. "value": {
  7957. "xratio": -1,
  7958. "yoffset": -5
  7959. }
  7960. }
  7961. },
  7962. "286": {
  7963. "r": {
  7964. "type": "double",
  7965. "value": 10
  7966. },
  7967. "style": {
  7968. "type": "map<string,string>",
  7969. "value": {
  7970. "stroke": "#000000",
  7971. "fill": "#000000",
  7972. "opacity": 0,
  7973. "stroke-width": 1
  7974. }
  7975. },
  7976. "mapper": {
  7977. "type": "code",
  7978. "value": ""
  7979. },
  7980. "parser": {
  7981. "type": "code",
  7982. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  7983. },
  7984. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  7985. "position": {
  7986. "type": "list<double>",
  7987. "value": [
  7988. "0;-67.44360132024963,0%",
  7989. "0;-48.369493854779876,0%"
  7990. ]
  7991. },
  7992. "orientation": {
  7993. "type": "double",
  7994. "value": "0;28.727201140253865"
  7995. },
  7996. "scale": {
  7997. "type": "list<double>",
  7998. "value": [
  7999. 1,
  8000. 1
  8001. ]
  8002. },
  8003. "arrow": "arrowHead",
  8004. "arrowType": "circle-black-large",
  8005. "$linkDecoratorInfo": {
  8006. "type": "map<string,double>",
  8007. "value": {
  8008. "xratio": -1,
  8009. "yoffset": -10
  8010. }
  8011. }
  8012. },
  8013. "287": {
  8014. "segments": {
  8015. "type": "string",
  8016. "value": "m0,0 l-20,8 l20,8 l-6,-8 z"
  8017. },
  8018. "style": {
  8019. "type": "map<string,string>",
  8020. "value": {
  8021. "stroke": "#000000",
  8022. "fill": "#000000",
  8023. "opacity": 0,
  8024. "stroke-width": 1
  8025. }
  8026. },
  8027. "mapper": {
  8028. "type": "code",
  8029. "value": ""
  8030. },
  8031. "parser": {
  8032. "type": "code",
  8033. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8034. },
  8035. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  8036. "position": {
  8037. "type": "list<double>",
  8038. "value": [
  8039. "0;-68.40488105619977,0%",
  8040. "0;-46.615657696738936,0%"
  8041. ]
  8042. },
  8043. "orientation": {
  8044. "type": "double",
  8045. "value": "0;28.727201140253865"
  8046. },
  8047. "scale": {
  8048. "type": "list<double>",
  8049. "value": [
  8050. 1,
  8051. 1
  8052. ]
  8053. },
  8054. "arrow": "arrowHead",
  8055. "arrowType": "arrow-black-large",
  8056. "$linkDecoratorInfo": {
  8057. "type": "map<string,double>",
  8058. "value": {
  8059. "xratio": -1,
  8060. "yoffset": -8
  8061. }
  8062. }
  8063. },
  8064. "288": {
  8065. "segments": {
  8066. "type": "string",
  8067. "value": "m0,0 l-10,4 l10,4 l-3,-4 z"
  8068. },
  8069. "style": {
  8070. "type": "map<string,string>",
  8071. "value": {
  8072. "stroke": "#000000",
  8073. "fill": "#000000",
  8074. "opacity": 0,
  8075. "stroke-width": 1
  8076. }
  8077. },
  8078. "mapper": {
  8079. "type": "code",
  8080. "value": ""
  8081. },
  8082. "parser": {
  8083. "type": "code",
  8084. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8085. },
  8086. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  8087. "position": {
  8088. "type": "list<double>",
  8089. "value": [
  8090. "0;-70.32744052809983,0%",
  8091. "0;-43.10798538065711,0%"
  8092. ]
  8093. },
  8094. "orientation": {
  8095. "type": "double",
  8096. "value": "0;28.727201140253865"
  8097. },
  8098. "scale": {
  8099. "type": "list<double>",
  8100. "value": [
  8101. 1,
  8102. 1
  8103. ]
  8104. },
  8105. "arrow": "arrowHead",
  8106. "arrowType": "arrow-black",
  8107. "$linkDecoratorInfo": {
  8108. "type": "map<string,double>",
  8109. "value": {
  8110. "xratio": -1,
  8111. "yoffset": -4
  8112. }
  8113. }
  8114. },
  8115. "289": {
  8116. "segments": {
  8117. "type": "string",
  8118. "value": "m0,0 l-20,10 l20,10 z"
  8119. },
  8120. "style": {
  8121. "type": "map<string,string>",
  8122. "value": {
  8123. "stroke": "#000000",
  8124. "fill": "#ffffff",
  8125. "opacity": 0,
  8126. "stroke-width": 1
  8127. }
  8128. },
  8129. "mapper": {
  8130. "type": "code",
  8131. "value": ""
  8132. },
  8133. "parser": {
  8134. "type": "code",
  8135. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8136. },
  8137. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  8138. "position": {
  8139. "type": "list<double>",
  8140. "value": [
  8141. "0;-67.44360132024963,0%",
  8142. "0;-48.369493854779876,0%"
  8143. ]
  8144. },
  8145. "orientation": {
  8146. "type": "double",
  8147. "value": "0;28.727201140253865"
  8148. },
  8149. "scale": {
  8150. "type": "list<double>",
  8151. "value": [
  8152. 1,
  8153. 1
  8154. ]
  8155. },
  8156. "arrow": "arrowHead",
  8157. "arrowType": "triangle-white-large",
  8158. "$linkDecoratorInfo": {
  8159. "type": "map<string,double>",
  8160. "value": {
  8161. "xratio": -1,
  8162. "yoffset": -10
  8163. }
  8164. }
  8165. },
  8166. "290": {
  8167. "segments": {
  8168. "type": "string",
  8169. "value": "m0,0 l-20,10 l20,10 z"
  8170. },
  8171. "style": {
  8172. "type": "map<string,string>",
  8173. "value": {
  8174. "stroke": "#000000",
  8175. "fill": "#000000",
  8176. "opacity": 0,
  8177. "stroke-width": 1
  8178. }
  8179. },
  8180. "mapper": {
  8181. "type": "code",
  8182. "value": ""
  8183. },
  8184. "parser": {
  8185. "type": "code",
  8186. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8187. },
  8188. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  8189. "position": {
  8190. "type": "list<double>",
  8191. "value": [
  8192. "0;-67.44360132024963,0%",
  8193. "0;-48.369493854779876,0%"
  8194. ]
  8195. },
  8196. "orientation": {
  8197. "type": "double",
  8198. "value": "0;28.727201140253865"
  8199. },
  8200. "scale": {
  8201. "type": "list<double>",
  8202. "value": [
  8203. 1,
  8204. 1
  8205. ]
  8206. },
  8207. "arrow": "arrowHead",
  8208. "arrowType": "triangle-black-large",
  8209. "$linkDecoratorInfo": {
  8210. "type": "map<string,double>",
  8211. "value": {
  8212. "xratio": -1,
  8213. "yoffset": -10
  8214. }
  8215. }
  8216. },
  8217. "291": {
  8218. "r": {
  8219. "type": "double",
  8220. "value": 5
  8221. },
  8222. "style": {
  8223. "type": "map<string,string>",
  8224. "value": {
  8225. "stroke": "#000000",
  8226. "fill": "#000000",
  8227. "opacity": 0,
  8228. "stroke-width": 1
  8229. }
  8230. },
  8231. "mapper": {
  8232. "type": "code",
  8233. "value": ""
  8234. },
  8235. "parser": {
  8236. "type": "code",
  8237. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8238. },
  8239. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  8240. "position": {
  8241. "type": "list<double>",
  8242. "value": [
  8243. "0;-69.84680066012481,0%",
  8244. "0;-43.984903459677525,0%"
  8245. ]
  8246. },
  8247. "orientation": {
  8248. "type": "double",
  8249. "value": "0;28.727201140253865"
  8250. },
  8251. "scale": {
  8252. "type": "list<double>",
  8253. "value": [
  8254. 1,
  8255. 1
  8256. ]
  8257. },
  8258. "arrow": "arrowHead",
  8259. "arrowType": "circle-black",
  8260. "$linkDecoratorInfo": {
  8261. "type": "map<string,double>",
  8262. "value": {
  8263. "xratio": -1,
  8264. "yoffset": -5
  8265. }
  8266. }
  8267. },
  8268. "292": {
  8269. "r": {
  8270. "type": "double",
  8271. "value": 5
  8272. },
  8273. "style": {
  8274. "type": "map<string,string>",
  8275. "value": {
  8276. "stroke": "#000000",
  8277. "fill": "#ffffff",
  8278. "opacity": 0,
  8279. "stroke-width": 1
  8280. }
  8281. },
  8282. "mapper": {
  8283. "type": "code",
  8284. "value": ""
  8285. },
  8286. "parser": {
  8287. "type": "code",
  8288. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8289. },
  8290. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  8291. "position": {
  8292. "type": "list<double>",
  8293. "value": [
  8294. "0;-69.84680066012481,0%",
  8295. "0;-43.984903459677525,0%"
  8296. ]
  8297. },
  8298. "orientation": {
  8299. "type": "double",
  8300. "value": "0;28.727201140253865"
  8301. },
  8302. "scale": {
  8303. "type": "list<double>",
  8304. "value": [
  8305. 1,
  8306. 1
  8307. ]
  8308. },
  8309. "arrow": "arrowHead",
  8310. "arrowType": "circle-white",
  8311. "$linkDecoratorInfo": {
  8312. "type": "map<string,double>",
  8313. "value": {
  8314. "xratio": -1,
  8315. "yoffset": -5
  8316. }
  8317. }
  8318. },
  8319. "293": {
  8320. "r": {
  8321. "type": "double",
  8322. "value": 10
  8323. },
  8324. "style": {
  8325. "type": "map<string,string>",
  8326. "value": {
  8327. "stroke": "#000000",
  8328. "fill": "#ffffff",
  8329. "opacity": 0,
  8330. "stroke-width": 1
  8331. }
  8332. },
  8333. "mapper": {
  8334. "type": "code",
  8335. "value": ""
  8336. },
  8337. "parser": {
  8338. "type": "code",
  8339. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8340. },
  8341. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  8342. "position": {
  8343. "type": "list<double>",
  8344. "value": [
  8345. "0;-67.44360132024963,0%",
  8346. "0;-48.369493854779876,0%"
  8347. ]
  8348. },
  8349. "orientation": {
  8350. "type": "double",
  8351. "value": "0;28.727201140253865"
  8352. },
  8353. "scale": {
  8354. "type": "list<double>",
  8355. "value": [
  8356. 1,
  8357. 1
  8358. ]
  8359. },
  8360. "arrow": "arrowHead",
  8361. "arrowType": "circle-white-large",
  8362. "$linkDecoratorInfo": {
  8363. "type": "map<string,double>",
  8364. "value": {
  8365. "xratio": -1,
  8366. "yoffset": -10
  8367. }
  8368. }
  8369. },
  8370. "294": {
  8371. "segments": {
  8372. "type": "string",
  8373. "value": "m0,0 l-20,8 l20,8"
  8374. },
  8375. "style": {
  8376. "type": "map<string,string>",
  8377. "value": {
  8378. "stroke": "#000000",
  8379. "fill": "#000000",
  8380. "fill-opacity": 0,
  8381. "stroke-width": 1,
  8382. "opacity": 0
  8383. }
  8384. },
  8385. "mapper": {
  8386. "type": "code",
  8387. "value": ""
  8388. },
  8389. "parser": {
  8390. "type": "code",
  8391. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8392. },
  8393. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  8394. "position": {
  8395. "type": "list<double>",
  8396. "value": [
  8397. "0;-68.40488105619977,0%",
  8398. "0;-46.615657696738936,0%"
  8399. ]
  8400. },
  8401. "orientation": {
  8402. "type": "double",
  8403. "value": "0;28.727201140253865"
  8404. },
  8405. "scale": {
  8406. "type": "list<double>",
  8407. "value": [
  8408. 1,
  8409. 1
  8410. ]
  8411. },
  8412. "arrow": "arrowHead",
  8413. "arrowType": "arrow-empty-large",
  8414. "$linkDecoratorInfo": {
  8415. "type": "map<string,double>",
  8416. "value": {
  8417. "xratio": -1,
  8418. "yoffset": -8
  8419. }
  8420. }
  8421. },
  8422. "295": {
  8423. "segments": {
  8424. "type": "string",
  8425. "value": "m0,0 l-10,4 l10,4"
  8426. },
  8427. "style": {
  8428. "type": "map<string,string>",
  8429. "value": {
  8430. "stroke": "#000000",
  8431. "fill": "#000000",
  8432. "fill-opacity": 0,
  8433. "stroke-width": 1,
  8434. "opacity": 0
  8435. }
  8436. },
  8437. "mapper": {
  8438. "type": "code",
  8439. "value": ""
  8440. },
  8441. "parser": {
  8442. "type": "code",
  8443. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8444. },
  8445. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  8446. "position": {
  8447. "type": "list<double>",
  8448. "value": [
  8449. "0;-70.32744052809983,0%",
  8450. "0;-43.10798538065711,0%"
  8451. ]
  8452. },
  8453. "orientation": {
  8454. "type": "double",
  8455. "value": "0;28.727201140253865"
  8456. },
  8457. "scale": {
  8458. "type": "list<double>",
  8459. "value": [
  8460. 1,
  8461. 1
  8462. ]
  8463. },
  8464. "arrow": "arrowHead",
  8465. "arrowType": "arrow-empty",
  8466. "$linkDecoratorInfo": {
  8467. "type": "map<string,double>",
  8468. "value": {
  8469. "xratio": -1,
  8470. "yoffset": -4
  8471. }
  8472. }
  8473. },
  8474. "296": {
  8475. "segments": {
  8476. "type": "string",
  8477. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  8478. },
  8479. "style": {
  8480. "type": "map<string,string>",
  8481. "value": {
  8482. "stroke": "#000000",
  8483. "fill": "#000000",
  8484. "opacity": 0,
  8485. "stroke-width": 1
  8486. }
  8487. },
  8488. "mapper": {
  8489. "type": "code",
  8490. "value": ""
  8491. },
  8492. "parser": {
  8493. "type": "code",
  8494. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8495. },
  8496. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  8497. "position": {
  8498. "type": "list<double>",
  8499. "value": [
  8500. "0;-67.44360132024963,0%",
  8501. "0;-48.369493854779876,0%"
  8502. ]
  8503. },
  8504. "orientation": {
  8505. "type": "double",
  8506. "value": "0;28.727201140253865"
  8507. },
  8508. "scale": {
  8509. "type": "list<double>",
  8510. "value": [
  8511. 1,
  8512. 1
  8513. ]
  8514. },
  8515. "arrow": "arrowHead",
  8516. "arrowType": "diamond-black-large",
  8517. "$linkDecoratorInfo": {
  8518. "type": "map<string,double>",
  8519. "value": {
  8520. "xratio": -1,
  8521. "yoffset": -10
  8522. }
  8523. }
  8524. },
  8525. "297": {
  8526. "segments": {
  8527. "type": "string",
  8528. "value": "m0,0 l-10,4 l10,4 z"
  8529. },
  8530. "style": {
  8531. "type": "map<string,string>",
  8532. "value": {
  8533. "stroke": "#000000",
  8534. "fill": "#000000",
  8535. "opacity": 0,
  8536. "stroke-width": 1
  8537. }
  8538. },
  8539. "mapper": {
  8540. "type": "code",
  8541. "value": ""
  8542. },
  8543. "parser": {
  8544. "type": "code",
  8545. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8546. },
  8547. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  8548. "position": {
  8549. "type": "list<double>",
  8550. "value": [
  8551. "0;-70.32744052809983,0%",
  8552. "0;-43.10798538065711,0%"
  8553. ]
  8554. },
  8555. "orientation": {
  8556. "type": "double",
  8557. "value": "0;28.727201140253865"
  8558. },
  8559. "scale": {
  8560. "type": "list<double>",
  8561. "value": [
  8562. 1,
  8563. 1
  8564. ]
  8565. },
  8566. "arrow": "arrowHead",
  8567. "arrowType": "triangle-black",
  8568. "$linkDecoratorInfo": {
  8569. "type": "map<string,double>",
  8570. "value": {
  8571. "xratio": -1,
  8572. "yoffset": -4
  8573. }
  8574. }
  8575. },
  8576. "298": {
  8577. "segments": {
  8578. "type": "string",
  8579. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  8580. },
  8581. "style": {
  8582. "type": "map<string,string>",
  8583. "value": {
  8584. "stroke": "#000000",
  8585. "fill": "#ffffff",
  8586. "opacity": 0,
  8587. "stroke-width": 1
  8588. }
  8589. },
  8590. "mapper": {
  8591. "type": "code",
  8592. "value": ""
  8593. },
  8594. "parser": {
  8595. "type": "code",
  8596. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8597. },
  8598. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  8599. "position": {
  8600. "type": "list<double>",
  8601. "value": [
  8602. "0;-67.44360132024963,0%",
  8603. "0;-48.369493854779876,0%"
  8604. ]
  8605. },
  8606. "orientation": {
  8607. "type": "double",
  8608. "value": "0;28.727201140253865"
  8609. },
  8610. "scale": {
  8611. "type": "list<double>",
  8612. "value": [
  8613. 1,
  8614. 1
  8615. ]
  8616. },
  8617. "arrow": "arrowHead",
  8618. "arrowType": "diamond-white-large",
  8619. "$linkDecoratorInfo": {
  8620. "type": "map<string,double>",
  8621. "value": {
  8622. "xratio": -1,
  8623. "yoffset": -10
  8624. }
  8625. }
  8626. }
  8627. },
  8628. "edges": []
  8629. }
  8630. },
  8631. "$asuri": {
  8632. "type": "string",
  8633. "value": "/Formalisms/__Transformations__/Transformation/MoTif/base/93.instance"
  8634. },
  8635. "$segments": {
  8636. "type": "map<string,list<string>>",
  8637. "value": {
  8638. "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/LRuleIcon/88.instance--/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/baseLink/93.instance": "M515,332.3685L587.25,371.9688130645752",
  8639. "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/baseLink/93.instance--/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/QRuleIcon/89.instance": "M587.3818422163396,372.0410759440516L659.4993558186185,411.56877305254994"
  8640. }
  8641. },
  8642. "$type": "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/baseLink"
  8643. },
  8644. "94": {
  8645. "typename": {
  8646. "type": "string",
  8647. "value": "ARuleIcon"
  8648. },
  8649. "position": {
  8650. "type": "list<double>",
  8651. "value": [
  8652. 567,
  8653. 480
  8654. ]
  8655. },
  8656. "orientation": {
  8657. "type": "double",
  8658. "value": 0
  8659. },
  8660. "scale": {
  8661. "type": "list<double>",
  8662. "value": [
  8663. 1,
  8664. 1
  8665. ]
  8666. },
  8667. "mapper": {
  8668. "type": "code",
  8669. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  8670. },
  8671. "parser": {
  8672. "type": "code",
  8673. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8674. },
  8675. "$contents": {
  8676. "type": "map<string,*>",
  8677. "value": {
  8678. "nodes": {
  8679. "402": {
  8680. "width": {
  8681. "type": "double",
  8682. "value": 200
  8683. },
  8684. "height": {
  8685. "type": "double",
  8686. "value": 50
  8687. },
  8688. "cornerRadius": {
  8689. "type": "double",
  8690. "value": 1
  8691. },
  8692. "style": {
  8693. "type": "map<string,string>",
  8694. "value": {
  8695. "fill": "#ffffff",
  8696. "stroke": "#008000",
  8697. "stroke-width": "5",
  8698. "stroke-linecap": "butt",
  8699. "stroke-linejoin": "miter",
  8700. "stroke-miterlimit": "4",
  8701. "stroke-opacity": "1",
  8702. "fill-opacity": "0.5"
  8703. }
  8704. },
  8705. "mapper": {
  8706. "type": "code",
  8707. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  8708. },
  8709. "parser": {
  8710. "type": "code",
  8711. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8712. },
  8713. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  8714. "position": {
  8715. "type": "list<double>",
  8716. "value": [
  8717. 2,
  8718. 25
  8719. ]
  8720. },
  8721. "orientation": {
  8722. "type": "double",
  8723. "value": 0
  8724. },
  8725. "scale": {
  8726. "type": "list<double>",
  8727. "value": [
  8728. 1,
  8729. 1
  8730. ]
  8731. }
  8732. },
  8733. "403": {
  8734. "textContent": {
  8735. "type": "string",
  8736. "value": "highlight"
  8737. },
  8738. "style": {
  8739. "type": "map<string,string>",
  8740. "value": {
  8741. "font-size": "20px",
  8742. "font-style": "normal",
  8743. "font-variant": "normal",
  8744. "font-weight": "bold",
  8745. "font-stretch": "normal",
  8746. "text-align": "left",
  8747. "line-height": "125%",
  8748. "writing-mode": "lr-tb",
  8749. "text-anchor": "left",
  8750. "fill": "#008000",
  8751. "fill-opacity": "1",
  8752. "stroke": "none",
  8753. "font-family": "Arial"
  8754. }
  8755. },
  8756. "mapper": {
  8757. "type": "code",
  8758. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n({'textContent': getAttr('name')})"
  8759. },
  8760. "parser": {
  8761. "type": "code",
  8762. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8763. },
  8764. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  8765. "position": {
  8766. "type": "list<double>",
  8767. "value": [
  8768. 49,
  8769. 39
  8770. ]
  8771. },
  8772. "orientation": {
  8773. "type": "double",
  8774. "value": 0
  8775. },
  8776. "scale": {
  8777. "type": "list<double>",
  8778. "value": [
  8779. 1,
  8780. 1
  8781. ]
  8782. }
  8783. },
  8784. "404": {
  8785. "segments": {
  8786. "type": "string",
  8787. "value": "M 0.01697481,7.2449841 2.4082848,10.044684 11.016975,1.5335841"
  8788. },
  8789. "style": {
  8790. "type": "map<string,string>",
  8791. "value": {
  8792. "fill": "none",
  8793. "stroke": "#008000",
  8794. "stroke-width": "3",
  8795. "stroke-linecap": "round",
  8796. "stroke-linejoin": "round",
  8797. "stroke-miterlimit": "4",
  8798. "stroke-opacity": "1",
  8799. "stroke-dasharray": "none"
  8800. }
  8801. },
  8802. "mapper": {
  8803. "type": "code",
  8804. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  8805. },
  8806. "parser": {
  8807. "type": "code",
  8808. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8809. },
  8810. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  8811. "position": {
  8812. "type": "list<double>",
  8813. "value": [
  8814. 48,
  8815. 78
  8816. ]
  8817. },
  8818. "orientation": {
  8819. "type": "double",
  8820. "value": 0
  8821. },
  8822. "scale": {
  8823. "type": "list<double>",
  8824. "value": [
  8825. 1,
  8826. 1
  8827. ]
  8828. }
  8829. },
  8830. "405": {
  8831. "textContent": {
  8832. "type": "string",
  8833. "value": ":"
  8834. },
  8835. "style": {
  8836. "type": "map<string,string>",
  8837. "value": {
  8838. "font-size": "20px",
  8839. "font-style": "normal",
  8840. "font-variant": "normal",
  8841. "font-weight": "bold",
  8842. "font-stretch": "normal",
  8843. "text-align": "left",
  8844. "line-height": "125%",
  8845. "writing-mode": "lr-tb",
  8846. "text-anchor": "left",
  8847. "fill": "#008000",
  8848. "fill-opacity": "1",
  8849. "stroke": "none",
  8850. "font-family": "Arial"
  8851. }
  8852. },
  8853. "mapper": {
  8854. "type": "code",
  8855. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  8856. },
  8857. "parser": {
  8858. "type": "code",
  8859. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8860. },
  8861. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  8862. "position": {
  8863. "type": "list<double>",
  8864. "value": [
  8865. 42,
  8866. 39
  8867. ]
  8868. },
  8869. "orientation": {
  8870. "type": "double",
  8871. "value": 0
  8872. },
  8873. "scale": {
  8874. "type": "list<double>",
  8875. "value": [
  8876. 1,
  8877. 1
  8878. ]
  8879. }
  8880. },
  8881. "406": {
  8882. "segments": {
  8883. "type": "string",
  8884. "value": "M 12.49983,1.5069319 1.50001,12.506752"
  8885. },
  8886. "style": {
  8887. "type": "map<string,string>",
  8888. "value": {
  8889. "fill": "none",
  8890. "stroke": "#008000",
  8891. "stroke-width": "3",
  8892. "stroke-linecap": "round",
  8893. "stroke-linejoin": "round",
  8894. "stroke-miterlimit": "4",
  8895. "stroke-opacity": "1",
  8896. "stroke-dasharray": "none"
  8897. }
  8898. },
  8899. "mapper": {
  8900. "type": "code",
  8901. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  8902. },
  8903. "parser": {
  8904. "type": "code",
  8905. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8906. },
  8907. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  8908. "position": {
  8909. "type": "list<double>",
  8910. "value": [
  8911. 145,
  8912. 78
  8913. ]
  8914. },
  8915. "orientation": {
  8916. "type": "double",
  8917. "value": 0
  8918. },
  8919. "scale": {
  8920. "type": "list<double>",
  8921. "value": [
  8922. 1,
  8923. 1
  8924. ]
  8925. }
  8926. },
  8927. "407": {
  8928. "textContent": {
  8929. "type": "string",
  8930. "value": ""
  8931. },
  8932. "style": {
  8933. "type": "map<string,string>",
  8934. "value": {
  8935. "font-size": "20px",
  8936. "font-style": "normal",
  8937. "font-variant": "normal",
  8938. "font-weight": "bold",
  8939. "font-stretch": "normal",
  8940. "text-align": "left",
  8941. "line-height": "125%",
  8942. "writing-mode": "lr-tb",
  8943. "text-anchor": "left",
  8944. "fill": "#008000",
  8945. "fill-opacity": "1",
  8946. "stroke": "none",
  8947. "font-family": "Arial"
  8948. }
  8949. },
  8950. "mapper": {
  8951. "type": "code",
  8952. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n({'textContent': getAttr('alias')})"
  8953. },
  8954. "parser": {
  8955. "type": "code",
  8956. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  8957. },
  8958. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  8959. "position": {
  8960. "type": "list<double>",
  8961. "value": [
  8962. 9,
  8963. 39
  8964. ]
  8965. },
  8966. "orientation": {
  8967. "type": "double",
  8968. "value": 0
  8969. },
  8970. "scale": {
  8971. "type": "list<double>",
  8972. "value": [
  8973. 1,
  8974. 1
  8975. ]
  8976. }
  8977. },
  8978. "408": {
  8979. "segments": {
  8980. "type": "string",
  8981. "value": "M 1.5,1.5069319 12.49983,12.506752"
  8982. },
  8983. "style": {
  8984. "type": "map<string,string>",
  8985. "value": {
  8986. "fill": "none",
  8987. "stroke": "#008000",
  8988. "stroke-width": "3",
  8989. "stroke-linecap": "round",
  8990. "stroke-linejoin": "round",
  8991. "stroke-miterlimit": "4",
  8992. "stroke-opacity": "1",
  8993. "stroke-dasharray": "none"
  8994. }
  8995. },
  8996. "mapper": {
  8997. "type": "code",
  8998. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  8999. },
  9000. "parser": {
  9001. "type": "code",
  9002. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  9003. },
  9004. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  9005. "position": {
  9006. "type": "list<double>",
  9007. "value": [
  9008. 145,
  9009. 78
  9010. ]
  9011. },
  9012. "orientation": {
  9013. "type": "double",
  9014. "value": 0
  9015. },
  9016. "scale": {
  9017. "type": "list<double>",
  9018. "value": [
  9019. 1,
  9020. 1
  9021. ]
  9022. }
  9023. },
  9024. "410": {
  9025. "segments": {
  9026. "type": "string",
  9027. "value": "M 1,10.3685 7.03183,20.737 13.06367,10.3685 z"
  9028. },
  9029. "style": {
  9030. "type": "map<string,string>",
  9031. "value": {
  9032. "fill": "#ffffff",
  9033. "fill-opacity": "0.5",
  9034. "stroke": "#008000",
  9035. "stroke-width": "3",
  9036. "stroke-linecap": "butt",
  9037. "stroke-linejoin": "miter",
  9038. "stroke-miterlimit": "4",
  9039. "stroke-opacity": "1"
  9040. }
  9041. },
  9042. "mapper": {
  9043. "type": "code",
  9044. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  9045. },
  9046. "parser": {
  9047. "type": "code",
  9048. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  9049. },
  9050. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  9051. "position": {
  9052. "type": "list<double>",
  9053. "value": [
  9054. 96,
  9055. 1
  9056. ]
  9057. },
  9058. "orientation": {
  9059. "type": "double",
  9060. "value": 0
  9061. },
  9062. "scale": {
  9063. "type": "list<double>",
  9064. "value": [
  9065. 1,
  9066. 1
  9067. ]
  9068. }
  9069. },
  9070. "411": {
  9071. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  9072. "position": {
  9073. "type": "list<double>",
  9074. "value": [
  9075. 38.25,
  9076. 38.5
  9077. ]
  9078. },
  9079. "orientation": {
  9080. "type": "double",
  9081. "value": 0
  9082. },
  9083. "scale": {
  9084. "type": "list<double>",
  9085. "value": [
  9086. 1,
  9087. 1
  9088. ]
  9089. },
  9090. "link-style": {
  9091. "type": "map<string,string>",
  9092. "value": {
  9093. "stroke": "#00ffff",
  9094. "stroke-dasharray": "",
  9095. "stroke-opacity": 0.1,
  9096. "stroke-width": 1
  9097. }
  9098. }
  9099. },
  9100. "412": {
  9101. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  9102. "position": {
  9103. "type": "list<double>",
  9104. "value": [
  9105. 16.25,
  9106. 38.5
  9107. ]
  9108. },
  9109. "orientation": {
  9110. "type": "double",
  9111. "value": 0
  9112. },
  9113. "scale": {
  9114. "type": "list<double>",
  9115. "value": [
  9116. 1,
  9117. 1
  9118. ]
  9119. },
  9120. "link-style": {
  9121. "type": "map<string,string>",
  9122. "value": {
  9123. "stroke": "#00ffff",
  9124. "stroke-dasharray": "",
  9125. "stroke-opacity": 0.1,
  9126. "stroke-width": 1
  9127. }
  9128. }
  9129. },
  9130. "413": {
  9131. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  9132. "position": {
  9133. "type": "list<double>",
  9134. "value": [
  9135. 24,
  9136. 38.5
  9137. ]
  9138. },
  9139. "orientation": {
  9140. "type": "double",
  9141. "value": 0
  9142. },
  9143. "scale": {
  9144. "type": "list<double>",
  9145. "value": [
  9146. 1,
  9147. 1
  9148. ]
  9149. },
  9150. "link-style": {
  9151. "type": "map<string,string>",
  9152. "value": {
  9153. "stroke": "#00ffff",
  9154. "stroke-dasharray": "",
  9155. "stroke-opacity": 0.1,
  9156. "stroke-width": 1
  9157. }
  9158. }
  9159. }
  9160. },
  9161. "edges": [
  9162. {
  9163. "src": "402",
  9164. "dest": "411"
  9165. },
  9166. {
  9167. "src": "411",
  9168. "dest": "403"
  9169. },
  9170. {
  9171. "src": "402",
  9172. "dest": "412"
  9173. },
  9174. {
  9175. "src": "412",
  9176. "dest": "407"
  9177. },
  9178. {
  9179. "src": "402",
  9180. "dest": "413"
  9181. },
  9182. {
  9183. "src": "413",
  9184. "dest": "405"
  9185. }
  9186. ]
  9187. }
  9188. },
  9189. "$asuri": {
  9190. "type": "string",
  9191. "value": "/Formalisms/__Transformations__/Transformation/MoTif/ARule/94.instance"
  9192. },
  9193. "$type": "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/ARuleIcon"
  9194. },
  9195. "95": {
  9196. "link-style": {
  9197. "type": "map<string,string>",
  9198. "value": {
  9199. "stroke": "#000000",
  9200. "stroke-dasharray": "",
  9201. "stroke-opacity": 1,
  9202. "stroke-width": 0
  9203. }
  9204. },
  9205. "arrowHead": {
  9206. "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)",
  9207. "value": "custom"
  9208. },
  9209. "arrowTail": {
  9210. "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)",
  9211. "value": "arrow-black"
  9212. },
  9213. "typename": {
  9214. "type": "string",
  9215. "value": "loopLink"
  9216. },
  9217. "position": {
  9218. "type": "list<double>",
  9219. "value": [
  9220. 591.0946057874104,
  9221. 426.08532795035603
  9222. ]
  9223. },
  9224. "orientation": {
  9225. "type": "double",
  9226. "value": 0
  9227. },
  9228. "scale": {
  9229. "type": "list<double>",
  9230. "value": [
  9231. 1,
  9232. 1
  9233. ]
  9234. },
  9235. "mapper": {
  9236. "type": "code",
  9237. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  9238. },
  9239. "parser": {
  9240. "type": "code",
  9241. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  9242. },
  9243. "$contents": {
  9244. "type": "map<string,*>",
  9245. "value": {
  9246. "nodes": {
  9247. "267": {
  9248. "segments": {
  9249. "type": "string",
  9250. "value": "m0,0 l10,4 l-10,4 l3,-4 z"
  9251. },
  9252. "style": {
  9253. "type": "map<string,string>",
  9254. "value": {
  9255. "stroke": "#000000",
  9256. "fill": "#000000",
  9257. "opacity": 0,
  9258. "stroke-width": 1
  9259. }
  9260. },
  9261. "mapper": {
  9262. "type": "code",
  9263. "value": ""
  9264. },
  9265. "parser": {
  9266. "type": "code",
  9267. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  9268. },
  9269. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  9270. "position": {
  9271. "type": "list<double>",
  9272. "value": [
  9273. "0;79.01035214327271,63.03415265345663%",
  9274. "0;90.96204551514364,77.6317950279441%"
  9275. ]
  9276. },
  9277. "orientation": {
  9278. "type": "double",
  9279. "value": "0;50.92467575884132"
  9280. },
  9281. "scale": {
  9282. "type": "list<double>",
  9283. "value": [
  9284. 1,
  9285. 1
  9286. ]
  9287. },
  9288. "arrow": "arrowTail",
  9289. "arrowType": "arrow-black",
  9290. "$linkDecoratorInfo": {
  9291. "type": "map<string,double>",
  9292. "value": {
  9293. "xratio": 1,
  9294. "yoffset": -4
  9295. }
  9296. }
  9297. },
  9298. "268": {
  9299. "segments": {
  9300. "type": "string",
  9301. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  9302. },
  9303. "style": {
  9304. "type": "map<string,string>",
  9305. "value": {
  9306. "stroke": "#000000",
  9307. "fill": "#000000",
  9308. "opacity": 0,
  9309. "stroke-width": 1
  9310. }
  9311. },
  9312. "mapper": {
  9313. "type": "code",
  9314. "value": ""
  9315. },
  9316. "parser": {
  9317. "type": "code",
  9318. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  9319. },
  9320. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  9321. "position": {
  9322. "type": "list<double>",
  9323. "value": [
  9324. "0;83.66825984494938,63.03415265345663%",
  9325. "0;87.17999635593623,77.6317950279441%"
  9326. ]
  9327. },
  9328. "orientation": {
  9329. "type": "double",
  9330. "value": "0;50.92467575884132"
  9331. },
  9332. "scale": {
  9333. "type": "list<double>",
  9334. "value": [
  9335. 1,
  9336. 1
  9337. ]
  9338. },
  9339. "arrow": "arrowTail",
  9340. "arrowType": "diamond-black-large",
  9341. "$linkDecoratorInfo": {
  9342. "type": "map<string,double>",
  9343. "value": {
  9344. "xratio": 1,
  9345. "yoffset": -10
  9346. }
  9347. }
  9348. },
  9349. "269": {
  9350. "r": {
  9351. "type": "double",
  9352. "value": 10
  9353. },
  9354. "style": {
  9355. "type": "map<string,string>",
  9356. "value": {
  9357. "stroke": "#000000",
  9358. "fill": "#000000",
  9359. "opacity": 0,
  9360. "stroke-width": 1
  9361. }
  9362. },
  9363. "mapper": {
  9364. "type": "code",
  9365. "value": ""
  9366. },
  9367. "parser": {
  9368. "type": "code",
  9369. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  9370. },
  9371. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  9372. "position": {
  9373. "type": "list<double>",
  9374. "value": [
  9375. "0;83.66825984494938,63.03415265345663%",
  9376. "0;87.17999635593623,77.6317950279441%"
  9377. ]
  9378. },
  9379. "orientation": {
  9380. "type": "double",
  9381. "value": "0;50.92467575884132"
  9382. },
  9383. "scale": {
  9384. "type": "list<double>",
  9385. "value": [
  9386. 1,
  9387. 1
  9388. ]
  9389. },
  9390. "arrow": "arrowTail",
  9391. "arrowType": "circle-black-large",
  9392. "$linkDecoratorInfo": {
  9393. "type": "map<string,double>",
  9394. "value": {
  9395. "xratio": 1,
  9396. "yoffset": -10
  9397. }
  9398. }
  9399. },
  9400. "270": {
  9401. "r": {
  9402. "type": "double",
  9403. "value": 10
  9404. },
  9405. "style": {
  9406. "type": "map<string,string>",
  9407. "value": {
  9408. "stroke": "#000000",
  9409. "fill": "#ffffff",
  9410. "opacity": 0,
  9411. "stroke-width": 1
  9412. }
  9413. },
  9414. "mapper": {
  9415. "type": "code",
  9416. "value": ""
  9417. },
  9418. "parser": {
  9419. "type": "code",
  9420. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  9421. },
  9422. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  9423. "position": {
  9424. "type": "list<double>",
  9425. "value": [
  9426. "0;83.66825984494938,63.03415265345663%",
  9427. "0;87.17999635593623,77.6317950279441%"
  9428. ]
  9429. },
  9430. "orientation": {
  9431. "type": "double",
  9432. "value": "0;50.92467575884132"
  9433. },
  9434. "scale": {
  9435. "type": "list<double>",
  9436. "value": [
  9437. 1,
  9438. 1
  9439. ]
  9440. },
  9441. "arrow": "arrowTail",
  9442. "arrowType": "circle-white-large",
  9443. "$linkDecoratorInfo": {
  9444. "type": "map<string,double>",
  9445. "value": {
  9446. "xratio": 1,
  9447. "yoffset": -10
  9448. }
  9449. }
  9450. },
  9451. "271": {
  9452. "r": {
  9453. "type": "double",
  9454. "value": 5
  9455. },
  9456. "style": {
  9457. "type": "map<string,string>",
  9458. "value": {
  9459. "stroke": "#000000",
  9460. "fill": "#000000",
  9461. "opacity": 0,
  9462. "stroke-width": 1
  9463. }
  9464. },
  9465. "mapper": {
  9466. "type": "code",
  9467. "value": ""
  9468. },
  9469. "parser": {
  9470. "type": "code",
  9471. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  9472. },
  9473. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  9474. "position": {
  9475. "type": "list<double>",
  9476. "value": [
  9477. "0;79.78667009355217,63.03415265345663%",
  9478. "0;90.33170398860909,77.6317950279441%"
  9479. ]
  9480. },
  9481. "orientation": {
  9482. "type": "double",
  9483. "value": "0;50.92467575884132"
  9484. },
  9485. "scale": {
  9486. "type": "list<double>",
  9487. "value": [
  9488. 1,
  9489. 1
  9490. ]
  9491. },
  9492. "arrow": "arrowTail",
  9493. "arrowType": "circle-black",
  9494. "$linkDecoratorInfo": {
  9495. "type": "map<string,double>",
  9496. "value": {
  9497. "xratio": 1,
  9498. "yoffset": -5
  9499. }
  9500. }
  9501. },
  9502. "272": {
  9503. "segments": {
  9504. "type": "string",
  9505. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  9506. },
  9507. "style": {
  9508. "type": "map<string,string>",
  9509. "value": {
  9510. "stroke": "#000000",
  9511. "fill": "#000000",
  9512. "opacity": 0,
  9513. "stroke-width": 1
  9514. }
  9515. },
  9516. "mapper": {
  9517. "type": "code",
  9518. "value": ""
  9519. },
  9520. "parser": {
  9521. "type": "code",
  9522. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  9523. },
  9524. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  9525. "position": {
  9526. "type": "list<double>",
  9527. "value": [
  9528. "0;79.78667009355217,63.03415265345663%",
  9529. "0;90.33170398860909,77.6317950279441%"
  9530. ]
  9531. },
  9532. "orientation": {
  9533. "type": "double",
  9534. "value": "0;50.92467575884132"
  9535. },
  9536. "scale": {
  9537. "type": "list<double>",
  9538. "value": [
  9539. 1,
  9540. 1
  9541. ]
  9542. },
  9543. "arrow": "arrowTail",
  9544. "arrowType": "diamond-black",
  9545. "$linkDecoratorInfo": {
  9546. "type": "map<string,double>",
  9547. "value": {
  9548. "xratio": 1,
  9549. "yoffset": -5
  9550. }
  9551. }
  9552. },
  9553. "273": {
  9554. "segments": {
  9555. "type": "string",
  9556. "value": "m0,0 l20,10 l-20,10 z"
  9557. },
  9558. "style": {
  9559. "type": "map<string,string>",
  9560. "value": {
  9561. "stroke": "#000000",
  9562. "fill": "#000000",
  9563. "opacity": 0,
  9564. "stroke-width": 1
  9565. }
  9566. },
  9567. "mapper": {
  9568. "type": "code",
  9569. "value": ""
  9570. },
  9571. "parser": {
  9572. "type": "code",
  9573. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  9574. },
  9575. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  9576. "position": {
  9577. "type": "list<double>",
  9578. "value": [
  9579. "0;83.66825984494938,63.03415265345663%",
  9580. "0;87.17999635593623,77.6317950279441%"
  9581. ]
  9582. },
  9583. "orientation": {
  9584. "type": "double",
  9585. "value": "0;50.92467575884132"
  9586. },
  9587. "scale": {
  9588. "type": "list<double>",
  9589. "value": [
  9590. 1,
  9591. 1
  9592. ]
  9593. },
  9594. "arrow": "arrowTail",
  9595. "arrowType": "triangle-black-large",
  9596. "$linkDecoratorInfo": {
  9597. "type": "map<string,double>",
  9598. "value": {
  9599. "xratio": 1,
  9600. "yoffset": -10
  9601. }
  9602. }
  9603. },
  9604. "274": {
  9605. "segments": {
  9606. "type": "string",
  9607. "value": "m0,0 l10,4 l-10,4 z"
  9608. },
  9609. "style": {
  9610. "type": "map<string,string>",
  9611. "value": {
  9612. "stroke": "#000000",
  9613. "fill": "#000000",
  9614. "opacity": 0,
  9615. "stroke-width": 1
  9616. }
  9617. },
  9618. "mapper": {
  9619. "type": "code",
  9620. "value": ""
  9621. },
  9622. "parser": {
  9623. "type": "code",
  9624. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  9625. },
  9626. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  9627. "position": {
  9628. "type": "list<double>",
  9629. "value": [
  9630. "0;79.01035214327271,63.03415265345663%",
  9631. "0;90.96204551514364,77.6317950279441%"
  9632. ]
  9633. },
  9634. "orientation": {
  9635. "type": "double",
  9636. "value": "0;50.92467575884132"
  9637. },
  9638. "scale": {
  9639. "type": "list<double>",
  9640. "value": [
  9641. 1,
  9642. 1
  9643. ]
  9644. },
  9645. "arrow": "arrowTail",
  9646. "arrowType": "triangle-black",
  9647. "$linkDecoratorInfo": {
  9648. "type": "map<string,double>",
  9649. "value": {
  9650. "xratio": 1,
  9651. "yoffset": -4
  9652. }
  9653. }
  9654. },
  9655. "275": {
  9656. "segments": {
  9657. "type": "string",
  9658. "value": "m0,0 l20,8 l-20,8 l6,-8 z"
  9659. },
  9660. "style": {
  9661. "type": "map<string,string>",
  9662. "value": {
  9663. "stroke": "#000000",
  9664. "fill": "#000000",
  9665. "opacity": 0,
  9666. "stroke-width": 1
  9667. }
  9668. },
  9669. "mapper": {
  9670. "type": "code",
  9671. "value": ""
  9672. },
  9673. "parser": {
  9674. "type": "code",
  9675. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  9676. },
  9677. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  9678. "position": {
  9679. "type": "list<double>",
  9680. "value": [
  9681. "0;82.11562394439045,63.03415265345663%",
  9682. "0;88.44067940900538,77.6317950279441%"
  9683. ]
  9684. },
  9685. "orientation": {
  9686. "type": "double",
  9687. "value": "0;50.92467575884132"
  9688. },
  9689. "scale": {
  9690. "type": "list<double>",
  9691. "value": [
  9692. 1,
  9693. 1
  9694. ]
  9695. },
  9696. "arrow": "arrowTail",
  9697. "arrowType": "arrow-black-large",
  9698. "$linkDecoratorInfo": {
  9699. "type": "map<string,double>",
  9700. "value": {
  9701. "xratio": 1,
  9702. "yoffset": -8
  9703. }
  9704. }
  9705. },
  9706. "276": {
  9707. "segments": {
  9708. "type": "string",
  9709. "value": "m0,0 l20,10 l-20,10 z"
  9710. },
  9711. "style": {
  9712. "type": "map<string,string>",
  9713. "value": {
  9714. "stroke": "#000000",
  9715. "fill": "#ffffff",
  9716. "opacity": 0,
  9717. "stroke-width": 1
  9718. }
  9719. },
  9720. "mapper": {
  9721. "type": "code",
  9722. "value": ""
  9723. },
  9724. "parser": {
  9725. "type": "code",
  9726. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  9727. },
  9728. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  9729. "position": {
  9730. "type": "list<double>",
  9731. "value": [
  9732. "0;83.66825984494938,63.03415265345663%",
  9733. "0;87.17999635593623,77.6317950279441%"
  9734. ]
  9735. },
  9736. "orientation": {
  9737. "type": "double",
  9738. "value": "0;50.92467575884132"
  9739. },
  9740. "scale": {
  9741. "type": "list<double>",
  9742. "value": [
  9743. 1,
  9744. 1
  9745. ]
  9746. },
  9747. "arrow": "arrowTail",
  9748. "arrowType": "triangle-white-large",
  9749. "$linkDecoratorInfo": {
  9750. "type": "map<string,double>",
  9751. "value": {
  9752. "xratio": 1,
  9753. "yoffset": -10
  9754. }
  9755. }
  9756. },
  9757. "277": {
  9758. "segments": {
  9759. "type": "string",
  9760. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  9761. },
  9762. "style": {
  9763. "type": "map<string,string>",
  9764. "value": {
  9765. "stroke": "#000000",
  9766. "fill": "#ffffff",
  9767. "opacity": 0,
  9768. "stroke-width": 1
  9769. }
  9770. },
  9771. "mapper": {
  9772. "type": "code",
  9773. "value": ""
  9774. },
  9775. "parser": {
  9776. "type": "code",
  9777. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  9778. },
  9779. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  9780. "position": {
  9781. "type": "list<double>",
  9782. "value": [
  9783. "0;79.78667009355217,63.03415265345663%",
  9784. "0;90.33170398860909,77.6317950279441%"
  9785. ]
  9786. },
  9787. "orientation": {
  9788. "type": "double",
  9789. "value": "0;50.92467575884132"
  9790. },
  9791. "scale": {
  9792. "type": "list<double>",
  9793. "value": [
  9794. 1,
  9795. 1
  9796. ]
  9797. },
  9798. "arrow": "arrowTail",
  9799. "arrowType": "diamond-white",
  9800. "$linkDecoratorInfo": {
  9801. "type": "map<string,double>",
  9802. "value": {
  9803. "xratio": 1,
  9804. "yoffset": -5
  9805. }
  9806. }
  9807. },
  9808. "278": {
  9809. "segments": {
  9810. "type": "string",
  9811. "value": "m0,0 l20,8 l-20,8"
  9812. },
  9813. "style": {
  9814. "type": "map<string,string>",
  9815. "value": {
  9816. "stroke": "#000000",
  9817. "fill": "#000000",
  9818. "fill-opacity": 0,
  9819. "stroke-width": 1,
  9820. "opacity": 0
  9821. }
  9822. },
  9823. "mapper": {
  9824. "type": "code",
  9825. "value": ""
  9826. },
  9827. "parser": {
  9828. "type": "code",
  9829. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  9830. },
  9831. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  9832. "position": {
  9833. "type": "list<double>",
  9834. "value": [
  9835. "0;82.11562394439045,63.03415265345663%",
  9836. "0;88.44067940900538,77.6317950279441%"
  9837. ]
  9838. },
  9839. "orientation": {
  9840. "type": "double",
  9841. "value": "0;50.92467575884132"
  9842. },
  9843. "scale": {
  9844. "type": "list<double>",
  9845. "value": [
  9846. 1,
  9847. 1
  9848. ]
  9849. },
  9850. "arrow": "arrowTail",
  9851. "arrowType": "arrow-empty-large",
  9852. "$linkDecoratorInfo": {
  9853. "type": "map<string,double>",
  9854. "value": {
  9855. "xratio": 1,
  9856. "yoffset": -8
  9857. }
  9858. }
  9859. },
  9860. "279": {
  9861. "r": {
  9862. "type": "double",
  9863. "value": 5
  9864. },
  9865. "style": {
  9866. "type": "map<string,string>",
  9867. "value": {
  9868. "stroke": "#000000",
  9869. "fill": "#ffffff",
  9870. "opacity": 0,
  9871. "stroke-width": 1
  9872. }
  9873. },
  9874. "mapper": {
  9875. "type": "code",
  9876. "value": ""
  9877. },
  9878. "parser": {
  9879. "type": "code",
  9880. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  9881. },
  9882. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  9883. "position": {
  9884. "type": "list<double>",
  9885. "value": [
  9886. "0;79.78667009355217,63.03415265345663%",
  9887. "0;90.33170398860909,77.6317950279441%"
  9888. ]
  9889. },
  9890. "orientation": {
  9891. "type": "double",
  9892. "value": "0;50.92467575884132"
  9893. },
  9894. "scale": {
  9895. "type": "list<double>",
  9896. "value": [
  9897. 1,
  9898. 1
  9899. ]
  9900. },
  9901. "arrow": "arrowTail",
  9902. "arrowType": "circle-white",
  9903. "$linkDecoratorInfo": {
  9904. "type": "map<string,double>",
  9905. "value": {
  9906. "xratio": 1,
  9907. "yoffset": -5
  9908. }
  9909. }
  9910. },
  9911. "280": {
  9912. "segments": {
  9913. "type": "string",
  9914. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  9915. },
  9916. "style": {
  9917. "type": "map<string,string>",
  9918. "value": {
  9919. "stroke": "#000000",
  9920. "fill": "#ffffff",
  9921. "opacity": 0,
  9922. "stroke-width": 1
  9923. }
  9924. },
  9925. "mapper": {
  9926. "type": "code",
  9927. "value": ""
  9928. },
  9929. "parser": {
  9930. "type": "code",
  9931. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  9932. },
  9933. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  9934. "position": {
  9935. "type": "list<double>",
  9936. "value": [
  9937. "0;83.66825984494938,63.03415265345663%",
  9938. "0;87.17999635593623,77.6317950279441%"
  9939. ]
  9940. },
  9941. "orientation": {
  9942. "type": "double",
  9943. "value": "0;50.92467575884132"
  9944. },
  9945. "scale": {
  9946. "type": "list<double>",
  9947. "value": [
  9948. 1,
  9949. 1
  9950. ]
  9951. },
  9952. "arrow": "arrowTail",
  9953. "arrowType": "diamond-white-large",
  9954. "$linkDecoratorInfo": {
  9955. "type": "map<string,double>",
  9956. "value": {
  9957. "xratio": 1,
  9958. "yoffset": -10
  9959. }
  9960. }
  9961. },
  9962. "281": {
  9963. "segments": {
  9964. "type": "string",
  9965. "value": "m0,0 l10,4 l-10,4"
  9966. },
  9967. "style": {
  9968. "type": "map<string,string>",
  9969. "value": {
  9970. "stroke": "#000000",
  9971. "fill": "#000000",
  9972. "fill-opacity": 0,
  9973. "stroke-width": 1,
  9974. "opacity": 0
  9975. }
  9976. },
  9977. "mapper": {
  9978. "type": "code",
  9979. "value": ""
  9980. },
  9981. "parser": {
  9982. "type": "code",
  9983. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  9984. },
  9985. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  9986. "position": {
  9987. "type": "list<double>",
  9988. "value": [
  9989. "0;79.01035214327271,63.03415265345663%",
  9990. "0;90.96204551514364,77.6317950279441%"
  9991. ]
  9992. },
  9993. "orientation": {
  9994. "type": "double",
  9995. "value": "0;50.92467575884132"
  9996. },
  9997. "scale": {
  9998. "type": "list<double>",
  9999. "value": [
  10000. 1,
  10001. 1
  10002. ]
  10003. },
  10004. "arrow": "arrowTail",
  10005. "arrowType": "arrow-empty",
  10006. "$linkDecoratorInfo": {
  10007. "type": "map<string,double>",
  10008. "value": {
  10009. "xratio": 1,
  10010. "yoffset": -4
  10011. }
  10012. }
  10013. },
  10014. "282": {
  10015. "segments": {
  10016. "type": "string",
  10017. "value": "m0,0 l10,5 l-10,5 z"
  10018. },
  10019. "style": {
  10020. "type": "map<string,string>",
  10021. "value": {
  10022. "stroke": "#000000",
  10023. "fill": "#ffffff",
  10024. "opacity": 0,
  10025. "stroke-width": 1
  10026. }
  10027. },
  10028. "mapper": {
  10029. "type": "code",
  10030. "value": ""
  10031. },
  10032. "parser": {
  10033. "type": "code",
  10034. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  10035. },
  10036. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  10037. "position": {
  10038. "type": "list<double>",
  10039. "value": [
  10040. "0;79.78667009355217,63.03415265345663%",
  10041. "0;90.33170398860909,77.6317950279441%"
  10042. ]
  10043. },
  10044. "orientation": {
  10045. "type": "double",
  10046. "value": "0;50.92467575884132"
  10047. },
  10048. "scale": {
  10049. "type": "list<double>",
  10050. "value": [
  10051. 1,
  10052. 1
  10053. ]
  10054. },
  10055. "arrow": "arrowTail",
  10056. "arrowType": "triangle-white",
  10057. "$linkDecoratorInfo": {
  10058. "type": "map<string,double>",
  10059. "value": {
  10060. "xratio": 1,
  10061. "yoffset": -5
  10062. }
  10063. }
  10064. },
  10065. "283": {
  10066. "segments": {
  10067. "type": "string",
  10068. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  10069. },
  10070. "style": {
  10071. "type": "map<string,string>",
  10072. "value": {
  10073. "stroke": "#000000",
  10074. "fill": "#ffffff",
  10075. "opacity": 0,
  10076. "stroke-width": 1
  10077. }
  10078. },
  10079. "mapper": {
  10080. "type": "code",
  10081. "value": ""
  10082. },
  10083. "parser": {
  10084. "type": "code",
  10085. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  10086. },
  10087. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  10088. "position": {
  10089. "type": "list<double>",
  10090. "value": [
  10091. "0;-72.21301603601319,0%",
  10092. "0;-96.86853558302886,0%"
  10093. ]
  10094. },
  10095. "orientation": {
  10096. "type": "double",
  10097. "value": "0;50.92467575884142"
  10098. },
  10099. "scale": {
  10100. "type": "list<double>",
  10101. "value": [
  10102. 1,
  10103. 1
  10104. ]
  10105. },
  10106. "arrow": "arrowHead",
  10107. "arrowType": "diamond-white",
  10108. "$linkDecoratorInfo": {
  10109. "type": "map<string,double>",
  10110. "value": {
  10111. "xratio": -1,
  10112. "yoffset": -5
  10113. }
  10114. }
  10115. },
  10116. "284": {
  10117. "segments": {
  10118. "type": "string",
  10119. "value": "m0,0 l-10,5 l10,5 z"
  10120. },
  10121. "style": {
  10122. "type": "map<string,string>",
  10123. "value": {
  10124. "stroke": "#000000",
  10125. "fill": "#ffffff",
  10126. "opacity": 0,
  10127. "stroke-width": 1
  10128. }
  10129. },
  10130. "mapper": {
  10131. "type": "code",
  10132. "value": ""
  10133. },
  10134. "parser": {
  10135. "type": "code",
  10136. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  10137. },
  10138. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  10139. "position": {
  10140. "type": "list<double>",
  10141. "value": [
  10142. "0;-72.21301603601319,0%",
  10143. "0;-96.86853558302886,0%"
  10144. ]
  10145. },
  10146. "orientation": {
  10147. "type": "double",
  10148. "value": "0;50.92467575884142"
  10149. },
  10150. "scale": {
  10151. "type": "list<double>",
  10152. "value": [
  10153. 1,
  10154. 1
  10155. ]
  10156. },
  10157. "arrow": "arrowHead",
  10158. "arrowType": "triangle-white",
  10159. "$linkDecoratorInfo": {
  10160. "type": "map<string,double>",
  10161. "value": {
  10162. "xratio": -1,
  10163. "yoffset": -5
  10164. }
  10165. }
  10166. },
  10167. "285": {
  10168. "segments": {
  10169. "type": "string",
  10170. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  10171. },
  10172. "style": {
  10173. "type": "map<string,string>",
  10174. "value": {
  10175. "stroke": "#000000",
  10176. "fill": "#000000",
  10177. "opacity": 0,
  10178. "stroke-width": 1
  10179. }
  10180. },
  10181. "mapper": {
  10182. "type": "code",
  10183. "value": ""
  10184. },
  10185. "parser": {
  10186. "type": "code",
  10187. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  10188. },
  10189. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  10190. "position": {
  10191. "type": "list<double>",
  10192. "value": [
  10193. "0;-72.21301603601319,0%",
  10194. "0;-96.86853558302886,0%"
  10195. ]
  10196. },
  10197. "orientation": {
  10198. "type": "double",
  10199. "value": "0;50.92467575884142"
  10200. },
  10201. "scale": {
  10202. "type": "list<double>",
  10203. "value": [
  10204. 1,
  10205. 1
  10206. ]
  10207. },
  10208. "arrow": "arrowHead",
  10209. "arrowType": "diamond-black",
  10210. "$linkDecoratorInfo": {
  10211. "type": "map<string,double>",
  10212. "value": {
  10213. "xratio": -1,
  10214. "yoffset": -5
  10215. }
  10216. }
  10217. },
  10218. "286": {
  10219. "r": {
  10220. "type": "double",
  10221. "value": 10
  10222. },
  10223. "style": {
  10224. "type": "map<string,string>",
  10225. "value": {
  10226. "stroke": "#000000",
  10227. "fill": "#000000",
  10228. "opacity": 0,
  10229. "stroke-width": 1
  10230. }
  10231. },
  10232. "mapper": {
  10233. "type": "code",
  10234. "value": ""
  10235. },
  10236. "parser": {
  10237. "type": "code",
  10238. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  10239. },
  10240. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  10241. "position": {
  10242. "type": "list<double>",
  10243. "value": [
  10244. "0;-68.33142628461599,0%",
  10245. "0;-100.02024321570173,0%"
  10246. ]
  10247. },
  10248. "orientation": {
  10249. "type": "double",
  10250. "value": "0;50.92467575884142"
  10251. },
  10252. "scale": {
  10253. "type": "list<double>",
  10254. "value": [
  10255. 1,
  10256. 1
  10257. ]
  10258. },
  10259. "arrow": "arrowHead",
  10260. "arrowType": "circle-black-large",
  10261. "$linkDecoratorInfo": {
  10262. "type": "map<string,double>",
  10263. "value": {
  10264. "xratio": -1,
  10265. "yoffset": -10
  10266. }
  10267. }
  10268. },
  10269. "287": {
  10270. "segments": {
  10271. "type": "string",
  10272. "value": "m0,0 l-20,8 l20,8 l-6,-8 z"
  10273. },
  10274. "style": {
  10275. "type": "map<string,string>",
  10276. "value": {
  10277. "stroke": "#000000",
  10278. "fill": "#000000",
  10279. "opacity": 0,
  10280. "stroke-width": 1
  10281. }
  10282. },
  10283. "mapper": {
  10284. "type": "code",
  10285. "value": ""
  10286. },
  10287. "parser": {
  10288. "type": "code",
  10289. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  10290. },
  10291. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  10292. "position": {
  10293. "type": "list<double>",
  10294. "value": [
  10295. "0;-69.8840621851748,0%",
  10296. "0;-98.75956016263257,0%"
  10297. ]
  10298. },
  10299. "orientation": {
  10300. "type": "double",
  10301. "value": "0;50.92467575884142"
  10302. },
  10303. "scale": {
  10304. "type": "list<double>",
  10305. "value": [
  10306. 1,
  10307. 1
  10308. ]
  10309. },
  10310. "arrow": "arrowHead",
  10311. "arrowType": "arrow-black-large",
  10312. "$linkDecoratorInfo": {
  10313. "type": "map<string,double>",
  10314. "value": {
  10315. "xratio": -1,
  10316. "yoffset": -8
  10317. }
  10318. }
  10319. },
  10320. "288": {
  10321. "segments": {
  10322. "type": "string",
  10323. "value": "m0,0 l-10,4 l10,4 l-3,-4 z"
  10324. },
  10325. "style": {
  10326. "type": "map<string,string>",
  10327. "value": {
  10328. "stroke": "#000000",
  10329. "fill": "#000000",
  10330. "opacity": 0,
  10331. "stroke-width": 1
  10332. }
  10333. },
  10334. "mapper": {
  10335. "type": "code",
  10336. "value": ""
  10337. },
  10338. "parser": {
  10339. "type": "code",
  10340. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  10341. },
  10342. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  10343. "position": {
  10344. "type": "list<double>",
  10345. "value": [
  10346. "0;-72.98933398629265,0%",
  10347. "0;-96.23819405649431,0%"
  10348. ]
  10349. },
  10350. "orientation": {
  10351. "type": "double",
  10352. "value": "0;50.92467575884142"
  10353. },
  10354. "scale": {
  10355. "type": "list<double>",
  10356. "value": [
  10357. 1,
  10358. 1
  10359. ]
  10360. },
  10361. "arrow": "arrowHead",
  10362. "arrowType": "arrow-black",
  10363. "$linkDecoratorInfo": {
  10364. "type": "map<string,double>",
  10365. "value": {
  10366. "xratio": -1,
  10367. "yoffset": -4
  10368. }
  10369. }
  10370. },
  10371. "289": {
  10372. "segments": {
  10373. "type": "string",
  10374. "value": "m0,0 l-20,10 l20,10 z"
  10375. },
  10376. "style": {
  10377. "type": "map<string,string>",
  10378. "value": {
  10379. "stroke": "#000000",
  10380. "fill": "#ffffff",
  10381. "opacity": 0,
  10382. "stroke-width": 1
  10383. }
  10384. },
  10385. "mapper": {
  10386. "type": "code",
  10387. "value": ""
  10388. },
  10389. "parser": {
  10390. "type": "code",
  10391. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  10392. },
  10393. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  10394. "position": {
  10395. "type": "list<double>",
  10396. "value": [
  10397. "0;-68.33142628461599,0%",
  10398. "0;-100.02024321570173,0%"
  10399. ]
  10400. },
  10401. "orientation": {
  10402. "type": "double",
  10403. "value": "0;50.92467575884142"
  10404. },
  10405. "scale": {
  10406. "type": "list<double>",
  10407. "value": [
  10408. 1,
  10409. 1
  10410. ]
  10411. },
  10412. "arrow": "arrowHead",
  10413. "arrowType": "triangle-white-large",
  10414. "$linkDecoratorInfo": {
  10415. "type": "map<string,double>",
  10416. "value": {
  10417. "xratio": -1,
  10418. "yoffset": -10
  10419. }
  10420. }
  10421. },
  10422. "290": {
  10423. "segments": {
  10424. "type": "string",
  10425. "value": "m0,0 l-20,10 l20,10 z"
  10426. },
  10427. "style": {
  10428. "type": "map<string,string>",
  10429. "value": {
  10430. "stroke": "#000000",
  10431. "fill": "#000000",
  10432. "opacity": 0,
  10433. "stroke-width": 1
  10434. }
  10435. },
  10436. "mapper": {
  10437. "type": "code",
  10438. "value": ""
  10439. },
  10440. "parser": {
  10441. "type": "code",
  10442. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  10443. },
  10444. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  10445. "position": {
  10446. "type": "list<double>",
  10447. "value": [
  10448. "0;-68.33142628461599,0%",
  10449. "0;-100.02024321570173,0%"
  10450. ]
  10451. },
  10452. "orientation": {
  10453. "type": "double",
  10454. "value": "0;50.92467575884142"
  10455. },
  10456. "scale": {
  10457. "type": "list<double>",
  10458. "value": [
  10459. 1,
  10460. 1
  10461. ]
  10462. },
  10463. "arrow": "arrowHead",
  10464. "arrowType": "triangle-black-large",
  10465. "$linkDecoratorInfo": {
  10466. "type": "map<string,double>",
  10467. "value": {
  10468. "xratio": -1,
  10469. "yoffset": -10
  10470. }
  10471. }
  10472. },
  10473. "291": {
  10474. "r": {
  10475. "type": "double",
  10476. "value": 5
  10477. },
  10478. "style": {
  10479. "type": "map<string,string>",
  10480. "value": {
  10481. "stroke": "#000000",
  10482. "fill": "#000000",
  10483. "opacity": 0,
  10484. "stroke-width": 1
  10485. }
  10486. },
  10487. "mapper": {
  10488. "type": "code",
  10489. "value": ""
  10490. },
  10491. "parser": {
  10492. "type": "code",
  10493. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  10494. },
  10495. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  10496. "position": {
  10497. "type": "list<double>",
  10498. "value": [
  10499. "0;-72.21301603601319,0%",
  10500. "0;-96.86853558302886,0%"
  10501. ]
  10502. },
  10503. "orientation": {
  10504. "type": "double",
  10505. "value": "0;50.92467575884142"
  10506. },
  10507. "scale": {
  10508. "type": "list<double>",
  10509. "value": [
  10510. 1,
  10511. 1
  10512. ]
  10513. },
  10514. "arrow": "arrowHead",
  10515. "arrowType": "circle-black",
  10516. "$linkDecoratorInfo": {
  10517. "type": "map<string,double>",
  10518. "value": {
  10519. "xratio": -1,
  10520. "yoffset": -5
  10521. }
  10522. }
  10523. },
  10524. "292": {
  10525. "r": {
  10526. "type": "double",
  10527. "value": 5
  10528. },
  10529. "style": {
  10530. "type": "map<string,string>",
  10531. "value": {
  10532. "stroke": "#000000",
  10533. "fill": "#ffffff",
  10534. "opacity": 0,
  10535. "stroke-width": 1
  10536. }
  10537. },
  10538. "mapper": {
  10539. "type": "code",
  10540. "value": ""
  10541. },
  10542. "parser": {
  10543. "type": "code",
  10544. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  10545. },
  10546. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  10547. "position": {
  10548. "type": "list<double>",
  10549. "value": [
  10550. "0;-72.21301603601319,0%",
  10551. "0;-96.86853558302886,0%"
  10552. ]
  10553. },
  10554. "orientation": {
  10555. "type": "double",
  10556. "value": "0;50.92467575884142"
  10557. },
  10558. "scale": {
  10559. "type": "list<double>",
  10560. "value": [
  10561. 1,
  10562. 1
  10563. ]
  10564. },
  10565. "arrow": "arrowHead",
  10566. "arrowType": "circle-white",
  10567. "$linkDecoratorInfo": {
  10568. "type": "map<string,double>",
  10569. "value": {
  10570. "xratio": -1,
  10571. "yoffset": -5
  10572. }
  10573. }
  10574. },
  10575. "293": {
  10576. "r": {
  10577. "type": "double",
  10578. "value": 10
  10579. },
  10580. "style": {
  10581. "type": "map<string,string>",
  10582. "value": {
  10583. "stroke": "#000000",
  10584. "fill": "#ffffff",
  10585. "opacity": 0,
  10586. "stroke-width": 1
  10587. }
  10588. },
  10589. "mapper": {
  10590. "type": "code",
  10591. "value": ""
  10592. },
  10593. "parser": {
  10594. "type": "code",
  10595. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  10596. },
  10597. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  10598. "position": {
  10599. "type": "list<double>",
  10600. "value": [
  10601. "0;-68.33142628461599,0%",
  10602. "0;-100.02024321570173,0%"
  10603. ]
  10604. },
  10605. "orientation": {
  10606. "type": "double",
  10607. "value": "0;50.92467575884142"
  10608. },
  10609. "scale": {
  10610. "type": "list<double>",
  10611. "value": [
  10612. 1,
  10613. 1
  10614. ]
  10615. },
  10616. "arrow": "arrowHead",
  10617. "arrowType": "circle-white-large",
  10618. "$linkDecoratorInfo": {
  10619. "type": "map<string,double>",
  10620. "value": {
  10621. "xratio": -1,
  10622. "yoffset": -10
  10623. }
  10624. }
  10625. },
  10626. "294": {
  10627. "segments": {
  10628. "type": "string",
  10629. "value": "m0,0 l-20,8 l20,8"
  10630. },
  10631. "style": {
  10632. "type": "map<string,string>",
  10633. "value": {
  10634. "stroke": "#000000",
  10635. "fill": "#000000",
  10636. "fill-opacity": 0,
  10637. "stroke-width": 1,
  10638. "opacity": 0
  10639. }
  10640. },
  10641. "mapper": {
  10642. "type": "code",
  10643. "value": ""
  10644. },
  10645. "parser": {
  10646. "type": "code",
  10647. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  10648. },
  10649. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  10650. "position": {
  10651. "type": "list<double>",
  10652. "value": [
  10653. "0;-69.8840621851748,0%",
  10654. "0;-98.75956016263257,0%"
  10655. ]
  10656. },
  10657. "orientation": {
  10658. "type": "double",
  10659. "value": "0;50.92467575884142"
  10660. },
  10661. "scale": {
  10662. "type": "list<double>",
  10663. "value": [
  10664. 1,
  10665. 1
  10666. ]
  10667. },
  10668. "arrow": "arrowHead",
  10669. "arrowType": "arrow-empty-large",
  10670. "$linkDecoratorInfo": {
  10671. "type": "map<string,double>",
  10672. "value": {
  10673. "xratio": -1,
  10674. "yoffset": -8
  10675. }
  10676. }
  10677. },
  10678. "295": {
  10679. "segments": {
  10680. "type": "string",
  10681. "value": "m0,0 l-10,4 l10,4"
  10682. },
  10683. "style": {
  10684. "type": "map<string,string>",
  10685. "value": {
  10686. "stroke": "#000000",
  10687. "fill": "#000000",
  10688. "fill-opacity": 0,
  10689. "stroke-width": 1,
  10690. "opacity": 0
  10691. }
  10692. },
  10693. "mapper": {
  10694. "type": "code",
  10695. "value": ""
  10696. },
  10697. "parser": {
  10698. "type": "code",
  10699. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  10700. },
  10701. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  10702. "position": {
  10703. "type": "list<double>",
  10704. "value": [
  10705. "0;-72.98933398629265,0%",
  10706. "0;-96.23819405649431,0%"
  10707. ]
  10708. },
  10709. "orientation": {
  10710. "type": "double",
  10711. "value": "0;50.92467575884142"
  10712. },
  10713. "scale": {
  10714. "type": "list<double>",
  10715. "value": [
  10716. 1,
  10717. 1
  10718. ]
  10719. },
  10720. "arrow": "arrowHead",
  10721. "arrowType": "arrow-empty",
  10722. "$linkDecoratorInfo": {
  10723. "type": "map<string,double>",
  10724. "value": {
  10725. "xratio": -1,
  10726. "yoffset": -4
  10727. }
  10728. }
  10729. },
  10730. "296": {
  10731. "segments": {
  10732. "type": "string",
  10733. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  10734. },
  10735. "style": {
  10736. "type": "map<string,string>",
  10737. "value": {
  10738. "stroke": "#000000",
  10739. "fill": "#000000",
  10740. "opacity": 0,
  10741. "stroke-width": 1
  10742. }
  10743. },
  10744. "mapper": {
  10745. "type": "code",
  10746. "value": ""
  10747. },
  10748. "parser": {
  10749. "type": "code",
  10750. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  10751. },
  10752. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  10753. "position": {
  10754. "type": "list<double>",
  10755. "value": [
  10756. "0;-68.33142628461599,0%",
  10757. "0;-100.02024321570173,0%"
  10758. ]
  10759. },
  10760. "orientation": {
  10761. "type": "double",
  10762. "value": "0;50.92467575884142"
  10763. },
  10764. "scale": {
  10765. "type": "list<double>",
  10766. "value": [
  10767. 1,
  10768. 1
  10769. ]
  10770. },
  10771. "arrow": "arrowHead",
  10772. "arrowType": "diamond-black-large",
  10773. "$linkDecoratorInfo": {
  10774. "type": "map<string,double>",
  10775. "value": {
  10776. "xratio": -1,
  10777. "yoffset": -10
  10778. }
  10779. }
  10780. },
  10781. "297": {
  10782. "segments": {
  10783. "type": "string",
  10784. "value": "m0,0 l-10,4 l10,4 z"
  10785. },
  10786. "style": {
  10787. "type": "map<string,string>",
  10788. "value": {
  10789. "stroke": "#000000",
  10790. "fill": "#000000",
  10791. "opacity": 0,
  10792. "stroke-width": 1
  10793. }
  10794. },
  10795. "mapper": {
  10796. "type": "code",
  10797. "value": ""
  10798. },
  10799. "parser": {
  10800. "type": "code",
  10801. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  10802. },
  10803. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  10804. "position": {
  10805. "type": "list<double>",
  10806. "value": [
  10807. "0;-72.98933398629265,0%",
  10808. "0;-96.23819405649431,0%"
  10809. ]
  10810. },
  10811. "orientation": {
  10812. "type": "double",
  10813. "value": "0;50.92467575884142"
  10814. },
  10815. "scale": {
  10816. "type": "list<double>",
  10817. "value": [
  10818. 1,
  10819. 1
  10820. ]
  10821. },
  10822. "arrow": "arrowHead",
  10823. "arrowType": "triangle-black",
  10824. "$linkDecoratorInfo": {
  10825. "type": "map<string,double>",
  10826. "value": {
  10827. "xratio": -1,
  10828. "yoffset": -4
  10829. }
  10830. }
  10831. },
  10832. "298": {
  10833. "segments": {
  10834. "type": "string",
  10835. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  10836. },
  10837. "style": {
  10838. "type": "map<string,string>",
  10839. "value": {
  10840. "stroke": "#000000",
  10841. "fill": "#ffffff",
  10842. "opacity": 0,
  10843. "stroke-width": 1
  10844. }
  10845. },
  10846. "mapper": {
  10847. "type": "code",
  10848. "value": ""
  10849. },
  10850. "parser": {
  10851. "type": "code",
  10852. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  10853. },
  10854. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  10855. "position": {
  10856. "type": "list<double>",
  10857. "value": [
  10858. "0;-68.33142628461599,0%",
  10859. "0;-100.02024321570173,0%"
  10860. ]
  10861. },
  10862. "orientation": {
  10863. "type": "double",
  10864. "value": "0;50.92467575884142"
  10865. },
  10866. "scale": {
  10867. "type": "list<double>",
  10868. "value": [
  10869. 1,
  10870. 1
  10871. ]
  10872. },
  10873. "arrow": "arrowHead",
  10874. "arrowType": "diamond-white-large",
  10875. "$linkDecoratorInfo": {
  10876. "type": "map<string,double>",
  10877. "value": {
  10878. "xratio": -1,
  10879. "yoffset": -10
  10880. }
  10881. }
  10882. }
  10883. },
  10884. "edges": []
  10885. }
  10886. },
  10887. "$asuri": {
  10888. "type": "string",
  10889. "value": "/Formalisms/__Transformations__/Transformation/MoTif/loop/95.instance"
  10890. },
  10891. "$segments": {
  10892. "type": "map<string,list<string>>",
  10893. "value": {
  10894. "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/LRuleIcon/88.instance--/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/loopLink/95.instance": "M515,332.3685L591.0946057874104,426.08532795035603",
  10895. "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/loopLink/95.instance--/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/ARuleIcon/94.instance": "M591.0944487654285,426.085134564742L666.9996861295654,519.5687395716379"
  10896. }
  10897. },
  10898. "$type": "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons/loopLink"
  10899. }
  10900. },
  10901. "edges": [],
  10902. "metamodels": [
  10903. "/Formalisms/__Transformations__/Transformation/MoTif.defaultIcons"
  10904. ]
  10905. },
  10906. "asm": {
  10907. "nodes": {
  10908. "0": {
  10909. "$type": "/Formalisms/__Transformations__/Transformation/MoTif/Start"
  10910. },
  10911. "6": {
  10912. "$type": "/Formalisms/__Transformations__/Transformation/MoTif/EndSuccess"
  10913. },
  10914. "7": {
  10915. "$type": "/Formalisms/__Transformations__/Transformation/MoTif/EndFail"
  10916. },
  10917. "88": {
  10918. "maxIterations": {
  10919. "type": "int",
  10920. "value": "1000"
  10921. },
  10922. "nested": {
  10923. "type": "int",
  10924. "value": "1"
  10925. },
  10926. "name": {
  10927. "type": "string",
  10928. "value": "LRule"
  10929. },
  10930. "alias": {
  10931. "type": "string",
  10932. "value": ""
  10933. },
  10934. "$type": "/Formalisms/__Transformations__/Transformation/MoTif/LRule"
  10935. },
  10936. "89": {
  10937. "query": {
  10938. "type": "string",
  10939. "value": "/Formalisms/LCA-new/lrule/R_getNode.model"
  10940. },
  10941. "name": {
  10942. "type": "string",
  10943. "value": "getNode"
  10944. },
  10945. "alias": {
  10946. "type": "string",
  10947. "value": ""
  10948. },
  10949. "$type": "/Formalisms/__Transformations__/Transformation/MoTif/QRule"
  10950. },
  10951. "90": {
  10952. "$type": "/Formalisms/__Transformations__/Transformation/MoTif/initial"
  10953. },
  10954. "91": {
  10955. "$type": "/Formalisms/__Transformations__/Transformation/MoTif/success"
  10956. },
  10957. "92": {
  10958. "$type": "/Formalisms/__Transformations__/Transformation/MoTif/fail"
  10959. },
  10960. "93": {
  10961. "$type": "/Formalisms/__Transformations__/Transformation/MoTif/base"
  10962. },
  10963. "94": {
  10964. "rule": {
  10965. "type": "string",
  10966. "value": "/Formalisms/LCA-new/lrule/R_highlight.model"
  10967. },
  10968. "name": {
  10969. "type": "string",
  10970. "value": "highlight"
  10971. },
  10972. "alias": {
  10973. "type": "string",
  10974. "value": ""
  10975. },
  10976. "$type": "/Formalisms/__Transformations__/Transformation/MoTif/ARule"
  10977. },
  10978. "95": {
  10979. "$type": "/Formalisms/__Transformations__/Transformation/MoTif/loop"
  10980. }
  10981. },
  10982. "edges": [
  10983. {
  10984. "src": "0",
  10985. "dest": "90"
  10986. },
  10987. {
  10988. "src": "90",
  10989. "dest": "88"
  10990. },
  10991. {
  10992. "src": "88",
  10993. "dest": "91"
  10994. },
  10995. {
  10996. "src": "91",
  10997. "dest": "6"
  10998. },
  10999. {
  11000. "src": "88",
  11001. "dest": "92"
  11002. },
  11003. {
  11004. "src": "92",
  11005. "dest": "7"
  11006. },
  11007. {
  11008. "src": "88",
  11009. "dest": "93"
  11010. },
  11011. {
  11012. "src": "93",
  11013. "dest": "89"
  11014. },
  11015. {
  11016. "src": "88",
  11017. "dest": "95"
  11018. },
  11019. {
  11020. "src": "95",
  11021. "dest": "94"
  11022. }
  11023. ],
  11024. "metamodels": [
  11025. "/Formalisms/__Transformations__/Transformation/MoTif"
  11026. ]
  11027. }
  11028. }