T_TransferChairs.model 258 KB

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