BuildConfiguration.defaultIcons.model 206 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081
  1. {
  2. "csm": {
  3. "nodes": {
  4. "0": {
  5. "typename": {
  6. "type": "string",
  7. "value": "IconIcon"
  8. },
  9. "position": {
  10. "type": "list<double>",
  11. "value": [
  12. 125,
  13. 200
  14. ]
  15. },
  16. "orientation": {
  17. "type": "double",
  18. "value": 0
  19. },
  20. "scale": {
  21. "type": "list<double>",
  22. "value": [
  23. 1,
  24. 1
  25. ]
  26. },
  27. "mapper": {
  28. "type": "code",
  29. "value": "({'position':getAttr('position'),'orientation':getAttr('orientation'),'scale':getAttr('scale')})"
  30. },
  31. "parser": {
  32. "type": "code",
  33. "value": "({'position':getAttr('position'),'orientation':getAttr('orientation'),'scale':getAttr('scale')})"
  34. },
  35. "$contents": {
  36. "type": "map<string,*>",
  37. "value": {
  38. "nodes": {
  39. "1": {
  40. "width": {
  41. "type": "double",
  42. "value": "200"
  43. },
  44. "height": {
  45. "type": "double",
  46. "value": "150"
  47. },
  48. "cornerRadius": {
  49. "type": "double",
  50. "value": "10"
  51. },
  52. "style": {
  53. "type": "map<string,string>",
  54. "value": {
  55. "stroke": "#000000",
  56. "stroke-dasharray": "- ",
  57. "fill": "#ffffff",
  58. "fill-opacity": 0.75,
  59. "stroke-width": 1
  60. }
  61. },
  62. "mapper": {
  63. "type": "code",
  64. "value": ""
  65. },
  66. "parser": {
  67. "type": "code",
  68. "value": ""
  69. },
  70. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  71. "position": {
  72. "type": "list<double>",
  73. "value": [
  74. 0,
  75. 0
  76. ]
  77. },
  78. "orientation": {
  79. "type": "double",
  80. "value": 0
  81. },
  82. "scale": {
  83. "type": "list<double>",
  84. "value": [
  85. 1,
  86. 1
  87. ]
  88. }
  89. },
  90. "2": {
  91. "textContent": {
  92. "type": "string",
  93. "value": "HTTPDebuggerIcon"
  94. },
  95. "style": {
  96. "type": "map<string,string>",
  97. "value": {
  98. "stroke": "#000000",
  99. "stroke-dasharray": "",
  100. "fill": "#000000",
  101. "fill-opacity": "1",
  102. "font-size": "13px"
  103. }
  104. },
  105. "mapper": {
  106. "type": "code",
  107. "value": "({\"textContent\":getAttr(\"typename\")})"
  108. },
  109. "parser": {
  110. "type": "code",
  111. "value": "({\"typename\":getAttr(\"textContent\")})"
  112. },
  113. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  114. "position": {
  115. "type": "list<double>",
  116. "value": [
  117. 58,
  118. 151
  119. ]
  120. },
  121. "orientation": {
  122. "type": "double",
  123. "value": 0
  124. },
  125. "scale": {
  126. "type": "list<double>",
  127. "value": [
  128. 1,
  129. 1
  130. ]
  131. }
  132. },
  133. "3": {
  134. "distance": {
  135. "type": "double",
  136. "value": 0
  137. },
  138. "alignment": {
  139. "type": "ENUM(\"right\",\"left\",\"center\")",
  140. "value": "center"
  141. },
  142. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Below",
  143. "position": {
  144. "type": "list<double>",
  145. "value": [
  146. 93.49899850809561,
  147. 137.49900000000002
  148. ]
  149. },
  150. "orientation": {
  151. "type": "double",
  152. "value": 0
  153. },
  154. "scale": {
  155. "type": "list<double>",
  156. "value": [
  157. 1,
  158. 1
  159. ]
  160. },
  161. "link-style": {
  162. "type": "map<string,string>",
  163. "value": {
  164. "stroke": "#00ff00",
  165. "stroke-dasharray": "",
  166. "stroke-opacity": 1,
  167. "arrow-start": "none",
  168. "arrow-end": "classic-wide-long"
  169. }
  170. }
  171. }
  172. },
  173. "edges": [
  174. {
  175. "src": "2",
  176. "dest": 3
  177. },
  178. {
  179. "src": 3,
  180. "dest": "1"
  181. }
  182. ]
  183. }
  184. },
  185. "$asuri": {
  186. "type": "string",
  187. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Icon/0.instance"
  188. },
  189. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconIcon"
  190. },
  191. "1": {
  192. "typename": {
  193. "type": "string",
  194. "value": "IconIcon"
  195. },
  196. "position": {
  197. "type": "list<double>",
  198. "value": [
  199. 626,
  200. 251
  201. ]
  202. },
  203. "orientation": {
  204. "type": "double",
  205. "value": 0
  206. },
  207. "scale": {
  208. "type": "list<double>",
  209. "value": [
  210. 1,
  211. 1
  212. ]
  213. },
  214. "mapper": {
  215. "type": "code",
  216. "value": "({'position':getAttr('position'),'orientation':getAttr('orientation'),'scale':getAttr('scale')})"
  217. },
  218. "parser": {
  219. "type": "code",
  220. "value": "({'position':getAttr('position'),'orientation':getAttr('orientation'),'scale':getAttr('scale')})"
  221. },
  222. "$contents": {
  223. "type": "map<string,*>",
  224. "value": {
  225. "nodes": {
  226. "1": {
  227. "width": {
  228. "type": "double",
  229. "value": "200"
  230. },
  231. "height": {
  232. "type": "double",
  233. "value": "150"
  234. },
  235. "cornerRadius": {
  236. "type": "double",
  237. "value": "10"
  238. },
  239. "style": {
  240. "type": "map<string,string>",
  241. "value": {
  242. "stroke": "#000000",
  243. "stroke-dasharray": "- ",
  244. "fill": "#ffffff",
  245. "fill-opacity": 0.75,
  246. "stroke-width": 1
  247. }
  248. },
  249. "mapper": {
  250. "type": "code",
  251. "value": ""
  252. },
  253. "parser": {
  254. "type": "code",
  255. "value": ""
  256. },
  257. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  258. "position": {
  259. "type": "list<double>",
  260. "value": [
  261. 0,
  262. 0
  263. ]
  264. },
  265. "orientation": {
  266. "type": "double",
  267. "value": 0
  268. },
  269. "scale": {
  270. "type": "list<double>",
  271. "value": [
  272. 1,
  273. 1
  274. ]
  275. }
  276. },
  277. "2": {
  278. "textContent": {
  279. "type": "string",
  280. "value": "CustomIcon"
  281. },
  282. "style": {
  283. "type": "map<string,string>",
  284. "value": {
  285. "stroke": "#000000",
  286. "stroke-dasharray": "",
  287. "fill": "#000000",
  288. "fill-opacity": "1",
  289. "font-size": "13px"
  290. }
  291. },
  292. "mapper": {
  293. "type": "code",
  294. "value": "({\"textContent\":getAttr(\"typename\")})"
  295. },
  296. "parser": {
  297. "type": "code",
  298. "value": "({\"typename\":getAttr(\"textContent\")})"
  299. },
  300. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  301. "position": {
  302. "type": "list<double>",
  303. "value": [
  304. 58,
  305. 151
  306. ]
  307. },
  308. "orientation": {
  309. "type": "double",
  310. "value": 0
  311. },
  312. "scale": {
  313. "type": "list<double>",
  314. "value": [
  315. 1,
  316. 1
  317. ]
  318. }
  319. },
  320. "3": {
  321. "distance": {
  322. "type": "double",
  323. "value": 0
  324. },
  325. "alignment": {
  326. "type": "ENUM(\"right\",\"left\",\"center\")",
  327. "value": "center"
  328. },
  329. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Below",
  330. "position": {
  331. "type": "list<double>",
  332. "value": [
  333. 93.49899850809561,
  334. 137.49900000000002
  335. ]
  336. },
  337. "orientation": {
  338. "type": "double",
  339. "value": 0
  340. },
  341. "scale": {
  342. "type": "list<double>",
  343. "value": [
  344. 1,
  345. 1
  346. ]
  347. },
  348. "link-style": {
  349. "type": "map<string,string>",
  350. "value": {
  351. "stroke": "#00ff00",
  352. "stroke-dasharray": "",
  353. "stroke-opacity": 1,
  354. "arrow-start": "none",
  355. "arrow-end": "classic-wide-long"
  356. }
  357. }
  358. }
  359. },
  360. "edges": [
  361. {
  362. "src": "2",
  363. "dest": 3
  364. },
  365. {
  366. "src": 3,
  367. "dest": "1"
  368. }
  369. ]
  370. }
  371. },
  372. "$asuri": {
  373. "type": "string",
  374. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Icon/1.instance"
  375. },
  376. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconIcon"
  377. },
  378. "2": {
  379. "typename": {
  380. "type": "string",
  381. "value": "EllipseIcon"
  382. },
  383. "position": {
  384. "type": "list<double>",
  385. "value": [
  386. 150,
  387. 236
  388. ]
  389. },
  390. "orientation": {
  391. "type": "double",
  392. "value": 0
  393. },
  394. "scale": {
  395. "type": "list<double>",
  396. "value": [
  397. 1,
  398. 1
  399. ]
  400. },
  401. "mapper": {
  402. "type": "code",
  403. "value": ""
  404. },
  405. "parser": {
  406. "type": "code",
  407. "value": ""
  408. },
  409. "$contents": {
  410. "type": "map<string,*>",
  411. "value": {
  412. "nodes": {
  413. "33": {
  414. "rx": {
  415. "type": "double",
  416. "value": 30
  417. },
  418. "ry": {
  419. "type": "double",
  420. "value": 40
  421. },
  422. "style": {
  423. "type": "map<string,string>",
  424. "value": {
  425. "stroke": "#000000",
  426. "fill": "lawngreen",
  427. "stroke-width": 1
  428. }
  429. },
  430. "mapper": {
  431. "type": "code",
  432. "value": "({\"rx\":getAttr(\"rx\"), \"ry\":getAttr(\"ry\"), \"style\":getAttr(\"style\")})"
  433. },
  434. "parser": {
  435. "type": "code",
  436. "value": ""
  437. },
  438. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Ellipse",
  439. "position": {
  440. "type": "list<double>",
  441. "value": [
  442. 0,
  443. 0
  444. ]
  445. },
  446. "orientation": {
  447. "type": "double",
  448. "value": 0
  449. },
  450. "scale": {
  451. "type": "list<double>",
  452. "value": [
  453. 1,
  454. 1
  455. ]
  456. }
  457. }
  458. },
  459. "edges": []
  460. }
  461. },
  462. "$asuri": {
  463. "type": "string",
  464. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Ellipse/2.instance"
  465. },
  466. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/EllipseIcon"
  467. },
  468. "3": {
  469. "typename": {
  470. "type": "string",
  471. "value": "CircleIcon"
  472. },
  473. "position": {
  474. "type": "list<double>",
  475. "value": [
  476. 159,
  477. 215
  478. ]
  479. },
  480. "orientation": {
  481. "type": "double",
  482. "value": 0
  483. },
  484. "scale": {
  485. "type": "list<double>",
  486. "value": [
  487. 1,
  488. 1
  489. ]
  490. },
  491. "mapper": {
  492. "type": "code",
  493. "value": ""
  494. },
  495. "parser": {
  496. "type": "code",
  497. "value": ""
  498. },
  499. "$contents": {
  500. "type": "map<string,*>",
  501. "value": {
  502. "nodes": {
  503. "31": {
  504. "r": {
  505. "type": "double",
  506. "value": 20
  507. },
  508. "style": {
  509. "type": "map<string,string>",
  510. "value": {
  511. "stroke": "#000000",
  512. "fill": "lawngreen",
  513. "fill-opacity": 1,
  514. "stroke-width": 1
  515. }
  516. },
  517. "mapper": {
  518. "type": "code",
  519. "value": "({\"r\":getAttr(\"r\"), \"style\":getAttr(\"style\")})"
  520. },
  521. "parser": {
  522. "type": "code",
  523. "value": ""
  524. },
  525. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  526. "position": {
  527. "type": "list<double>",
  528. "value": [
  529. 0,
  530. 0
  531. ]
  532. },
  533. "orientation": {
  534. "type": "double",
  535. "value": 0
  536. },
  537. "scale": {
  538. "type": "list<double>",
  539. "value": [
  540. 1,
  541. 1
  542. ]
  543. }
  544. }
  545. },
  546. "edges": []
  547. }
  548. },
  549. "$asuri": {
  550. "type": "string",
  551. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle/3.instance"
  552. },
  553. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/CircleIcon"
  554. },
  555. "15": {
  556. "typename": {
  557. "type": "string",
  558. "value": "CircleIcon"
  559. },
  560. "position": {
  561. "type": "list<double>",
  562. "value": [
  563. 193.7254213255029,
  564. 200.7270311552125
  565. ]
  566. },
  567. "orientation": {
  568. "type": "double",
  569. "value": 53.9995600574607
  570. },
  571. "scale": {
  572. "type": "list<double>",
  573. "value": [
  574. 1.0000310241519241,
  575. 1.0000310241519241
  576. ]
  577. },
  578. "mapper": {
  579. "type": "code",
  580. "value": ""
  581. },
  582. "parser": {
  583. "type": "code",
  584. "value": ""
  585. },
  586. "$contents": {
  587. "type": "map<string,*>",
  588. "value": {
  589. "nodes": {
  590. "31": {
  591. "r": {
  592. "type": "double",
  593. "value": 3
  594. },
  595. "style": {
  596. "type": "map<string,string>",
  597. "value": {
  598. "stroke": "#000000",
  599. "fill": "limegreen",
  600. "stroke-width": 1
  601. }
  602. },
  603. "mapper": {
  604. "type": "code",
  605. "value": "({\"r\":getAttr(\"r\"), \"style\":getAttr(\"style\")})"
  606. },
  607. "parser": {
  608. "type": "code",
  609. "value": ""
  610. },
  611. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  612. "position": {
  613. "type": "list<double>",
  614. "value": [
  615. 0,
  616. 0
  617. ]
  618. },
  619. "orientation": {
  620. "type": "double",
  621. "value": 0
  622. },
  623. "scale": {
  624. "type": "list<double>",
  625. "value": [
  626. 1,
  627. 1
  628. ]
  629. }
  630. }
  631. },
  632. "edges": []
  633. }
  634. },
  635. "$asuri": {
  636. "type": "string",
  637. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle/15.instance"
  638. },
  639. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/CircleIcon"
  640. },
  641. "16": {
  642. "typename": {
  643. "type": "string",
  644. "value": "PathIcon"
  645. },
  646. "position": {
  647. "type": "list<double>",
  648. "value": [
  649. 192.6192819272717,
  650. 207.71126755370057
  651. ]
  652. },
  653. "orientation": {
  654. "type": "double",
  655. "value": 53.9995600574607
  656. },
  657. "scale": {
  658. "type": "list<double>",
  659. "value": [
  660. 1.0000310241519241,
  661. 1.0000310241519241
  662. ]
  663. },
  664. "mapper": {
  665. "type": "code",
  666. "value": ""
  667. },
  668. "parser": {
  669. "type": "code",
  670. "value": ""
  671. },
  672. "$contents": {
  673. "type": "map<string,*>",
  674. "value": {
  675. "nodes": {
  676. "44": {
  677. "segments": {
  678. "type": "string",
  679. "value": "m0,0l5,10"
  680. },
  681. "style": {
  682. "type": "map<string,string>",
  683. "value": {
  684. "stroke": "#000000",
  685. "stroke-dasharray": "",
  686. "fill": "#ffffff",
  687. "fill-opacity": 0.75,
  688. "font-size": "20px",
  689. "stroke-width": 2,
  690. "arrow-start": "none",
  691. "arrow-end": "none"
  692. }
  693. },
  694. "mapper": {
  695. "type": "code",
  696. "value": "({\"segments\":getAttr(\"segments\"), \"style\":getAttr(\"style\")})"
  697. },
  698. "parser": {
  699. "type": "code",
  700. "value": ""
  701. },
  702. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  703. "position": {
  704. "type": "list<double>",
  705. "value": [
  706. -1,
  707. 0
  708. ]
  709. },
  710. "orientation": {
  711. "type": "double",
  712. "value": 0
  713. },
  714. "scale": {
  715. "type": "list<double>",
  716. "value": [
  717. 1,
  718. 1
  719. ]
  720. }
  721. }
  722. },
  723. "edges": []
  724. }
  725. },
  726. "$asuri": {
  727. "type": "string",
  728. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path/16.instance"
  729. },
  730. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/PathIcon"
  731. },
  732. "18": {
  733. "typename": {
  734. "type": "string",
  735. "value": "PathIcon"
  736. },
  737. "position": {
  738. "type": "list<double>",
  739. "value": [
  740. 168,
  741. 207
  742. ]
  743. },
  744. "orientation": {
  745. "type": "double",
  746. "value": 0
  747. },
  748. "scale": {
  749. "type": "list<double>",
  750. "value": [
  751. 1,
  752. 1
  753. ]
  754. },
  755. "mapper": {
  756. "type": "code",
  757. "value": ""
  758. },
  759. "parser": {
  760. "type": "code",
  761. "value": ""
  762. },
  763. "$contents": {
  764. "type": "map<string,*>",
  765. "value": {
  766. "nodes": {
  767. "44": {
  768. "segments": {
  769. "type": "string",
  770. "value": "m0,0l5,10"
  771. },
  772. "style": {
  773. "type": "map<string,string>",
  774. "value": {
  775. "stroke": "#000000",
  776. "stroke-dasharray": "",
  777. "fill": "#ffffff",
  778. "fill-opacity": 0.75,
  779. "font-size": "20px",
  780. "stroke-width": 2,
  781. "arrow-start": "none",
  782. "arrow-end": "none"
  783. }
  784. },
  785. "mapper": {
  786. "type": "code",
  787. "value": "({\"segments\":getAttr(\"segments\"), \"style\":getAttr(\"style\")})"
  788. },
  789. "parser": {
  790. "type": "code",
  791. "value": ""
  792. },
  793. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  794. "position": {
  795. "type": "list<double>",
  796. "value": [
  797. -1,
  798. 0
  799. ]
  800. },
  801. "orientation": {
  802. "type": "double",
  803. "value": 0
  804. },
  805. "scale": {
  806. "type": "list<double>",
  807. "value": [
  808. 1,
  809. 1
  810. ]
  811. }
  812. }
  813. },
  814. "edges": []
  815. }
  816. },
  817. "$asuri": {
  818. "type": "string",
  819. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path/18.instance"
  820. },
  821. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/PathIcon"
  822. },
  823. "19": {
  824. "typename": {
  825. "type": "string",
  826. "value": "CircleIcon"
  827. },
  828. "position": {
  829. "type": "list<double>",
  830. "value": [
  831. 163,
  832. 202
  833. ]
  834. },
  835. "orientation": {
  836. "type": "double",
  837. "value": 0
  838. },
  839. "scale": {
  840. "type": "list<double>",
  841. "value": [
  842. 1,
  843. 1
  844. ]
  845. },
  846. "mapper": {
  847. "type": "code",
  848. "value": ""
  849. },
  850. "parser": {
  851. "type": "code",
  852. "value": ""
  853. },
  854. "$contents": {
  855. "type": "map<string,*>",
  856. "value": {
  857. "nodes": {
  858. "31": {
  859. "r": {
  860. "type": "double",
  861. "value": 3
  862. },
  863. "style": {
  864. "type": "map<string,string>",
  865. "value": {
  866. "stroke": "#000000",
  867. "fill": "limegreen",
  868. "stroke-width": 1
  869. }
  870. },
  871. "mapper": {
  872. "type": "code",
  873. "value": "({\"r\":getAttr(\"r\"), \"style\":getAttr(\"style\")})"
  874. },
  875. "parser": {
  876. "type": "code",
  877. "value": ""
  878. },
  879. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  880. "position": {
  881. "type": "list<double>",
  882. "value": [
  883. 0,
  884. 0
  885. ]
  886. },
  887. "orientation": {
  888. "type": "double",
  889. "value": 0
  890. },
  891. "scale": {
  892. "type": "list<double>",
  893. "value": [
  894. 1,
  895. 1
  896. ]
  897. }
  898. }
  899. },
  900. "edges": []
  901. }
  902. },
  903. "$asuri": {
  904. "type": "string",
  905. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle/19.instance"
  906. },
  907. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/CircleIcon"
  908. },
  909. "20": {
  910. "typename": {
  911. "type": "string",
  912. "value": "RectangleIcon"
  913. },
  914. "position": {
  915. "type": "list<double>",
  916. "value": [
  917. 155.50898452211982,
  918. 288.5980000014275
  919. ]
  920. },
  921. "orientation": {
  922. "type": "double",
  923. "value": 180
  924. },
  925. "scale": {
  926. "type": "list<double>",
  927. "value": [
  928. 1,
  929. 1
  930. ]
  931. },
  932. "mapper": {
  933. "type": "code",
  934. "value": ""
  935. },
  936. "parser": {
  937. "type": "code",
  938. "value": ""
  939. },
  940. "$contents": {
  941. "type": "map<string,*>",
  942. "value": {
  943. "nodes": {
  944. "17": {
  945. "width": {
  946. "type": "double",
  947. "value": 30
  948. },
  949. "height": {
  950. "type": "double",
  951. "value": 5
  952. },
  953. "cornerRadius": {
  954. "type": "double",
  955. "value": 5
  956. },
  957. "style": {
  958. "type": "map<string,string>",
  959. "value": {
  960. "stroke": "#000000",
  961. "fill": "limegreen",
  962. "stroke-width": 1
  963. }
  964. },
  965. "mapper": {
  966. "type": "code",
  967. "value": "({\"width\":getAttr(\"width\"), \"height\":getAttr(\"height\"), \"cornerRadius\":getAttr(\"cornerRadius\"), \"style\":getAttr(\"style\")})"
  968. },
  969. "parser": {
  970. "type": "code",
  971. "value": ""
  972. },
  973. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  974. "position": {
  975. "type": "list<double>",
  976. "value": [
  977. 0,
  978. 1
  979. ]
  980. },
  981. "orientation": {
  982. "type": "double",
  983. "value": 0
  984. },
  985. "scale": {
  986. "type": "list<double>",
  987. "value": [
  988. 1,
  989. 1
  990. ]
  991. }
  992. }
  993. },
  994. "edges": []
  995. }
  996. },
  997. "$asuri": {
  998. "type": "string",
  999. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle/20.instance"
  1000. },
  1001. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/RectangleIcon"
  1002. },
  1003. "21": {
  1004. "typename": {
  1005. "type": "string",
  1006. "value": "RectangleIcon"
  1007. },
  1008. "position": {
  1009. "type": "list<double>",
  1010. "value": [
  1011. 131.4840547527566,
  1012. 248.20082084284502
  1013. ]
  1014. },
  1015. "orientation": {
  1016. "type": "double",
  1017. "value": 27.004715552244022
  1018. },
  1019. "scale": {
  1020. "type": "list<double>",
  1021. "value": [
  1022. 0.9998259421578342,
  1023. 0.9998259421578342
  1024. ]
  1025. },
  1026. "mapper": {
  1027. "type": "code",
  1028. "value": ""
  1029. },
  1030. "parser": {
  1031. "type": "code",
  1032. "value": ""
  1033. },
  1034. "$contents": {
  1035. "type": "map<string,*>",
  1036. "value": {
  1037. "nodes": {
  1038. "17": {
  1039. "width": {
  1040. "type": "double",
  1041. "value": 30
  1042. },
  1043. "height": {
  1044. "type": "double",
  1045. "value": 5
  1046. },
  1047. "cornerRadius": {
  1048. "type": "double",
  1049. "value": 5
  1050. },
  1051. "style": {
  1052. "type": "map<string,string>",
  1053. "value": {
  1054. "stroke": "#000000",
  1055. "fill": "limegreen",
  1056. "stroke-width": 1
  1057. }
  1058. },
  1059. "mapper": {
  1060. "type": "code",
  1061. "value": "({\"width\":getAttr(\"width\"), \"height\":getAttr(\"height\"), \"cornerRadius\":getAttr(\"cornerRadius\"), \"style\":getAttr(\"style\")})"
  1062. },
  1063. "parser": {
  1064. "type": "code",
  1065. "value": ""
  1066. },
  1067. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  1068. "position": {
  1069. "type": "list<double>",
  1070. "value": [
  1071. 0,
  1072. 1
  1073. ]
  1074. },
  1075. "orientation": {
  1076. "type": "double",
  1077. "value": 0
  1078. },
  1079. "scale": {
  1080. "type": "list<double>",
  1081. "value": [
  1082. 1,
  1083. 1
  1084. ]
  1085. }
  1086. }
  1087. },
  1088. "edges": []
  1089. }
  1090. },
  1091. "$asuri": {
  1092. "type": "string",
  1093. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle/21.instance"
  1094. },
  1095. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/RectangleIcon"
  1096. },
  1097. "22": {
  1098. "typename": {
  1099. "type": "string",
  1100. "value": "RectangleIcon"
  1101. },
  1102. "position": {
  1103. "type": "list<double>",
  1104. "value": [
  1105. 158.91568452209594,
  1106. 296.51150000125875
  1107. ]
  1108. },
  1109. "orientation": {
  1110. "type": "double",
  1111. "value": 156.0008586730671
  1112. },
  1113. "scale": {
  1114. "type": "list<double>",
  1115. "value": [
  1116. 0.9999435684077377,
  1117. 0.9999435684077377
  1118. ]
  1119. },
  1120. "mapper": {
  1121. "type": "code",
  1122. "value": ""
  1123. },
  1124. "parser": {
  1125. "type": "code",
  1126. "value": ""
  1127. },
  1128. "$contents": {
  1129. "type": "map<string,*>",
  1130. "value": {
  1131. "nodes": {
  1132. "17": {
  1133. "width": {
  1134. "type": "double",
  1135. "value": 30
  1136. },
  1137. "height": {
  1138. "type": "double",
  1139. "value": 5
  1140. },
  1141. "cornerRadius": {
  1142. "type": "double",
  1143. "value": 5
  1144. },
  1145. "style": {
  1146. "type": "map<string,string>",
  1147. "value": {
  1148. "stroke": "#000000",
  1149. "fill": "limegreen",
  1150. "stroke-width": 1
  1151. }
  1152. },
  1153. "mapper": {
  1154. "type": "code",
  1155. "value": "({\"width\":getAttr(\"width\"), \"height\":getAttr(\"height\"), \"cornerRadius\":getAttr(\"cornerRadius\"), \"style\":getAttr(\"style\")})"
  1156. },
  1157. "parser": {
  1158. "type": "code",
  1159. "value": ""
  1160. },
  1161. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  1162. "position": {
  1163. "type": "list<double>",
  1164. "value": [
  1165. 0,
  1166. 1
  1167. ]
  1168. },
  1169. "orientation": {
  1170. "type": "double",
  1171. "value": 0
  1172. },
  1173. "scale": {
  1174. "type": "list<double>",
  1175. "value": [
  1176. 1,
  1177. 1
  1178. ]
  1179. }
  1180. }
  1181. },
  1182. "edges": []
  1183. }
  1184. },
  1185. "$asuri": {
  1186. "type": "string",
  1187. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle/22.instance"
  1188. },
  1189. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/RectangleIcon"
  1190. },
  1191. "23": {
  1192. "typename": {
  1193. "type": "string",
  1194. "value": "RectangleIcon"
  1195. },
  1196. "position": {
  1197. "type": "list<double>",
  1198. "value": [
  1199. 155.50898452211982,
  1200. 275.5980000014275
  1201. ]
  1202. },
  1203. "orientation": {
  1204. "type": "double",
  1205. "value": 180
  1206. },
  1207. "scale": {
  1208. "type": "list<double>",
  1209. "value": [
  1210. 1,
  1211. 1
  1212. ]
  1213. },
  1214. "mapper": {
  1215. "type": "code",
  1216. "value": ""
  1217. },
  1218. "parser": {
  1219. "type": "code",
  1220. "value": ""
  1221. },
  1222. "$contents": {
  1223. "type": "map<string,*>",
  1224. "value": {
  1225. "nodes": {
  1226. "17": {
  1227. "width": {
  1228. "type": "double",
  1229. "value": 30
  1230. },
  1231. "height": {
  1232. "type": "double",
  1233. "value": 5
  1234. },
  1235. "cornerRadius": {
  1236. "type": "double",
  1237. "value": 5
  1238. },
  1239. "style": {
  1240. "type": "map<string,string>",
  1241. "value": {
  1242. "stroke": "#000000",
  1243. "fill": "limegreen",
  1244. "stroke-width": 1
  1245. }
  1246. },
  1247. "mapper": {
  1248. "type": "code",
  1249. "value": "({\"width\":getAttr(\"width\"), \"height\":getAttr(\"height\"), \"cornerRadius\":getAttr(\"cornerRadius\"), \"style\":getAttr(\"style\")})"
  1250. },
  1251. "parser": {
  1252. "type": "code",
  1253. "value": ""
  1254. },
  1255. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  1256. "position": {
  1257. "type": "list<double>",
  1258. "value": [
  1259. 0,
  1260. 1
  1261. ]
  1262. },
  1263. "orientation": {
  1264. "type": "double",
  1265. "value": 0
  1266. },
  1267. "scale": {
  1268. "type": "list<double>",
  1269. "value": [
  1270. 1,
  1271. 1
  1272. ]
  1273. }
  1274. }
  1275. },
  1276. "edges": []
  1277. }
  1278. },
  1279. "$asuri": {
  1280. "type": "string",
  1281. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle/23.instance"
  1282. },
  1283. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/RectangleIcon"
  1284. },
  1285. "24": {
  1286. "typename": {
  1287. "type": "string",
  1288. "value": "RectangleIcon"
  1289. },
  1290. "position": {
  1291. "type": "list<double>",
  1292. "value": [
  1293. 224.53391429148303,
  1294. 310.9824489965072
  1295. ]
  1296. },
  1297. "orientation": {
  1298. "type": "double",
  1299. "value": 207.00471555224402
  1300. },
  1301. "scale": {
  1302. "type": "list<double>",
  1303. "value": [
  1304. 0.9998259421578342,
  1305. 0.9998259421578342
  1306. ]
  1307. },
  1308. "mapper": {
  1309. "type": "code",
  1310. "value": ""
  1311. },
  1312. "parser": {
  1313. "type": "code",
  1314. "value": ""
  1315. },
  1316. "$contents": {
  1317. "type": "map<string,*>",
  1318. "value": {
  1319. "nodes": {
  1320. "17": {
  1321. "width": {
  1322. "type": "double",
  1323. "value": 30
  1324. },
  1325. "height": {
  1326. "type": "double",
  1327. "value": 5
  1328. },
  1329. "cornerRadius": {
  1330. "type": "double",
  1331. "value": 5
  1332. },
  1333. "style": {
  1334. "type": "map<string,string>",
  1335. "value": {
  1336. "stroke": "#000000",
  1337. "fill": "limegreen",
  1338. "stroke-width": 1
  1339. }
  1340. },
  1341. "mapper": {
  1342. "type": "code",
  1343. "value": "({\"width\":getAttr(\"width\"), \"height\":getAttr(\"height\"), \"cornerRadius\":getAttr(\"cornerRadius\"), \"style\":getAttr(\"style\")})"
  1344. },
  1345. "parser": {
  1346. "type": "code",
  1347. "value": ""
  1348. },
  1349. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  1350. "position": {
  1351. "type": "list<double>",
  1352. "value": [
  1353. 0,
  1354. 1
  1355. ]
  1356. },
  1357. "orientation": {
  1358. "type": "double",
  1359. "value": 0
  1360. },
  1361. "scale": {
  1362. "type": "list<double>",
  1363. "value": [
  1364. 1,
  1365. 1
  1366. ]
  1367. }
  1368. }
  1369. },
  1370. "edges": []
  1371. }
  1372. },
  1373. "$asuri": {
  1374. "type": "string",
  1375. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle/24.instance"
  1376. },
  1377. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/RectangleIcon"
  1378. },
  1379. "25": {
  1380. "typename": {
  1381. "type": "string",
  1382. "value": "RectangleIcon"
  1383. },
  1384. "position": {
  1385. "type": "list<double>",
  1386. "value": [
  1387. 201.1022845221437,
  1388. 261.67176983809344
  1389. ]
  1390. },
  1391. "orientation": {
  1392. "type": "double",
  1393. "value": 336.0008586730671
  1394. },
  1395. "scale": {
  1396. "type": "list<double>",
  1397. "value": [
  1398. 0.9999435684077377,
  1399. 0.9999435684077377
  1400. ]
  1401. },
  1402. "mapper": {
  1403. "type": "code",
  1404. "value": ""
  1405. },
  1406. "parser": {
  1407. "type": "code",
  1408. "value": ""
  1409. },
  1410. "$contents": {
  1411. "type": "map<string,*>",
  1412. "value": {
  1413. "nodes": {
  1414. "17": {
  1415. "width": {
  1416. "type": "double",
  1417. "value": 30
  1418. },
  1419. "height": {
  1420. "type": "double",
  1421. "value": 5
  1422. },
  1423. "cornerRadius": {
  1424. "type": "double",
  1425. "value": 5
  1426. },
  1427. "style": {
  1428. "type": "map<string,string>",
  1429. "value": {
  1430. "stroke": "#000000",
  1431. "fill": "limegreen",
  1432. "stroke-width": 1
  1433. }
  1434. },
  1435. "mapper": {
  1436. "type": "code",
  1437. "value": "({\"width\":getAttr(\"width\"), \"height\":getAttr(\"height\"), \"cornerRadius\":getAttr(\"cornerRadius\"), \"style\":getAttr(\"style\")})"
  1438. },
  1439. "parser": {
  1440. "type": "code",
  1441. "value": ""
  1442. },
  1443. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  1444. "position": {
  1445. "type": "list<double>",
  1446. "value": [
  1447. 0,
  1448. 1
  1449. ]
  1450. },
  1451. "orientation": {
  1452. "type": "double",
  1453. "value": 0
  1454. },
  1455. "scale": {
  1456. "type": "list<double>",
  1457. "value": [
  1458. 1,
  1459. 1
  1460. ]
  1461. }
  1462. }
  1463. },
  1464. "edges": []
  1465. }
  1466. },
  1467. "$asuri": {
  1468. "type": "string",
  1469. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle/25.instance"
  1470. },
  1471. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/RectangleIcon"
  1472. },
  1473. "26": {
  1474. "typename": {
  1475. "type": "string",
  1476. "value": "RectangleIcon"
  1477. },
  1478. "position": {
  1479. "type": "list<double>",
  1480. "value": [
  1481. 202.50898452211982,
  1482. 283.58526983792467
  1483. ]
  1484. },
  1485. "orientation": {
  1486. "type": "double",
  1487. "value": 0
  1488. },
  1489. "scale": {
  1490. "type": "list<double>",
  1491. "value": [
  1492. 1,
  1493. 1
  1494. ]
  1495. },
  1496. "mapper": {
  1497. "type": "code",
  1498. "value": ""
  1499. },
  1500. "parser": {
  1501. "type": "code",
  1502. "value": ""
  1503. },
  1504. "$contents": {
  1505. "type": "map<string,*>",
  1506. "value": {
  1507. "nodes": {
  1508. "17": {
  1509. "width": {
  1510. "type": "double",
  1511. "value": 30
  1512. },
  1513. "height": {
  1514. "type": "double",
  1515. "value": 5
  1516. },
  1517. "cornerRadius": {
  1518. "type": "double",
  1519. "value": 5
  1520. },
  1521. "style": {
  1522. "type": "map<string,string>",
  1523. "value": {
  1524. "stroke": "#000000",
  1525. "fill": "limegreen",
  1526. "stroke-width": 1
  1527. }
  1528. },
  1529. "mapper": {
  1530. "type": "code",
  1531. "value": "({\"width\":getAttr(\"width\"), \"height\":getAttr(\"height\"), \"cornerRadius\":getAttr(\"cornerRadius\"), \"style\":getAttr(\"style\")})"
  1532. },
  1533. "parser": {
  1534. "type": "code",
  1535. "value": ""
  1536. },
  1537. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  1538. "position": {
  1539. "type": "list<double>",
  1540. "value": [
  1541. 0,
  1542. 1
  1543. ]
  1544. },
  1545. "orientation": {
  1546. "type": "double",
  1547. "value": 0
  1548. },
  1549. "scale": {
  1550. "type": "list<double>",
  1551. "value": [
  1552. 1,
  1553. 1
  1554. ]
  1555. }
  1556. }
  1557. },
  1558. "edges": []
  1559. }
  1560. },
  1561. "$asuri": {
  1562. "type": "string",
  1563. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle/26.instance"
  1564. },
  1565. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/RectangleIcon"
  1566. },
  1567. "27": {
  1568. "typename": {
  1569. "type": "string",
  1570. "value": "RectangleIcon"
  1571. },
  1572. "position": {
  1573. "type": "list<double>",
  1574. "value": [
  1575. 202.50898452211982,
  1576. 270.58526983792467
  1577. ]
  1578. },
  1579. "orientation": {
  1580. "type": "double",
  1581. "value": 0
  1582. },
  1583. "scale": {
  1584. "type": "list<double>",
  1585. "value": [
  1586. 1,
  1587. 1
  1588. ]
  1589. },
  1590. "mapper": {
  1591. "type": "code",
  1592. "value": ""
  1593. },
  1594. "parser": {
  1595. "type": "code",
  1596. "value": ""
  1597. },
  1598. "$contents": {
  1599. "type": "map<string,*>",
  1600. "value": {
  1601. "nodes": {
  1602. "17": {
  1603. "width": {
  1604. "type": "double",
  1605. "value": 30
  1606. },
  1607. "height": {
  1608. "type": "double",
  1609. "value": 5
  1610. },
  1611. "cornerRadius": {
  1612. "type": "double",
  1613. "value": 5
  1614. },
  1615. "style": {
  1616. "type": "map<string,string>",
  1617. "value": {
  1618. "stroke": "#000000",
  1619. "fill": "limegreen",
  1620. "stroke-width": 1
  1621. }
  1622. },
  1623. "mapper": {
  1624. "type": "code",
  1625. "value": "({\"width\":getAttr(\"width\"), \"height\":getAttr(\"height\"), \"cornerRadius\":getAttr(\"cornerRadius\"), \"style\":getAttr(\"style\")})"
  1626. },
  1627. "parser": {
  1628. "type": "code",
  1629. "value": ""
  1630. },
  1631. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  1632. "position": {
  1633. "type": "list<double>",
  1634. "value": [
  1635. 0,
  1636. 1
  1637. ]
  1638. },
  1639. "orientation": {
  1640. "type": "double",
  1641. "value": 0
  1642. },
  1643. "scale": {
  1644. "type": "list<double>",
  1645. "value": [
  1646. 1,
  1647. 1
  1648. ]
  1649. }
  1650. }
  1651. },
  1652. "edges": []
  1653. }
  1654. },
  1655. "$asuri": {
  1656. "type": "string",
  1657. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle/27.instance"
  1658. },
  1659. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/RectangleIcon"
  1660. },
  1661. "34": {
  1662. "typename": {
  1663. "type": "string",
  1664. "value": "RectangleIcon"
  1665. },
  1666. "position": {
  1667. "type": "list<double>",
  1668. "value": [
  1669. 178,
  1670. 312
  1671. ]
  1672. },
  1673. "orientation": {
  1674. "type": "double",
  1675. "value": 0
  1676. },
  1677. "scale": {
  1678. "type": "list<double>",
  1679. "value": [
  1680. 1,
  1681. 1
  1682. ]
  1683. },
  1684. "mapper": {
  1685. "type": "code",
  1686. "value": ""
  1687. },
  1688. "parser": {
  1689. "type": "code",
  1690. "value": ""
  1691. },
  1692. "$contents": {
  1693. "type": "map<string,*>",
  1694. "value": {
  1695. "nodes": {
  1696. "17": {
  1697. "width": {
  1698. "type": "double",
  1699. "value": 70
  1700. },
  1701. "height": {
  1702. "type": "double",
  1703. "value": 30
  1704. },
  1705. "cornerRadius": {
  1706. "type": "double",
  1707. "value": 10
  1708. },
  1709. "style": {
  1710. "type": "map<string,string>",
  1711. "value": {
  1712. "stroke": "orangered",
  1713. "stroke-dasharray": "",
  1714. "fill": "orange",
  1715. "fill-opacity": 1,
  1716. "font-size": "20px",
  1717. "stroke-width": 1,
  1718. "arrow-start": "none",
  1719. "arrow-end": "none"
  1720. }
  1721. },
  1722. "mapper": {
  1723. "type": "code",
  1724. "value": "({\"width\":getAttr(\"width\"), \"height\":getAttr(\"height\"), \"cornerRadius\":getAttr(\"cornerRadius\"), \"style\":getAttr(\"style\")})"
  1725. },
  1726. "parser": {
  1727. "type": "code",
  1728. "value": ""
  1729. },
  1730. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  1731. "position": {
  1732. "type": "list<double>",
  1733. "value": [
  1734. 0,
  1735. 1
  1736. ]
  1737. },
  1738. "orientation": {
  1739. "type": "double",
  1740. "value": 0
  1741. },
  1742. "scale": {
  1743. "type": "list<double>",
  1744. "value": [
  1745. 1,
  1746. 1
  1747. ]
  1748. }
  1749. }
  1750. },
  1751. "edges": []
  1752. }
  1753. },
  1754. "$asuri": {
  1755. "type": "string",
  1756. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle/34.instance"
  1757. },
  1758. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/RectangleIcon"
  1759. },
  1760. "35": {
  1761. "typename": {
  1762. "type": "string",
  1763. "value": "TextIcon"
  1764. },
  1765. "position": {
  1766. "type": "list<double>",
  1767. "value": [
  1768. 188,
  1769. 316
  1770. ]
  1771. },
  1772. "orientation": {
  1773. "type": "double",
  1774. "value": 0
  1775. },
  1776. "scale": {
  1777. "type": "list<double>",
  1778. "value": [
  1779. 1,
  1780. 1
  1781. ]
  1782. },
  1783. "mapper": {
  1784. "type": "code",
  1785. "value": ""
  1786. },
  1787. "parser": {
  1788. "type": "code",
  1789. "value": ""
  1790. },
  1791. "$contents": {
  1792. "type": "map<string,*>",
  1793. "value": {
  1794. "nodes": {
  1795. "21": {
  1796. "textContent": {
  1797. "type": "string",
  1798. "value": "HTTP"
  1799. },
  1800. "style": {
  1801. "type": "map<string,string>",
  1802. "value": {
  1803. "stroke": "#ffffff",
  1804. "stroke-dasharray": "",
  1805. "fill": "#ffffff",
  1806. "fill-opacity": 1,
  1807. "font-size": "20px",
  1808. "stroke-width": 1,
  1809. "arrow-start": "none",
  1810. "arrow-end": "none"
  1811. }
  1812. },
  1813. "mapper": {
  1814. "type": "code",
  1815. "value": "({\"textContent\":getAttr(\"textContent\"), \"style\":getAttr(\"style\")})"
  1816. },
  1817. "parser": {
  1818. "type": "code",
  1819. "value": "({\"textContent\":getAttr(\"textContent\")})"
  1820. },
  1821. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  1822. "position": {
  1823. "type": "list<double>",
  1824. "value": [
  1825. 0,
  1826. 0
  1827. ]
  1828. },
  1829. "orientation": {
  1830. "type": "double",
  1831. "value": 0
  1832. },
  1833. "scale": {
  1834. "type": "list<double>",
  1835. "value": [
  1836. 1,
  1837. 1
  1838. ]
  1839. }
  1840. }
  1841. },
  1842. "edges": []
  1843. }
  1844. },
  1845. "$asuri": {
  1846. "type": "string",
  1847. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text/35.instance"
  1848. },
  1849. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/TextIcon"
  1850. },
  1851. "36": {
  1852. "link-style": {
  1853. "type": "map<string,string>",
  1854. "value": {
  1855. "stroke": "#00ffff",
  1856. "stroke-dasharray": "",
  1857. "stroke-opacity": 0.1,
  1858. "arrow-start": "none",
  1859. "arrow-end": "classic-wide-long"
  1860. }
  1861. },
  1862. "typename": {
  1863. "type": "string",
  1864. "value": "ContainLink"
  1865. },
  1866. "position": {
  1867. "type": "list<double>",
  1868. "value": [
  1869. 194.2489985080956,
  1870. 321.999
  1871. ]
  1872. },
  1873. "orientation": {
  1874. "type": "double",
  1875. "value": 0
  1876. },
  1877. "scale": {
  1878. "type": "list<double>",
  1879. "value": [
  1880. 1,
  1881. 1
  1882. ]
  1883. },
  1884. "mapper": {
  1885. "type": "code",
  1886. "value": ""
  1887. },
  1888. "parser": {
  1889. "type": "code",
  1890. "value": ""
  1891. },
  1892. "$contents": {
  1893. "type": "map<string,*>",
  1894. "value": {
  1895. "nodes": {},
  1896. "edges": []
  1897. }
  1898. },
  1899. "$asuri": {
  1900. "type": "string",
  1901. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain/36.instance"
  1902. },
  1903. "$segments": {
  1904. "type": "map<string,list<string>>",
  1905. "value": {
  1906. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/RectangleIcon/34.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/ContainLink/36.instance": "M178,313L194.25,322",
  1907. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/ContainLink/36.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/TextIcon/35.instance": "M194.31552212121778,322.0362891748284L213.4992890845558,327.9996062622156"
  1908. }
  1909. },
  1910. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/ContainLink"
  1911. },
  1912. "39": {
  1913. "typename": {
  1914. "type": "string",
  1915. "value": "RectangleIcon"
  1916. },
  1917. "position": {
  1918. "type": "list<double>",
  1919. "value": [
  1920. 677,
  1921. 251
  1922. ]
  1923. },
  1924. "orientation": {
  1925. "type": "double",
  1926. "value": 0
  1927. },
  1928. "scale": {
  1929. "type": "list<double>",
  1930. "value": [
  1931. 1,
  1932. 1
  1933. ]
  1934. },
  1935. "mapper": {
  1936. "type": "code",
  1937. "value": ""
  1938. },
  1939. "parser": {
  1940. "type": "code",
  1941. "value": ""
  1942. },
  1943. "$contents": {
  1944. "type": "map<string,*>",
  1945. "value": {
  1946. "nodes": {
  1947. "17": {
  1948. "width": {
  1949. "type": "double",
  1950. "value": 30
  1951. },
  1952. "height": {
  1953. "type": "double",
  1954. "value": 130
  1955. },
  1956. "cornerRadius": {
  1957. "type": "double",
  1958. "value": 5
  1959. },
  1960. "style": {
  1961. "type": "map<string,string>",
  1962. "value": {
  1963. "fill": "gray",
  1964. "fill-opacity": 1,
  1965. "stroke-width": 2
  1966. }
  1967. },
  1968. "mapper": {
  1969. "type": "code",
  1970. "value": "({\"width\":getAttr(\"width\"), \"height\":getAttr(\"height\"), \"cornerRadius\":getAttr(\"cornerRadius\"), \"style\":getAttr(\"style\")})"
  1971. },
  1972. "parser": {
  1973. "type": "code",
  1974. "value": ""
  1975. },
  1976. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  1977. "position": {
  1978. "type": "list<double>",
  1979. "value": [
  1980. 0,
  1981. 1
  1982. ]
  1983. },
  1984. "orientation": {
  1985. "type": "double",
  1986. "value": 0
  1987. },
  1988. "scale": {
  1989. "type": "list<double>",
  1990. "value": [
  1991. 1,
  1992. 1
  1993. ]
  1994. }
  1995. }
  1996. },
  1997. "edges": []
  1998. }
  1999. },
  2000. "$asuri": {
  2001. "type": "string",
  2002. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle/39.instance"
  2003. },
  2004. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/RectangleIcon"
  2005. },
  2006. "40": {
  2007. "typename": {
  2008. "type": "string",
  2009. "value": "RectangleIcon"
  2010. },
  2011. "position": {
  2012. "type": "list<double>",
  2013. "value": [
  2014. 633.6216928868341,
  2015. 279.564695206365
  2016. ]
  2017. },
  2018. "orientation": {
  2019. "type": "double",
  2020. "value": 314.9992527633319
  2021. },
  2022. "scale": {
  2023. "type": "list<double>",
  2024. "value": [
  2025. 0.9998772117597142,
  2026. 0.9998772117597142
  2027. ]
  2028. },
  2029. "mapper": {
  2030. "type": "code",
  2031. "value": ""
  2032. },
  2033. "parser": {
  2034. "type": "code",
  2035. "value": ""
  2036. },
  2037. "$contents": {
  2038. "type": "map<string,*>",
  2039. "value": {
  2040. "nodes": {
  2041. "17": {
  2042. "width": {
  2043. "type": "double",
  2044. "value": 30
  2045. },
  2046. "height": {
  2047. "type": "double",
  2048. "value": 130
  2049. },
  2050. "cornerRadius": {
  2051. "type": "double",
  2052. "value": 5
  2053. },
  2054. "style": {
  2055. "type": "map<string,string>",
  2056. "value": {
  2057. "fill": "gray",
  2058. "fill-opacity": 1,
  2059. "stroke-width": 2
  2060. }
  2061. },
  2062. "mapper": {
  2063. "type": "code",
  2064. "value": "({\"width\":getAttr(\"width\"), \"height\":getAttr(\"height\"), \"cornerRadius\":getAttr(\"cornerRadius\"), \"style\":getAttr(\"style\")})"
  2065. },
  2066. "parser": {
  2067. "type": "code",
  2068. "value": ""
  2069. },
  2070. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  2071. "position": {
  2072. "type": "list<double>",
  2073. "value": [
  2074. 0,
  2075. 1
  2076. ]
  2077. },
  2078. "orientation": {
  2079. "type": "double",
  2080. "value": 0
  2081. },
  2082. "scale": {
  2083. "type": "list<double>",
  2084. "value": [
  2085. 1,
  2086. 1
  2087. ]
  2088. }
  2089. }
  2090. },
  2091. "edges": []
  2092. }
  2093. },
  2094. "$asuri": {
  2095. "type": "string",
  2096. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle/40.instance"
  2097. },
  2098. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/RectangleIcon"
  2099. },
  2100. "41": {
  2101. "typename": {
  2102. "type": "string",
  2103. "value": "RectangleIcon"
  2104. },
  2105. "position": {
  2106. "type": "list<double>",
  2107. "value": [
  2108. 726.8508131560786,
  2109. 259.53068378915964
  2110. ]
  2111. },
  2112. "orientation": {
  2113. "type": "double",
  2114. "value": 45.001783569114366
  2115. },
  2116. "scale": {
  2117. "type": "list<double>",
  2118. "value": [
  2119. 0.9999014508645003,
  2120. 0.9999014508645003
  2121. ]
  2122. },
  2123. "mapper": {
  2124. "type": "code",
  2125. "value": ""
  2126. },
  2127. "parser": {
  2128. "type": "code",
  2129. "value": ""
  2130. },
  2131. "$contents": {
  2132. "type": "map<string,*>",
  2133. "value": {
  2134. "nodes": {
  2135. "17": {
  2136. "width": {
  2137. "type": "double",
  2138. "value": 30
  2139. },
  2140. "height": {
  2141. "type": "double",
  2142. "value": 130
  2143. },
  2144. "cornerRadius": {
  2145. "type": "double",
  2146. "value": 5
  2147. },
  2148. "style": {
  2149. "type": "map<string,string>",
  2150. "value": {
  2151. "fill": "gray",
  2152. "fill-opacity": 1,
  2153. "stroke-width": 2
  2154. }
  2155. },
  2156. "mapper": {
  2157. "type": "code",
  2158. "value": "({\"width\":getAttr(\"width\"), \"height\":getAttr(\"height\"), \"cornerRadius\":getAttr(\"cornerRadius\"), \"style\":getAttr(\"style\")})"
  2159. },
  2160. "parser": {
  2161. "type": "code",
  2162. "value": ""
  2163. },
  2164. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  2165. "position": {
  2166. "type": "list<double>",
  2167. "value": [
  2168. 0,
  2169. 1
  2170. ]
  2171. },
  2172. "orientation": {
  2173. "type": "double",
  2174. "value": 0
  2175. },
  2176. "scale": {
  2177. "type": "list<double>",
  2178. "value": [
  2179. 1,
  2180. 1
  2181. ]
  2182. }
  2183. }
  2184. },
  2185. "edges": []
  2186. }
  2187. },
  2188. "$asuri": {
  2189. "type": "string",
  2190. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle/41.instance"
  2191. },
  2192. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/RectangleIcon"
  2193. },
  2194. "42": {
  2195. "typename": {
  2196. "type": "string",
  2197. "value": "RectangleIcon"
  2198. },
  2199. "position": {
  2200. "type": "list<double>",
  2201. "value": [
  2202. 625,
  2203. 333
  2204. ]
  2205. },
  2206. "orientation": {
  2207. "type": "double",
  2208. "value": 270
  2209. },
  2210. "scale": {
  2211. "type": "list<double>",
  2212. "value": [
  2213. 1,
  2214. 1
  2215. ]
  2216. },
  2217. "mapper": {
  2218. "type": "code",
  2219. "value": ""
  2220. },
  2221. "parser": {
  2222. "type": "code",
  2223. "value": ""
  2224. },
  2225. "$contents": {
  2226. "type": "map<string,*>",
  2227. "value": {
  2228. "nodes": {
  2229. "17": {
  2230. "width": {
  2231. "type": "double",
  2232. "value": 30
  2233. },
  2234. "height": {
  2235. "type": "double",
  2236. "value": 130
  2237. },
  2238. "cornerRadius": {
  2239. "type": "double",
  2240. "value": 5
  2241. },
  2242. "style": {
  2243. "type": "map<string,string>",
  2244. "value": {
  2245. "fill": "gray",
  2246. "fill-opacity": 1,
  2247. "stroke-width": 2
  2248. }
  2249. },
  2250. "mapper": {
  2251. "type": "code",
  2252. "value": "({\"width\":getAttr(\"width\"), \"height\":getAttr(\"height\"), \"cornerRadius\":getAttr(\"cornerRadius\"), \"style\":getAttr(\"style\")})"
  2253. },
  2254. "parser": {
  2255. "type": "code",
  2256. "value": ""
  2257. },
  2258. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  2259. "position": {
  2260. "type": "list<double>",
  2261. "value": [
  2262. 0,
  2263. 1
  2264. ]
  2265. },
  2266. "orientation": {
  2267. "type": "double",
  2268. "value": 0
  2269. },
  2270. "scale": {
  2271. "type": "list<double>",
  2272. "value": [
  2273. 1,
  2274. 1
  2275. ]
  2276. }
  2277. }
  2278. },
  2279. "edges": []
  2280. }
  2281. },
  2282. "$asuri": {
  2283. "type": "string",
  2284. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle/42.instance"
  2285. },
  2286. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/RectangleIcon"
  2287. },
  2288. "43": {
  2289. "typename": {
  2290. "type": "string",
  2291. "value": "CircleIcon"
  2292. },
  2293. "position": {
  2294. "type": "list<double>",
  2295. "value": [
  2296. 644,
  2297. 270
  2298. ]
  2299. },
  2300. "orientation": {
  2301. "type": "double",
  2302. "value": 0
  2303. },
  2304. "scale": {
  2305. "type": "list<double>",
  2306. "value": [
  2307. 1,
  2308. 1
  2309. ]
  2310. },
  2311. "mapper": {
  2312. "type": "code",
  2313. "value": ""
  2314. },
  2315. "parser": {
  2316. "type": "code",
  2317. "value": ""
  2318. },
  2319. "$contents": {
  2320. "type": "map<string,*>",
  2321. "value": {
  2322. "nodes": {
  2323. "31": {
  2324. "r": {
  2325. "type": "double",
  2326. "value": 47
  2327. },
  2328. "style": {
  2329. "type": "map<string,string>",
  2330. "value": {
  2331. "fill": "gray",
  2332. "stroke": "gray",
  2333. "fill-opacity": 1,
  2334. "stroke-width": 2
  2335. }
  2336. },
  2337. "mapper": {
  2338. "type": "code",
  2339. "value": "({\"r\":getAttr(\"r\"), \"style\":getAttr(\"style\")})"
  2340. },
  2341. "parser": {
  2342. "type": "code",
  2343. "value": ""
  2344. },
  2345. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  2346. "position": {
  2347. "type": "list<double>",
  2348. "value": [
  2349. 0,
  2350. 0
  2351. ]
  2352. },
  2353. "orientation": {
  2354. "type": "double",
  2355. "value": 0
  2356. },
  2357. "scale": {
  2358. "type": "list<double>",
  2359. "value": [
  2360. 1,
  2361. 1
  2362. ]
  2363. }
  2364. }
  2365. },
  2366. "edges": []
  2367. }
  2368. },
  2369. "$asuri": {
  2370. "type": "string",
  2371. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle/43.instance"
  2372. },
  2373. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/CircleIcon"
  2374. },
  2375. "44": {
  2376. "typename": {
  2377. "type": "string",
  2378. "value": "CircleIcon"
  2379. },
  2380. "position": {
  2381. "type": "list<double>",
  2382. "value": [
  2383. 672,
  2384. 297
  2385. ]
  2386. },
  2387. "orientation": {
  2388. "type": "double",
  2389. "value": 0
  2390. },
  2391. "scale": {
  2392. "type": "list<double>",
  2393. "value": [
  2394. 1,
  2395. 1
  2396. ]
  2397. },
  2398. "mapper": {
  2399. "type": "code",
  2400. "value": ""
  2401. },
  2402. "parser": {
  2403. "type": "code",
  2404. "value": ""
  2405. },
  2406. "$contents": {
  2407. "type": "map<string,*>",
  2408. "value": {
  2409. "nodes": {
  2410. "31": {
  2411. "r": {
  2412. "type": "double",
  2413. "value": 20
  2414. },
  2415. "style": {
  2416. "type": "map<string,string>",
  2417. "value": {
  2418. "fill": "white",
  2419. "fill-opacity": 1,
  2420. "stroke-width": 2
  2421. }
  2422. },
  2423. "mapper": {
  2424. "type": "code",
  2425. "value": "({\"r\":getAttr(\"r\"), \"style\":getAttr(\"style\")})"
  2426. },
  2427. "parser": {
  2428. "type": "code",
  2429. "value": ""
  2430. },
  2431. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  2432. "position": {
  2433. "type": "list<double>",
  2434. "value": [
  2435. 0,
  2436. 0
  2437. ]
  2438. },
  2439. "orientation": {
  2440. "type": "double",
  2441. "value": 0
  2442. },
  2443. "scale": {
  2444. "type": "list<double>",
  2445. "value": [
  2446. 1,
  2447. 1
  2448. ]
  2449. }
  2450. }
  2451. },
  2452. "edges": []
  2453. }
  2454. },
  2455. "$asuri": {
  2456. "type": "string",
  2457. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle/44.instance"
  2458. },
  2459. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/CircleIcon"
  2460. },
  2461. "46": {
  2462. "link-style": {
  2463. "type": "map<string,string>",
  2464. "value": {
  2465. "stroke": "#ff00ff",
  2466. "stroke-dasharray": "",
  2467. "stroke-opacity": 0.1,
  2468. "arrow-start": "none",
  2469. "arrow-end": "classic-wide-long"
  2470. }
  2471. },
  2472. "typename": {
  2473. "type": "string",
  2474. "value": "IconContentsLink"
  2475. },
  2476. "position": {
  2477. "type": "list<double>",
  2478. "value": [
  2479. "152.5,50%",
  2480. "238,50%"
  2481. ]
  2482. },
  2483. "orientation": {
  2484. "type": "double",
  2485. "value": 0
  2486. },
  2487. "scale": {
  2488. "type": "list<double>",
  2489. "value": [
  2490. 1,
  2491. 1
  2492. ]
  2493. },
  2494. "mapper": {
  2495. "type": "code",
  2496. "value": ""
  2497. },
  2498. "parser": {
  2499. "type": "code",
  2500. "value": ""
  2501. },
  2502. "$contents": {
  2503. "type": "map<string,*>",
  2504. "value": {
  2505. "nodes": {},
  2506. "edges": []
  2507. }
  2508. },
  2509. "$asuri": {
  2510. "type": "string",
  2511. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents/46.instance"
  2512. },
  2513. "$segments": {
  2514. "type": "map<string,list<string>>",
  2515. "value": {
  2516. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconIcon/0.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/46.instance": "M125,200L152.5,238",
  2517. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/46.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/EllipseIcon/2.instance": "M152.54425943497543,238.06115849196604L179.99980936325537,275.9997365746801"
  2518. }
  2519. },
  2520. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink"
  2521. },
  2522. "47": {
  2523. "link-style": {
  2524. "type": "map<string,string>",
  2525. "value": {
  2526. "stroke": "#ff00ff",
  2527. "stroke-dasharray": "",
  2528. "stroke-opacity": 0.1,
  2529. "arrow-start": "none",
  2530. "arrow-end": "classic-wide-long"
  2531. }
  2532. },
  2533. "typename": {
  2534. "type": "string",
  2535. "value": "IconContentsLink"
  2536. },
  2537. "position": {
  2538. "type": "list<double>",
  2539. "value": [
  2540. "145.649998810232,50%",
  2541. "202.5182925378332,50%"
  2542. ]
  2543. },
  2544. "orientation": {
  2545. "type": "double",
  2546. "value": 0
  2547. },
  2548. "scale": {
  2549. "type": "list<double>",
  2550. "value": [
  2551. 1,
  2552. 1
  2553. ]
  2554. },
  2555. "mapper": {
  2556. "type": "code",
  2557. "value": ""
  2558. },
  2559. "parser": {
  2560. "type": "code",
  2561. "value": ""
  2562. },
  2563. "$contents": {
  2564. "type": "map<string,*>",
  2565. "value": {
  2566. "nodes": {},
  2567. "edges": []
  2568. }
  2569. },
  2570. "$asuri": {
  2571. "type": "string",
  2572. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents/47.instance"
  2573. },
  2574. "$segments": {
  2575. "type": "map<string,list<string>>",
  2576. "value": {
  2577. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconIcon/0.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/47.instance": "M125,200L145.649998810232,202.5182925378332",
  2578. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/47.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/CircleIcon/19.instance": "M145.57463399978627,202.509101707291L165.99926948245093,204.999910912494"
  2579. }
  2580. },
  2581. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink"
  2582. },
  2583. "48": {
  2584. "link-style": {
  2585. "type": "map<string,string>",
  2586. "value": {
  2587. "stroke": "#ff00ff",
  2588. "stroke-dasharray": "",
  2589. "stroke-opacity": 0.1,
  2590. "arrow-start": "none",
  2591. "arrow-end": "classic-wide-long"
  2592. }
  2593. },
  2594. "typename": {
  2595. "type": "string",
  2596. "value": "IconContentsLink"
  2597. },
  2598. "position": {
  2599. "type": "list<double>",
  2600. "value": [
  2601. "147.39510778129366,50%",
  2602. "206.03913018821405,50%"
  2603. ]
  2604. },
  2605. "orientation": {
  2606. "type": "double",
  2607. "value": 0
  2608. },
  2609. "scale": {
  2610. "type": "list<double>",
  2611. "value": [
  2612. 1,
  2613. 1
  2614. ]
  2615. },
  2616. "mapper": {
  2617. "type": "code",
  2618. "value": ""
  2619. },
  2620. "parser": {
  2621. "type": "code",
  2622. "value": ""
  2623. },
  2624. "$contents": {
  2625. "type": "map<string,*>",
  2626. "value": {
  2627. "nodes": {},
  2628. "edges": []
  2629. }
  2630. },
  2631. "$asuri": {
  2632. "type": "string",
  2633. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents/48.instance"
  2634. },
  2635. "$segments": {
  2636. "type": "map<string,list<string>>",
  2637. "value": {
  2638. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconIcon/0.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/48.instance": "M125,200L147.39510778129366,206.03913018821405",
  2639. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/48.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/PathIcon/18.instance": "M147.3222387813294,206.01948012080794L169.4993700069861,211.99983011424342"
  2640. }
  2641. },
  2642. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink"
  2643. },
  2644. "49": {
  2645. "link-style": {
  2646. "type": "map<string,string>",
  2647. "value": {
  2648. "stroke": "#ff00ff",
  2649. "stroke-dasharray": "",
  2650. "stroke-opacity": 0.1,
  2651. "arrow-start": "none",
  2652. "arrow-end": "classic-wide-long"
  2653. }
  2654. },
  2655. "typename": {
  2656. "type": "string",
  2657. "value": "IconContentsLink"
  2658. },
  2659. "position": {
  2660. "type": "list<double>",
  2661. "value": [
  2662. "157.2279042886193,50%",
  2663. "205.93193621112405,50%"
  2664. ]
  2665. },
  2666. "orientation": {
  2667. "type": "double",
  2668. "value": 0
  2669. },
  2670. "scale": {
  2671. "type": "list<double>",
  2672. "value": [
  2673. 1,
  2674. 1
  2675. ]
  2676. },
  2677. "mapper": {
  2678. "type": "code",
  2679. "value": ""
  2680. },
  2681. "parser": {
  2682. "type": "code",
  2683. "value": ""
  2684. },
  2685. "$contents": {
  2686. "type": "map<string,*>",
  2687. "value": {
  2688. "nodes": {},
  2689. "edges": []
  2690. }
  2691. },
  2692. "$asuri": {
  2693. "type": "string",
  2694. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents/49.instance"
  2695. },
  2696. "$segments": {
  2697. "type": "map<string,list<string>>",
  2698. "value": {
  2699. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconIcon/0.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/49.instance": "M125,200L157.2279042886193,205.93193621112405",
  2700. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/49.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/PathIcon/16.instance": "M157.30204748011275,205.9455831637304L189.4553513722678,211.8637882681344"
  2701. }
  2702. },
  2703. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink"
  2704. },
  2705. "50": {
  2706. "link-style": {
  2707. "type": "map<string,string>",
  2708. "value": {
  2709. "stroke": "#ff00ff",
  2710. "stroke-dasharray": "",
  2711. "stroke-opacity": 0.1,
  2712. "arrow-start": "none",
  2713. "arrow-end": "classic-wide-long"
  2714. }
  2715. },
  2716. "typename": {
  2717. "type": "string",
  2718. "value": "IconContentsLink"
  2719. },
  2720. "position": {
  2721. "type": "list<double>",
  2722. "value": [
  2723. "159.18100459561083,50%",
  2724. "202.46963405330104,50%"
  2725. ]
  2726. },
  2727. "orientation": {
  2728. "type": "double",
  2729. "value": 0
  2730. },
  2731. "scale": {
  2732. "type": "list<double>",
  2733. "value": [
  2734. 1,
  2735. 1
  2736. ]
  2737. },
  2738. "mapper": {
  2739. "type": "code",
  2740. "value": ""
  2741. },
  2742. "parser": {
  2743. "type": "code",
  2744. "value": ""
  2745. },
  2746. "$contents": {
  2747. "type": "map<string,*>",
  2748. "value": {
  2749. "nodes": {},
  2750. "edges": []
  2751. }
  2752. },
  2753. "$asuri": {
  2754. "type": "string",
  2755. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents/50.instance"
  2756. },
  2757. "$segments": {
  2758. "type": "map<string,list<string>>",
  2759. "value": {
  2760. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconIcon/0.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/50.instance": "M125,200L159.18100459561083,202.46963405330104",
  2761. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/50.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/CircleIcon/15.instance": "M159.10571609334696,202.46419433462648L193.0612965408204,204.91754112079593"
  2762. }
  2763. },
  2764. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink"
  2765. },
  2766. "51": {
  2767. "link-style": {
  2768. "type": "map<string,string>",
  2769. "value": {
  2770. "stroke": "#ff00ff",
  2771. "stroke-dasharray": "",
  2772. "stroke-opacity": 0.1,
  2773. "arrow-start": "none",
  2774. "arrow-end": "classic-wide-long"
  2775. }
  2776. },
  2777. "typename": {
  2778. "type": "string",
  2779. "value": "IconContentsLink"
  2780. },
  2781. "position": {
  2782. "type": "list<double>",
  2783. "value": [
  2784. "152,50%",
  2785. "217.5,50%"
  2786. ]
  2787. },
  2788. "orientation": {
  2789. "type": "double",
  2790. "value": 0
  2791. },
  2792. "scale": {
  2793. "type": "list<double>",
  2794. "value": [
  2795. 1,
  2796. 1
  2797. ]
  2798. },
  2799. "mapper": {
  2800. "type": "code",
  2801. "value": ""
  2802. },
  2803. "parser": {
  2804. "type": "code",
  2805. "value": ""
  2806. },
  2807. "$contents": {
  2808. "type": "map<string,*>",
  2809. "value": {
  2810. "nodes": {},
  2811. "edges": []
  2812. }
  2813. },
  2814. "$asuri": {
  2815. "type": "string",
  2816. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents/51.instance"
  2817. },
  2818. "$segments": {
  2819. "type": "map<string,list<string>>",
  2820. "value": {
  2821. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconIcon/0.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/51.instance": "M125,200L152,217.5",
  2822. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/51.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/CircleIcon/3.instance": "M152.06308344507664,217.5408874181052L178.99960490417482,234.99974391937255"
  2823. }
  2824. },
  2825. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink"
  2826. },
  2827. "52": {
  2828. "link-style": {
  2829. "type": "map<string,string>",
  2830. "value": {
  2831. "stroke": "#ff00ff",
  2832. "stroke-dasharray": "",
  2833. "stroke-opacity": 0.1,
  2834. "arrow-start": "none",
  2835. "arrow-end": "classic-wide-long"
  2836. }
  2837. },
  2838. "typename": {
  2839. "type": "string",
  2840. "value": "IconContentsLink"
  2841. },
  2842. "position": {
  2843. "type": "list<double>",
  2844. "value": [
  2845. "132.7544922610599,50%",
  2846. "242.54900000071376,50%"
  2847. ]
  2848. },
  2849. "orientation": {
  2850. "type": "double",
  2851. "value": 0
  2852. },
  2853. "scale": {
  2854. "type": "list<double>",
  2855. "value": [
  2856. 1,
  2857. 1
  2858. ]
  2859. },
  2860. "mapper": {
  2861. "type": "code",
  2862. "value": ""
  2863. },
  2864. "parser": {
  2865. "type": "code",
  2866. "value": ""
  2867. },
  2868. "$contents": {
  2869. "type": "map<string,*>",
  2870. "value": {
  2871. "nodes": {},
  2872. "edges": []
  2873. }
  2874. },
  2875. "$asuri": {
  2876. "type": "string",
  2877. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents/52.instance"
  2878. },
  2879. "$segments": {
  2880. "type": "map<string,list<string>>",
  2881. "value": {
  2882. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconIcon/0.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/52.instance": "M125,200L132.7544922610599,242.54900000071376",
  2883. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/52.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/RectangleIcon/20.instance": "M132.76798607807308,242.62304075035587L140.50892166261985,285.0976550905329"
  2884. }
  2885. },
  2886. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink"
  2887. },
  2888. "53": {
  2889. "link-style": {
  2890. "type": "map<string,string>",
  2891. "value": {
  2892. "stroke": "#ff00ff",
  2893. "stroke-dasharray": "",
  2894. "stroke-opacity": 0.1,
  2895. "arrow-start": "none",
  2896. "arrow-end": "classic-wide-long"
  2897. }
  2898. },
  2899. "typename": {
  2900. "type": "string",
  2901. "value": "IconContentsLink"
  2902. },
  2903. "position": {
  2904. "type": "list<double>",
  2905. "value": [
  2906. "134.1743026872531,50%",
  2907. "229.20954159752517,50%"
  2908. ]
  2909. },
  2910. "orientation": {
  2911. "type": "double",
  2912. "value": 0
  2913. },
  2914. "scale": {
  2915. "type": "list<double>",
  2916. "value": [
  2917. 1,
  2918. 1
  2919. ]
  2920. },
  2921. "mapper": {
  2922. "type": "code",
  2923. "value": ""
  2924. },
  2925. "parser": {
  2926. "type": "code",
  2927. "value": ""
  2928. },
  2929. "$contents": {
  2930. "type": "map<string,*>",
  2931. "value": {
  2932. "nodes": {},
  2933. "edges": []
  2934. }
  2935. },
  2936. "$asuri": {
  2937. "type": "string",
  2938. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents/53.instance"
  2939. },
  2940. "$segments": {
  2941. "type": "map<string,list<string>>",
  2942. "value": {
  2943. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconIcon/0.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/53.instance": "M125,200L134.1743026872531,229.20954159752517",
  2944. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/53.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/RectangleIcon/21.instance": "M134.15140511432253,229.1366393147253L143.25716714174288,258.12795819573944"
  2945. }
  2946. },
  2947. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink"
  2948. },
  2949. "54": {
  2950. "link-style": {
  2951. "type": "map<string,string>",
  2952. "value": {
  2953. "stroke": "#ff00ff",
  2954. "stroke-dasharray": "",
  2955. "stroke-opacity": 0.1,
  2956. "arrow-start": "none",
  2957. "arrow-end": "classic-wide-long"
  2958. }
  2959. },
  2960. "typename": {
  2961. "type": "string",
  2962. "value": "IconContentsLink"
  2963. },
  2964. "position": {
  2965. "type": "list<double>",
  2966. "value": [
  2967. "134.4227727722048,50%",
  2968. "249.85502047608333,50%"
  2969. ]
  2970. },
  2971. "orientation": {
  2972. "type": "double",
  2973. "value": 0
  2974. },
  2975. "scale": {
  2976. "type": "list<double>",
  2977. "value": [
  2978. 1,
  2979. 1
  2980. ]
  2981. },
  2982. "mapper": {
  2983. "type": "code",
  2984. "value": ""
  2985. },
  2986. "parser": {
  2987. "type": "code",
  2988. "value": ""
  2989. },
  2990. "$contents": {
  2991. "type": "map<string,*>",
  2992. "value": {
  2993. "nodes": {},
  2994. "edges": []
  2995. }
  2996. },
  2997. "$asuri": {
  2998. "type": "string",
  2999. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents/54.instance"
  3000. },
  3001. "$segments": {
  3002. "type": "map<string,list<string>>",
  3003. "value": {
  3004. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconIcon/0.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/54.instance": "M125,200L134.4227727722048,249.85502047608333",
  3005. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/54.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/RectangleIcon/22.instance": "M134.40879240173112,249.78105162709602L143.78967930267717,299.41445782681444"
  3006. }
  3007. },
  3008. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink"
  3009. },
  3010. "55": {
  3011. "link-style": {
  3012. "type": "map<string,string>",
  3013. "value": {
  3014. "stroke": "#ff00ff",
  3015. "stroke-dasharray": "",
  3016. "stroke-opacity": 0.1,
  3017. "arrow-start": "none",
  3018. "arrow-end": "classic-wide-long"
  3019. }
  3020. },
  3021. "typename": {
  3022. "type": "string",
  3023. "value": "IconContentsLink"
  3024. },
  3025. "position": {
  3026. "type": "list<double>",
  3027. "value": [
  3028. "132.7544922610599,50%",
  3029. "236.04900000071376,50%"
  3030. ]
  3031. },
  3032. "orientation": {
  3033. "type": "double",
  3034. "value": 0
  3035. },
  3036. "scale": {
  3037. "type": "list<double>",
  3038. "value": [
  3039. 1,
  3040. 1
  3041. ]
  3042. },
  3043. "mapper": {
  3044. "type": "code",
  3045. "value": ""
  3046. },
  3047. "parser": {
  3048. "type": "code",
  3049. "value": ""
  3050. },
  3051. "$contents": {
  3052. "type": "map<string,*>",
  3053. "value": {
  3054. "nodes": {},
  3055. "edges": []
  3056. }
  3057. },
  3058. "$asuri": {
  3059. "type": "string",
  3060. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents/55.instance"
  3061. },
  3062. "$segments": {
  3063. "type": "map<string,list<string>>",
  3064. "value": {
  3065. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconIcon/0.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/55.instance": "M125,200L132.7544922610599,236.04900000071376",
  3066. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/55.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/RectangleIcon/23.instance": "M132.77038248489424,236.12287030191862L140.50889729287758,272.0975944910668"
  3067. }
  3068. },
  3069. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink"
  3070. },
  3071. "56": {
  3072. "link-style": {
  3073. "type": "map<string,string>",
  3074. "value": {
  3075. "stroke": "#ff00ff",
  3076. "stroke-dasharray": "",
  3077. "stroke-opacity": 0.1,
  3078. "arrow-start": "none",
  3079. "arrow-end": "classic-wide-long"
  3080. }
  3081. },
  3082. "typename": {
  3083. "type": "string",
  3084. "value": "IconContentsLink"
  3085. },
  3086. "position": {
  3087. "type": "list<double>",
  3088. "value": [
  3089. "168.97930306561346,50%",
  3090. "250.64138541344602,50%"
  3091. ]
  3092. },
  3093. "orientation": {
  3094. "type": "double",
  3095. "value": 0
  3096. },
  3097. "scale": {
  3098. "type": "list<double>",
  3099. "value": [
  3100. 1,
  3101. 1
  3102. ]
  3103. },
  3104. "mapper": {
  3105. "type": "code",
  3106. "value": ""
  3107. },
  3108. "parser": {
  3109. "type": "code",
  3110. "value": ""
  3111. },
  3112. "$contents": {
  3113. "type": "map<string,*>",
  3114. "value": {
  3115. "nodes": {},
  3116. "edges": []
  3117. }
  3118. },
  3119. "$asuri": {
  3120. "type": "string",
  3121. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents/56.instance"
  3122. },
  3123. "$segments": {
  3124. "type": "map<string,list<string>>",
  3125. "value": {
  3126. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconIcon/0.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/56.instance": "M125,200L168.97930306561346,250.64138541344602",
  3127. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/56.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/RectangleIcon/24.instance": "M168.97900538755795,250.64104264245856L212.7600551666163,301.0541429218964"
  3128. }
  3129. },
  3130. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink"
  3131. },
  3132. "57": {
  3133. "link-style": {
  3134. "type": "map<string,string>",
  3135. "value": {
  3136. "stroke": "#ff00ff",
  3137. "stroke-dasharray": "",
  3138. "stroke-opacity": 0.1,
  3139. "arrow-start": "none",
  3140. "arrow-end": "classic-wide-long"
  3141. }
  3142. },
  3143. "typename": {
  3144. "type": "string",
  3145. "value": "IconContentsLink"
  3146. },
  3147. "position": {
  3148. "type": "list<double>",
  3149. "value": [
  3150. "170.74082299620187,50%",
  3151. "229.46588276984437,50%"
  3152. ]
  3153. },
  3154. "orientation": {
  3155. "type": "double",
  3156. "value": 0
  3157. },
  3158. "scale": {
  3159. "type": "list<double>",
  3160. "value": [
  3161. 1,
  3162. 1
  3163. ]
  3164. },
  3165. "mapper": {
  3166. "type": "code",
  3167. "value": ""
  3168. },
  3169. "parser": {
  3170. "type": "code",
  3171. "value": ""
  3172. },
  3173. "$contents": {
  3174. "type": "map<string,*>",
  3175. "value": {
  3176. "nodes": {},
  3177. "edges": []
  3178. }
  3179. },
  3180. "$asuri": {
  3181. "type": "string",
  3182. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents/57.instance"
  3183. },
  3184. "$segments": {
  3185. "type": "map<string,list<string>>",
  3186. "value": {
  3187. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconIcon/0.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/57.instance": "M125,200L170.74082299620187,229.46588276984437",
  3188. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/57.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/RectangleIcon/25.instance": "M170.67735286213812,229.42499580264084L216.22800002384813,258.768368777564"
  3189. }
  3190. },
  3191. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink"
  3192. },
  3193. "58": {
  3194. "link-style": {
  3195. "type": "map<string,string>",
  3196. "value": {
  3197. "stroke": "#ff00ff",
  3198. "stroke-dasharray": "",
  3199. "stroke-opacity": 0.1,
  3200. "arrow-start": "none",
  3201. "arrow-end": "classic-wide-long"
  3202. }
  3203. },
  3204. "typename": {
  3205. "type": "string",
  3206. "value": "IconContentsLink"
  3207. },
  3208. "position": {
  3209. "type": "list<double>",
  3210. "value": [
  3211. "171.2544922610599,50%",
  3212. "243.54263491896234,50%"
  3213. ]
  3214. },
  3215. "orientation": {
  3216. "type": "double",
  3217. "value": 0
  3218. },
  3219. "scale": {
  3220. "type": "list<double>",
  3221. "value": [
  3222. 1,
  3223. 1
  3224. ]
  3225. },
  3226. "mapper": {
  3227. "type": "code",
  3228. "value": ""
  3229. },
  3230. "parser": {
  3231. "type": "code",
  3232. "value": ""
  3233. },
  3234. "$contents": {
  3235. "type": "map<string,*>",
  3236. "value": {
  3237. "nodes": {},
  3238. "edges": []
  3239. }
  3240. },
  3241. "$asuri": {
  3242. "type": "string",
  3243. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents/58.instance"
  3244. },
  3245. "$segments": {
  3246. "type": "map<string,list<string>>",
  3247. "value": {
  3248. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconIcon/0.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/58.instance": "M125,200L171.2544922610599,243.54263491896234",
  3249. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/58.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/RectangleIcon/26.instance": "M171.3634106176203,243.64516749480202L217.50829697648976,287.0846226024477"
  3250. }
  3251. },
  3252. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink"
  3253. },
  3254. "59": {
  3255. "link-style": {
  3256. "type": "map<string,string>",
  3257. "value": {
  3258. "stroke": "#ff00ff",
  3259. "stroke-dasharray": "",
  3260. "stroke-opacity": 0.1,
  3261. "arrow-start": "none",
  3262. "arrow-end": "classic-wide-long"
  3263. }
  3264. },
  3265. "typename": {
  3266. "type": "string",
  3267. "value": "IconContentsLink"
  3268. },
  3269. "position": {
  3270. "type": "list<double>",
  3271. "value": [
  3272. "171.2544922610599,50%",
  3273. "237.04263491896234,50%"
  3274. ]
  3275. },
  3276. "orientation": {
  3277. "type": "double",
  3278. "value": 0
  3279. },
  3280. "scale": {
  3281. "type": "list<double>",
  3282. "value": [
  3283. 1,
  3284. 1
  3285. ]
  3286. },
  3287. "mapper": {
  3288. "type": "code",
  3289. "value": ""
  3290. },
  3291. "parser": {
  3292. "type": "code",
  3293. "value": ""
  3294. },
  3295. "$contents": {
  3296. "type": "map<string,*>",
  3297. "value": {
  3298. "nodes": {},
  3299. "edges": []
  3300. }
  3301. },
  3302. "$asuri": {
  3303. "type": "string",
  3304. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents/59.instance"
  3305. },
  3306. "$segments": {
  3307. "type": "map<string,list<string>>",
  3308. "value": {
  3309. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconIcon/0.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/59.instance": "M125,200L171.2544922610599,237.04263491896234",
  3310. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/59.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/RectangleIcon/27.instance": "M171.3131906726697,237.08964319265198L217.5087853191906,274.08511030744404"
  3311. }
  3312. },
  3313. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink"
  3314. },
  3315. "60": {
  3316. "link-style": {
  3317. "type": "map<string,string>",
  3318. "value": {
  3319. "stroke": "#ff00ff",
  3320. "stroke-dasharray": "",
  3321. "stroke-opacity": 0.1,
  3322. "arrow-start": "none",
  3323. "arrow-end": "classic-wide-long"
  3324. }
  3325. },
  3326. "typename": {
  3327. "type": "string",
  3328. "value": "IconContentsLink"
  3329. },
  3330. "position": {
  3331. "type": "list<double>",
  3332. "value": [
  3333. "169.08516124305996,50%",
  3334. "264.1238708989963,50%"
  3335. ]
  3336. },
  3337. "orientation": {
  3338. "type": "double",
  3339. "value": 0
  3340. },
  3341. "scale": {
  3342. "type": "list<double>",
  3343. "value": [
  3344. 1,
  3345. 1
  3346. ]
  3347. },
  3348. "mapper": {
  3349. "type": "code",
  3350. "value": ""
  3351. },
  3352. "parser": {
  3353. "type": "code",
  3354. "value": ""
  3355. },
  3356. "$contents": {
  3357. "type": "map<string,*>",
  3358. "value": {
  3359. "nodes": {},
  3360. "edges": []
  3361. }
  3362. },
  3363. "$asuri": {
  3364. "type": "string",
  3365. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents/60.instance"
  3366. },
  3367. "$segments": {
  3368. "type": "map<string,list<string>>",
  3369. "value": {
  3370. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconIcon/0.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/60.instance": "M125,200L169.08516124305996,264.1238708989963",
  3371. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/60.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/RectangleIcon/34.instance": "M169.08494147235314,264.1235512325137L212.99956083595714,327.99936121593765"
  3372. }
  3373. },
  3374. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink"
  3375. },
  3376. "61": {
  3377. "link-style": {
  3378. "type": "map<string,string>",
  3379. "value": {
  3380. "stroke": "#ff00ff",
  3381. "stroke-dasharray": "",
  3382. "stroke-opacity": 0.1,
  3383. "arrow-start": "none",
  3384. "arrow-end": "classic-wide-long"
  3385. }
  3386. },
  3387. "typename": {
  3388. "type": "string",
  3389. "value": "IconContentsLink"
  3390. },
  3391. "position": {
  3392. "type": "list<double>",
  3393. "value": [
  3394. "169.25,50%",
  3395. "264,50%"
  3396. ]
  3397. },
  3398. "orientation": {
  3399. "type": "double",
  3400. "value": 0
  3401. },
  3402. "scale": {
  3403. "type": "list<double>",
  3404. "value": [
  3405. 1,
  3406. 1
  3407. ]
  3408. },
  3409. "mapper": {
  3410. "type": "code",
  3411. "value": ""
  3412. },
  3413. "parser": {
  3414. "type": "code",
  3415. "value": ""
  3416. },
  3417. "$contents": {
  3418. "type": "map<string,*>",
  3419. "value": {
  3420. "nodes": {},
  3421. "edges": []
  3422. }
  3423. },
  3424. "$asuri": {
  3425. "type": "string",
  3426. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents/61.instance"
  3427. },
  3428. "$segments": {
  3429. "type": "map<string,list<string>>",
  3430. "value": {
  3431. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconIcon/0.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/61.instance": "M125,200L169.25,264",
  3432. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/61.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/TextIcon/35.instance": "M169.33542409435512,264.1235512325137L213.4995583407069,327.99936121593765"
  3433. }
  3434. },
  3435. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink"
  3436. },
  3437. "62": {
  3438. "link-style": {
  3439. "type": "map<string,string>",
  3440. "value": {
  3441. "stroke": "#ff00ff",
  3442. "stroke-dasharray": "",
  3443. "stroke-opacity": 0.1,
  3444. "arrow-start": "none",
  3445. "arrow-end": "classic-wide-long"
  3446. }
  3447. },
  3448. "typename": {
  3449. "type": "string",
  3450. "value": "IconContentsLink"
  3451. },
  3452. "position": {
  3453. "type": "list<double>",
  3454. "value": [
  3455. "159.6244992540478,50%",
  3456. "260.9995,50%"
  3457. ]
  3458. },
  3459. "orientation": {
  3460. "type": "double",
  3461. "value": 0
  3462. },
  3463. "scale": {
  3464. "type": "list<double>",
  3465. "value": [
  3466. 1,
  3467. 1
  3468. ]
  3469. },
  3470. "mapper": {
  3471. "type": "code",
  3472. "value": ""
  3473. },
  3474. "parser": {
  3475. "type": "code",
  3476. "value": ""
  3477. },
  3478. "$contents": {
  3479. "type": "map<string,*>",
  3480. "value": {
  3481. "nodes": {},
  3482. "edges": []
  3483. }
  3484. },
  3485. "$asuri": {
  3486. "type": "string",
  3487. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents/62.instance"
  3488. },
  3489. "$segments": {
  3490. "type": "map<string,list<string>>",
  3491. "value": {
  3492. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconIcon/0.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/62.instance": "M125,200L159.6244992540478,260.9995",
  3493. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/62.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/ContainLink/36.instance": "M159.69848257282044,261.1298396597986L194.24857493841958,321.9982537787114"
  3494. }
  3495. },
  3496. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink"
  3497. },
  3498. "63": {
  3499. "link-style": {
  3500. "type": "map<string,string>",
  3501. "value": {
  3502. "stroke": "#ff00ff",
  3503. "stroke-dasharray": "",
  3504. "stroke-opacity": 0.1,
  3505. "arrow-start": "none",
  3506. "arrow-end": "classic-wide-long"
  3507. }
  3508. },
  3509. "typename": {
  3510. "type": "string",
  3511. "value": "IconContentsLink"
  3512. },
  3513. "position": {
  3514. "type": "list<double>",
  3515. "value": [
  3516. 659.1054499568926,
  3517. 284.105451448797
  3518. ]
  3519. },
  3520. "orientation": {
  3521. "type": "double",
  3522. "value": 0
  3523. },
  3524. "scale": {
  3525. "type": "list<double>",
  3526. "value": [
  3527. 1,
  3528. 1
  3529. ]
  3530. },
  3531. "mapper": {
  3532. "type": "code",
  3533. "value": ""
  3534. },
  3535. "parser": {
  3536. "type": "code",
  3537. "value": ""
  3538. },
  3539. "$contents": {
  3540. "type": "map<string,*>",
  3541. "value": {
  3542. "nodes": {},
  3543. "edges": []
  3544. }
  3545. },
  3546. "$asuri": {
  3547. "type": "string",
  3548. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents/63.instance"
  3549. },
  3550. "$segments": {
  3551. "type": "map<string,list<string>>",
  3552. "value": {
  3553. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconIcon/1.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/63.instance": "M626,251.00000000000003L659.106451448797,284.106451448797",
  3554. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/63.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/RectangleIcon/39.instance": "M659.0531113219704,284.0531113219705L691.9997712359063,316.99977123590645"
  3555. }
  3556. },
  3557. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink"
  3558. },
  3559. "64": {
  3560. "link-style": {
  3561. "type": "map<string,string>",
  3562. "value": {
  3563. "stroke": "#ff00ff",
  3564. "stroke-dasharray": "",
  3565. "stroke-opacity": 0.1,
  3566. "arrow-start": "none",
  3567. "arrow-end": "classic-wide-long"
  3568. }
  3569. },
  3570. "typename": {
  3571. "type": "string",
  3572. "value": "IconContentsLink"
  3573. },
  3574. "position": {
  3575. "type": "list<double>",
  3576. "value": [
  3577. 658.5513509773992,
  3578. 283.4165026042475
  3579. ]
  3580. },
  3581. "orientation": {
  3582. "type": "double",
  3583. "value": 0
  3584. },
  3585. "scale": {
  3586. "type": "list<double>",
  3587. "value": [
  3588. 1,
  3589. 1
  3590. ]
  3591. },
  3592. "mapper": {
  3593. "type": "code",
  3594. "value": ""
  3595. },
  3596. "parser": {
  3597. "type": "code",
  3598. "value": ""
  3599. },
  3600. "$contents": {
  3601. "type": "map<string,*>",
  3602. "value": {
  3603. "nodes": {},
  3604. "edges": []
  3605. }
  3606. },
  3607. "$asuri": {
  3608. "type": "string",
  3609. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents/64.instance"
  3610. },
  3611. "$segments": {
  3612. "type": "map<string,list<string>>",
  3613. "value": {
  3614. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconIcon/1.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/64.instance": "M626,251.00000000000003L658.5523524693037,283.4175026042475",
  3615. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/64.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/RectangleIcon/40.instance": "M658.4987536667875,283.36412583764377L690.8905447249936,315.62173216504596"
  3616. }
  3617. },
  3618. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink"
  3619. },
  3620. "65": {
  3621. "link-style": {
  3622. "type": "map<string,string>",
  3623. "value": {
  3624. "stroke": "#ff00ff",
  3625. "stroke-dasharray": "",
  3626. "stroke-opacity": 0.1,
  3627. "arrow-start": "none",
  3628. "arrow-end": "classic-wide-long"
  3629. }
  3630. },
  3631. "typename": {
  3632. "type": "string",
  3633. "value": "IconContentsLink"
  3634. },
  3635. "position": {
  3636. "type": "list<double>",
  3637. "value": [
  3638. 659.3940677669171,
  3639. 284.39878303403685
  3640. ]
  3641. },
  3642. "orientation": {
  3643. "type": "double",
  3644. "value": 0
  3645. },
  3646. "scale": {
  3647. "type": "list<double>",
  3648. "value": [
  3649. 1,
  3650. 1
  3651. ]
  3652. },
  3653. "mapper": {
  3654. "type": "code",
  3655. "value": ""
  3656. },
  3657. "parser": {
  3658. "type": "code",
  3659. "value": ""
  3660. },
  3661. "$contents": {
  3662. "type": "map<string,*>",
  3663. "value": {
  3664. "nodes": {},
  3665. "edges": []
  3666. }
  3667. },
  3668. "$asuri": {
  3669. "type": "string",
  3670. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents/65.instance"
  3671. },
  3672. "$segments": {
  3673. "type": "map<string,list<string>>",
  3674. "value": {
  3675. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconIcon/1.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/65.instance": "M626,251.00000000000003L659.3950692588216,284.3997830340369",
  3676. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/65.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/RectangleIcon/41.instance": "M659.4482458599953,284.4529671411851L690.789911912495,316.7993394309399"
  3677. }
  3678. },
  3679. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink"
  3680. },
  3681. "66": {
  3682. "link-style": {
  3683. "type": "map<string,string>",
  3684. "value": {
  3685. "stroke": "#ff00ff",
  3686. "stroke-dasharray": "",
  3687. "stroke-opacity": 0.1,
  3688. "arrow-start": "none",
  3689. "arrow-end": "classic-wide-long"
  3690. }
  3691. },
  3692. "typename": {
  3693. "type": "string",
  3694. "value": "IconContentsLink"
  3695. },
  3696. "position": {
  3697. "type": "list<double>",
  3698. "value": [
  3699. 658.6038370561532,
  3700. 284.60706434953636
  3701. ]
  3702. },
  3703. "orientation": {
  3704. "type": "double",
  3705. "value": 0
  3706. },
  3707. "scale": {
  3708. "type": "list<double>",
  3709. "value": [
  3710. 1,
  3711. 1
  3712. ]
  3713. },
  3714. "mapper": {
  3715. "type": "code",
  3716. "value": ""
  3717. },
  3718. "parser": {
  3719. "type": "code",
  3720. "value": ""
  3721. },
  3722. "$contents": {
  3723. "type": "map<string,*>",
  3724. "value": {
  3725. "nodes": {},
  3726. "edges": []
  3727. }
  3728. },
  3729. "$asuri": {
  3730. "type": "string",
  3731. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents/66.instance"
  3732. },
  3733. "$segments": {
  3734. "type": "map<string,list<string>>",
  3735. "value": {
  3736. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconIcon/1.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/66.instance": "M626,251.00000000000003L658.6048385480576,284.60806434953633",
  3737. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/66.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/RectangleIcon/42.instance": "M658.5523066049709,284.5539160389701L690.9997747020288,317.99976776978383"
  3738. }
  3739. },
  3740. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink"
  3741. },
  3742. "67": {
  3743. "link-style": {
  3744. "type": "map<string,string>",
  3745. "value": {
  3746. "stroke": "#ff00ff",
  3747. "stroke-dasharray": "",
  3748. "stroke-opacity": 0.1,
  3749. "arrow-start": "none",
  3750. "arrow-end": "classic-wide-long"
  3751. }
  3752. },
  3753. "typename": {
  3754. "type": "string",
  3755. "value": "IconContentsLink"
  3756. },
  3757. "position": {
  3758. "type": "list<double>",
  3759. "value": [
  3760. 658.6049766020176,
  3761. 284.10660852613626
  3762. ]
  3763. },
  3764. "orientation": {
  3765. "type": "double",
  3766. "value": 0
  3767. },
  3768. "scale": {
  3769. "type": "list<double>",
  3770. "value": [
  3771. 1,
  3772. 1
  3773. ]
  3774. },
  3775. "mapper": {
  3776. "type": "code",
  3777. "value": ""
  3778. },
  3779. "parser": {
  3780. "type": "code",
  3781. "value": ""
  3782. },
  3783. "$contents": {
  3784. "type": "map<string,*>",
  3785. "value": {
  3786. "nodes": {},
  3787. "edges": []
  3788. }
  3789. },
  3790. "$asuri": {
  3791. "type": "string",
  3792. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents/67.instance"
  3793. },
  3794. "$segments": {
  3795. "type": "map<string,list<string>>",
  3796. "value": {
  3797. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconIcon/1.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/67.instance": "M626,251.00000000000003L658.6059780939221,284.10760852613623",
  3798. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/67.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/CircleIcon/43.instance": "M658.5528739159402,284.05368736080095L690.9997697794238,316.9997662375688"
  3799. }
  3800. },
  3801. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink"
  3802. },
  3803. "68": {
  3804. "link-style": {
  3805. "type": "map<string,string>",
  3806. "value": {
  3807. "stroke": "#ff00ff",
  3808. "stroke-dasharray": "",
  3809. "stroke-opacity": 0.1,
  3810. "arrow-start": "none",
  3811. "arrow-end": "classic-wide-long"
  3812. }
  3813. },
  3814. "typename": {
  3815. "type": "string",
  3816. "value": "IconContentsLink"
  3817. },
  3818. "position": {
  3819. "type": "list<double>",
  3820. "value": [
  3821. 659.1043174981073,
  3822. 285.10751047455767
  3823. ]
  3824. },
  3825. "orientation": {
  3826. "type": "double",
  3827. "value": 0
  3828. },
  3829. "scale": {
  3830. "type": "list<double>",
  3831. "value": [
  3832. 1,
  3833. 1
  3834. ]
  3835. },
  3836. "mapper": {
  3837. "type": "code",
  3838. "value": ""
  3839. },
  3840. "parser": {
  3841. "type": "code",
  3842. "value": ""
  3843. },
  3844. "$contents": {
  3845. "type": "map<string,*>",
  3846. "value": {
  3847. "nodes": {},
  3848. "edges": []
  3849. }
  3850. },
  3851. "$asuri": {
  3852. "type": "string",
  3853. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents/68.instance"
  3854. },
  3855. "$segments": {
  3856. "type": "map<string,list<string>>",
  3857. "value": {
  3858. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconIcon/1.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/68.instance": "M626,251.00000000000003L659.1053189900118,285.10851047455765",
  3859. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/68.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/CircleIcon/44.instance": "M659.0525475130812,285.05413986196254L686.9997760756287,311.99976929004174"
  3860. }
  3861. },
  3862. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink"
  3863. },
  3864. "69": {
  3865. "typename": {
  3866. "type": "string",
  3867. "value": "IconIcon"
  3868. },
  3869. "position": {
  3870. "type": "list<double>",
  3871. "value": [
  3872. 374,
  3873. 226
  3874. ]
  3875. },
  3876. "orientation": {
  3877. "type": "double",
  3878. "value": 0
  3879. },
  3880. "scale": {
  3881. "type": "list<double>",
  3882. "value": [
  3883. 1,
  3884. 1
  3885. ]
  3886. },
  3887. "mapper": {
  3888. "type": "code",
  3889. "value": "({'position':getAttr('position'),'orientation':getAttr('orientation'),'scale':getAttr('scale')})"
  3890. },
  3891. "parser": {
  3892. "type": "code",
  3893. "value": "({'position':getAttr('position'),'orientation':getAttr('orientation'),'scale':getAttr('scale')})"
  3894. },
  3895. "$contents": {
  3896. "type": "map<string,*>",
  3897. "value": {
  3898. "nodes": {
  3899. "1": {
  3900. "width": {
  3901. "type": "double",
  3902. "value": "200"
  3903. },
  3904. "height": {
  3905. "type": "double",
  3906. "value": "150"
  3907. },
  3908. "cornerRadius": {
  3909. "type": "double",
  3910. "value": "10"
  3911. },
  3912. "style": {
  3913. "type": "map<string,string>",
  3914. "value": {
  3915. "stroke": "#000000",
  3916. "stroke-dasharray": "- ",
  3917. "fill": "#ffffff",
  3918. "fill-opacity": 0.75,
  3919. "stroke-width": 1
  3920. }
  3921. },
  3922. "mapper": {
  3923. "type": "code",
  3924. "value": ""
  3925. },
  3926. "parser": {
  3927. "type": "code",
  3928. "value": ""
  3929. },
  3930. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  3931. "position": {
  3932. "type": "list<double>",
  3933. "value": [
  3934. 0,
  3935. 0
  3936. ]
  3937. },
  3938. "orientation": {
  3939. "type": "double",
  3940. "value": 0
  3941. },
  3942. "scale": {
  3943. "type": "list<double>",
  3944. "value": [
  3945. 1,
  3946. 1
  3947. ]
  3948. }
  3949. },
  3950. "2": {
  3951. "textContent": {
  3952. "type": "string",
  3953. "value": "HTTPPerfMonitorIcon"
  3954. },
  3955. "style": {
  3956. "type": "map<string,string>",
  3957. "value": {
  3958. "stroke": "#000000",
  3959. "stroke-dasharray": "",
  3960. "fill": "#000000",
  3961. "fill-opacity": "1",
  3962. "font-size": "13px"
  3963. }
  3964. },
  3965. "mapper": {
  3966. "type": "code",
  3967. "value": "({\"textContent\":getAttr(\"typename\")})"
  3968. },
  3969. "parser": {
  3970. "type": "code",
  3971. "value": "({\"typename\":getAttr(\"textContent\")})"
  3972. },
  3973. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  3974. "position": {
  3975. "type": "list<double>",
  3976. "value": [
  3977. 58,
  3978. 151
  3979. ]
  3980. },
  3981. "orientation": {
  3982. "type": "double",
  3983. "value": 0
  3984. },
  3985. "scale": {
  3986. "type": "list<double>",
  3987. "value": [
  3988. 1,
  3989. 1
  3990. ]
  3991. }
  3992. },
  3993. "3": {
  3994. "distance": {
  3995. "type": "double",
  3996. "value": 0
  3997. },
  3998. "alignment": {
  3999. "type": "ENUM(\"right\",\"left\",\"center\")",
  4000. "value": "center"
  4001. },
  4002. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Below",
  4003. "position": {
  4004. "type": "list<double>",
  4005. "value": [
  4006. 93.49899850809561,
  4007. 137.49900000000002
  4008. ]
  4009. },
  4010. "orientation": {
  4011. "type": "double",
  4012. "value": 0
  4013. },
  4014. "scale": {
  4015. "type": "list<double>",
  4016. "value": [
  4017. 1,
  4018. 1
  4019. ]
  4020. },
  4021. "link-style": {
  4022. "type": "map<string,string>",
  4023. "value": {
  4024. "stroke": "#00ff00",
  4025. "stroke-dasharray": "",
  4026. "stroke-opacity": 1,
  4027. "arrow-start": "none",
  4028. "arrow-end": "classic-wide-long"
  4029. }
  4030. }
  4031. }
  4032. },
  4033. "edges": [
  4034. {
  4035. "src": "2",
  4036. "dest": 3
  4037. },
  4038. {
  4039. "src": 3,
  4040. "dest": "1"
  4041. }
  4042. ]
  4043. }
  4044. },
  4045. "$asuri": {
  4046. "type": "string",
  4047. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Icon/69.instance"
  4048. },
  4049. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconIcon"
  4050. },
  4051. "73": {
  4052. "typename": {
  4053. "type": "string",
  4054. "value": "RectangleIcon"
  4055. },
  4056. "position": {
  4057. "type": "list<double>",
  4058. "value": [
  4059. 379,
  4060. 229
  4061. ]
  4062. },
  4063. "orientation": {
  4064. "type": "double",
  4065. "value": 0
  4066. },
  4067. "scale": {
  4068. "type": "list<double>",
  4069. "value": [
  4070. 1,
  4071. 1
  4072. ]
  4073. },
  4074. "mapper": {
  4075. "type": "code",
  4076. "value": ""
  4077. },
  4078. "parser": {
  4079. "type": "code",
  4080. "value": ""
  4081. },
  4082. "$contents": {
  4083. "type": "map<string,*>",
  4084. "value": {
  4085. "nodes": {
  4086. "17": {
  4087. "width": {
  4088. "type": "double",
  4089. "value": 125
  4090. },
  4091. "height": {
  4092. "type": "double",
  4093. "value": 125
  4094. },
  4095. "cornerRadius": {
  4096. "type": "double",
  4097. "value": 5
  4098. },
  4099. "style": {
  4100. "type": "map<string,string>",
  4101. "value": {
  4102. "stroke": "#888888",
  4103. "stroke-dasharray": "",
  4104. "fill": "#000000",
  4105. "fill-opacity": 0.75,
  4106. "font-size": "20px",
  4107. "stroke-width": 8,
  4108. "arrow-start": "none",
  4109. "arrow-end": "none"
  4110. }
  4111. },
  4112. "mapper": {
  4113. "type": "code",
  4114. "value": "({\"width\":getAttr(\"width\"), \"height\":getAttr(\"height\"), \"cornerRadius\":getAttr(\"cornerRadius\"), \"style\":getAttr(\"style\")})"
  4115. },
  4116. "parser": {
  4117. "type": "code",
  4118. "value": ""
  4119. },
  4120. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  4121. "position": {
  4122. "type": "list<double>",
  4123. "value": [
  4124. 0,
  4125. 1
  4126. ]
  4127. },
  4128. "orientation": {
  4129. "type": "double",
  4130. "value": 0
  4131. },
  4132. "scale": {
  4133. "type": "list<double>",
  4134. "value": [
  4135. 1,
  4136. 1
  4137. ]
  4138. }
  4139. }
  4140. },
  4141. "edges": []
  4142. }
  4143. },
  4144. "$asuri": {
  4145. "type": "string",
  4146. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle/73.instance"
  4147. },
  4148. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/RectangleIcon"
  4149. },
  4150. "78": {
  4151. "typename": {
  4152. "type": "string",
  4153. "value": "PathIcon"
  4154. },
  4155. "position": {
  4156. "type": "list<double>",
  4157. "value": [
  4158. 337.74902219620924,
  4159. 211.32303611308157
  4160. ]
  4161. },
  4162. "orientation": {
  4163. "type": "double",
  4164. "value": 0
  4165. },
  4166. "scale": {
  4167. "type": "list<double>",
  4168. "value": [
  4169. 0.22592148056019,
  4170. 0.16607488035979567
  4171. ]
  4172. },
  4173. "mapper": {
  4174. "type": "code",
  4175. "value": ""
  4176. },
  4177. "parser": {
  4178. "type": "code",
  4179. "value": ""
  4180. },
  4181. "$contents": {
  4182. "type": "map<string,*>",
  4183. "value": {
  4184. "nodes": {
  4185. "44": {
  4186. "segments": {
  4187. "type": "string",
  4188. "value": "m 216.41616,565.72776 c 0.60046,0.01 1.16602,-0.27815 1.67278,-0.6004 0.74606,-0.47442 1.40637,-1.07165 2.03961,-1.68865 1.80692,-1.7606 3.40125,-3.72523 5.00608,-5.67181 1.96698,-2.38586 3.91269,-4.79028 5.95258,-7.11411 2.04934,-2.33458 4.18405,-4.60516 6.55192,-6.61594 2.04032,-1.73262 4.26916,-3.31756 6.80407,-4.1773 2.17393,-0.7373 4.62682,-0.76464 6.70902,0.2018 2.77726,1.28904 4.74225,3.86609 6.26682,6.52136 2.62399,4.57008 4.18024,9.67362 5.47739,14.7813 10e-6,3e-5 10e-6,6e-5 2e-5,9e-5 1.70492,6.71337 3.06797,13.50843 4.42259,20.30115 1.61672,8.10698 3.16496,16.22753 4.79761,24.33131 1.58051,7.84499 3.21726,15.68126 5.15094,23.44675 0.8232,3.30588 1.70089,6.59915 2.70121,9.85581 0.81011,2.63743 1.69085,5.2573 2.78142,7.79166 0.7741,1.79893 1.62476,3.59255 2.85892,5.11316 0.42063,0.51826 0.89273,1.0047 1.45768,1.36016 0.44234,0.27832 0.95346,0.4656 1.47604,0.46017 0.53486,-0.006 1.05294,-0.21414 1.49407,-0.51663 0.60215,-0.41291 1.08654,-0.97663 1.51172,-1.57018 10e-6,-2e-5 2e-5,-3e-5 2e-5,-4e-5 1.41939,-1.98148 2.28516,-4.30256 3.0752,-6.60836 1.31419,-3.83562 2.27576,-7.78329 3.14186,-11.74421 1.26661,-5.79255 2.2843,-11.63705 3.20583,-17.49441 0,0 0,0 0,0 2.85449,-18.14353 4.81717,-36.41602 6.59273,-54.69669 0,-2e-5 0,-3e-5 0,-5e-5 4.66003,-47.97848 7.62228,-96.1078 10.01011,-144.25288 0,0 0,0 0,0 1.92286,-38.77017 3.34556,-77.56311 4.75761,-116.35525 0.22048,-6.05701 0.44213,-12.114 0.69111,-18.1699 0.16523,-4.01896 0.33077,-8.03827 0.57776,-12.05303 0.071,-1.15422 0.14567,-2.30852 0.2598,-3.45927 0,-3e-5 10e-6,-6e-5 10e-6,-9e-5 0.0345,-0.34751 0.0719,-0.6949 0.12499,-1.04006 0.0292,-0.1898 0.0541,-0.38268 0.1226,-0.56208 0.008,-0.0222 0.0179,-0.0441 0.0304,-0.0642 0.008,-0.0129 0.0172,-0.0256 0.0303,-0.0333 0.009,-0.005 0.0206,-0.006 0.0302,-0.002 0.0129,0.006 0.0222,0.0174 0.0301,0.0292 0.0306,0.0458 0.0454,0.10029 0.06,0.15341 0.0255,0.0925 0.0435,0.1869 0.0598,0.28145 10e-6,2e-5 2e-5,5e-5 2e-5,8e-5 0.0546,0.31579 0.0882,0.63481 0.11947,0.95374 0.0486,0.49473 0.0859,0.9905 0.1198,1.48645 0.26281,3.84324 0.37264,7.69526 0.49565,11.54551 0.22531,7.05251 0.39365,14.10672 0.55426,21.161 0.56662,24.8873 1.0056,49.77732 1.45627,74.66699 0,1e-5 0,3e-5 0,4e-5 0,2e-5 0,3e-5 0,5e-5 0,0 0,0 0,0 1.01587,56.10473 2.53681,112.20365 5.06218,168.26072 0,0 0,0 0,0 0.91192,20.24241 1.95681,40.47938 3.25347,60.70079 0,0 0,0 0,0 0.94102,14.67522 1.99387,29.34503 3.39074,43.9839 0.49256,5.16187 1.02858,10.31999 1.66614,15.46596 0.45476,3.67058 0.95016,7.33768 1.6036,10.97815 0.22684,1.26374 0.47304,2.52441 0.76826,3.77395 0,2e-5 1e-5,3e-5 1e-5,5e-5 0.2083,0.88162 0.43559,1.76045 0.74053,2.61348 0.18085,0.50589 0.3695,1.02352 0.70876,1.44009 0.0934,0.11468 0.20278,0.22367 0.34112,0.27598 3e-5,10e-6 5e-5,2e-5 8e-5,3e-5 0.10707,0.0405 0.23043,0.0311 0.33175,-0.0222 0.13564,-0.0713 0.23646,-0.19466 0.32178,-0.32193 0.12956,-0.19327 0.22585,-0.40692 0.31132,-0.62332 0.27415,-0.69409 0.43972,-1.42606 0.58923,-2.1572 0.53906,-2.63599 0.79448,-5.32154 1.03068,-8.00169 10e-6,-3e-5 10e-6,-6e-5 10e-6,-9e-5 0.91147,-10.34235 1.15079,-20.73213 1.35727,-31.11251 0.25048,-12.59239 1.32146,-25.22915 4.32604,-37.4604 2.11627,-8.61502 5.24385,-17.05856 10.07659,-24.49777 10e-6,-1e-5 2e-5,-2e-5 3e-5,-4e-5 3.73429,-5.74831 8.53863,-10.81041 14.16069,-14.73221 2e-5,-10e-6 5e-5,-3e-5 7e-5,-5e-5 5.06846,-3.5356 10.73626,-6.14806 16.57814,-8.16355 2e-5,0 3e-5,-1e-5 5e-5,-1e-5 5.66775,-1.95541 11.50365,-3.37483 17.32933,-4.79203 5.52549,-1.34418 11.06914,-2.67543 16.4139,-4.61745 4.97744,-1.80854 9.8017,-4.20435 13.83197,-7.63986 2e-5,-2e-5 5e-5,-4e-5 7e-5,-6e-5 4.32067,-3.68306 7.55374,-8.55702 9.58347,-13.85922 10e-6,-3e-5 2e-5,-6e-5 3e-5,-8e-5 1.20482,-3.14735 2.01427,-6.43231 2.71581,-9.72855 0.90336,-4.24446 1.58683,-8.53317 2.17747,-12.83231 0,-3e-5 1e-5,-6e-5 1e-5,-9e-5 1.42241,-10.35349 2.30776,-20.77395 3.03562,-31.19931 0.75066,-10.75206 1.29576,-21.51753 1.76958,-32.28535 0,-3e-5 0,-6e-5 0,-9e-5 0.37868,-8.60564 0.68563,-17.21444 1.09517,-25.81867 0.12898,-2.70985 0.2591,-5.42032 0.47957,-8.12426 0.0668,-0.81941 0.13906,-1.63892 0.25513,-2.45281 0.0369,-0.25886 0.0778,-0.5174 0.13545,-0.77245 0.0348,-0.15384 0.0701,-0.30988 0.14224,-0.45015 0.0191,-0.0371 0.0408,-0.0744 0.074,-0.0996 3e-5,-2e-5 5e-5,-4e-5 8e-5,-5e-5 0.0216,-0.0163 0.0509,-0.0233 0.0761,-0.0135 1e-5,10e-6 2e-5,10e-6 4e-5,2e-5 0.0341,0.0133 0.0581,0.0441 0.0784,0.0745 0.034,0.0508 0.0586,0.10733 0.0809,0.16426 0.0764,0.19528 0.12438,0.40048 0.16956,0.60527 10e-6,3e-5 2e-5,6e-5 2e-5,9e-5 0.072,0.32652 0.1287,0.65624 0.18096,0.9865 0.42211,2.66738 0.63116,5.3637 0.86121,8.05446 1.10701,12.94781 1.84098,25.92451 2.62174,38.89608 1.51598,25.18636 2.91425,50.37965 4.31387,75.57274 1.38999,25.01977 2.8625,50.03833 4.94198,75.01025 0,0 0,0 0,0 0.63867,7.66971 1.33476,15.33561 2.21576,22.98127 0,0 0,0 0,0 0.56547,4.90732 1.17958,9.81338 2.09554,14.6675 0.28742,1.52317 0.60464,3.04199 1.01439,4.5369 0.26589,0.97007 0.55843,1.93887 0.99836,2.84342 2e-5,3e-5 3e-5,5e-5 4e-5,8e-5 0,0 0,0 0,0 0.1407,0.28927 0.29752,0.57246 0.4946,0.82668 0.13738,0.17721 0.29575,0.34379 0.49239,0.45152 0,0 0,0 0,0 0.14883,0.0815 0.32335,0.12029 0.49073,0.0923 0,0 0,0 0,0 0.18308,-0.0306 0.34834,-0.13041 0.48961,-0.25083 1e-5,-10e-6 2e-5,-2e-5 3e-5,-3e-5 0.45033,-0.38386 0.72624,-0.93167 0.97838,-1.467 0,-10e-6 1e-5,-3e-5 1e-5,-4e-5 0.4013,-0.85203 0.70385,-1.74715 0.9811,-2.64722 0,0 0,0 0,0 0.8399,-2.72671 1.42956,-5.52391 1.98901,-8.32166 1.66746,-8.33886 2.91701,-16.75503 4.21635,-25.15913 0,0 0,0 0,0 1.53066,-9.90017 3.03735,-19.80518 4.78372,-29.66959 0,0 0,0 0,0 0.82625,-4.66705 1.70507,-9.32534 2.69822,-13.95973 0.86385,-4.03102 1.80685,-8.04729 2.95235,-12.00748 1e-5,-3e-5 2e-5,-6e-5 3e-5,-9e-5 0.88949,-3.07512 1.87587,-6.13469 3.24397,-9.0288 10e-6,-3e-5 2e-5,-6e-5 4e-5,-9e-5 0.50432,-1.06686 1.06307,-2.11197 1.74299,-3.07647 0.51553,-0.7313 1.10189,-1.42683 1.82997,-1.94689 1.02452,-0.7318 2.13537,-1.38127 3.35884,-1.67839 0.87861,-0.21337 1.82479,-0.20353 2.66495,0.13056 0.83786,0.33318 1.53795,0.95024 2.10365,1.6524 0.69998,0.86882 1.22437,1.86641 1.67496,2.8871 1.17585,2.66353 1.89073,5.50462 2.59434,8.32985 1e-5,3e-5 2e-5,6e-5 3e-5,9e-5 0.816,3.2765 1.55506,6.57317 2.47093,9.82316 0.87349,3.09965 1.88091,6.18464 3.40845,9.01968 1.28605,2.38686 3.01425,4.64378 5.40684,5.91914 1.16611,0.6216 2.46644,0.98247 3.78434,1.07907 3e-5,10e-6 6e-5,10e-6 9e-5,10e-6 1.57541,0.11547 3.16223,-0.1254 4.68164,-0.55742 0,0 0,0 0,0 10e-6,-1e-5 3e-5,-1e-5 4e-5,-1e-5 0,0 0,0 0,0 4.67231,-1.32854 8.7667,-4.17173 12.58625,-7.1728 2e-5,-10e-6 3e-5,-2e-5 4e-5,-3e-5 0,0 0,0 0,0 13.66629,-10.7378 28.33142,-20.71305 44.86749,-26.06338 3e-5,-1e-5 6e-5,-2e-5 9e-5,-3e-5 3.6385,-1.17725 7.37356,-2.11665 11.18218,-2.4617 0,0 0,0 0,0 3e-5,0 6e-5,0 9e-5,0 0.92931,-0.0842 1.86295,-0.13258 2.79574,-0.108 2e-5,0 3e-5,10e-6 5e-5,10e-6 0.23404,0.006 0.46803,0.0169 0.70132,0.0368 0.059,0.005 0.11796,0.0106 0.17679,0.0173 l 0.061,0.008 c 3e-5,10e-6 4e-5,10e-6 4e-5,10e-6"
  4189. },
  4190. "style": {
  4191. "type": "map<string,string>",
  4192. "value": {
  4193. "stroke": "MediumSpringGreen",
  4194. "fill-opacity": 0,
  4195. "stroke-width": 3
  4196. }
  4197. },
  4198. "mapper": {
  4199. "type": "code",
  4200. "value": "({\"segments\":getAttr(\"segments\"), \"style\":getAttr(\"style\")})"
  4201. },
  4202. "parser": {
  4203. "type": "code",
  4204. "value": ""
  4205. },
  4206. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4207. "position": {
  4208. "type": "list<double>",
  4209. "value": [
  4210. -1,
  4211. 0
  4212. ]
  4213. },
  4214. "orientation": {
  4215. "type": "double",
  4216. "value": 0
  4217. },
  4218. "scale": {
  4219. "type": "list<double>",
  4220. "value": [
  4221. 1,
  4222. 1
  4223. ]
  4224. }
  4225. }
  4226. },
  4227. "edges": []
  4228. }
  4229. },
  4230. "$asuri": {
  4231. "type": "string",
  4232. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path/78.instance"
  4233. },
  4234. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/PathIcon"
  4235. },
  4236. "79": {
  4237. "typename": {
  4238. "type": "string",
  4239. "value": "PathIcon"
  4240. },
  4241. "position": {
  4242. "type": "list<double>",
  4243. "value": [
  4244. 344.74902219620935,
  4245. 209.32303611308157
  4246. ]
  4247. },
  4248. "orientation": {
  4249. "type": "double",
  4250. "value": 0
  4251. },
  4252. "scale": {
  4253. "type": "list<double>",
  4254. "value": [
  4255. 0.22592148056019,
  4256. 0.16607488035979567
  4257. ]
  4258. },
  4259. "mapper": {
  4260. "type": "code",
  4261. "value": ""
  4262. },
  4263. "parser": {
  4264. "type": "code",
  4265. "value": ""
  4266. },
  4267. "$contents": {
  4268. "type": "map<string,*>",
  4269. "value": {
  4270. "nodes": {
  4271. "44": {
  4272. "segments": {
  4273. "type": "string",
  4274. "value": "m 216.41616,565.72776 c 0.60046,0.01 1.16602,-0.27815 1.67278,-0.6004 0.74606,-0.47442 1.40637,-1.07165 2.03961,-1.68865 1.80692,-1.7606 3.40125,-3.72523 5.00608,-5.67181 1.96698,-2.38586 3.91269,-4.79028 5.95258,-7.11411 2.04934,-2.33458 4.18405,-4.60516 6.55192,-6.61594 2.04032,-1.73262 4.26916,-3.31756 6.80407,-4.1773 2.17393,-0.7373 4.62682,-0.76464 6.70902,0.2018 2.77726,1.28904 4.74225,3.86609 6.26682,6.52136 2.62399,4.57008 4.18024,9.67362 5.47739,14.7813 10e-6,3e-5 10e-6,6e-5 2e-5,9e-5 1.70492,6.71337 3.06797,13.50843 4.42259,20.30115 1.61672,8.10698 3.16496,16.22753 4.79761,24.33131 1.58051,7.84499 3.21726,15.68126 5.15094,23.44675 0.8232,3.30588 1.70089,6.59915 2.70121,9.85581 0.81011,2.63743 1.69085,5.2573 2.78142,7.79166 0.7741,1.79893 1.62476,3.59255 2.85892,5.11316 0.42063,0.51826 0.89273,1.0047 1.45768,1.36016 0.44234,0.27832 0.95346,0.4656 1.47604,0.46017 0.53486,-0.006 1.05294,-0.21414 1.49407,-0.51663 0.60215,-0.41291 1.08654,-0.97663 1.51172,-1.57018 10e-6,-2e-5 2e-5,-3e-5 2e-5,-4e-5 1.41939,-1.98148 2.28516,-4.30256 3.0752,-6.60836 1.31419,-3.83562 2.27576,-7.78329 3.14186,-11.74421 1.26661,-5.79255 2.2843,-11.63705 3.20583,-17.49441 0,0 0,0 0,0 2.85449,-18.14353 4.81717,-36.41602 6.59273,-54.69669 0,-2e-5 0,-3e-5 0,-5e-5 4.66003,-47.97848 7.62228,-96.1078 10.01011,-144.25288 0,0 0,0 0,0 1.92286,-38.77017 3.34556,-77.56311 4.75761,-116.35525 0.22048,-6.05701 0.44213,-12.114 0.69111,-18.1699 0.16523,-4.01896 0.33077,-8.03827 0.57776,-12.05303 0.071,-1.15422 0.14567,-2.30852 0.2598,-3.45927 0,-3e-5 10e-6,-6e-5 10e-6,-9e-5 0.0345,-0.34751 0.0719,-0.6949 0.12499,-1.04006 0.0292,-0.1898 0.0541,-0.38268 0.1226,-0.56208 0.008,-0.0222 0.0179,-0.0441 0.0304,-0.0642 0.008,-0.0129 0.0172,-0.0256 0.0303,-0.0333 0.009,-0.005 0.0206,-0.006 0.0302,-0.002 0.0129,0.006 0.0222,0.0174 0.0301,0.0292 0.0306,0.0458 0.0454,0.10029 0.06,0.15341 0.0255,0.0925 0.0435,0.1869 0.0598,0.28145 10e-6,2e-5 2e-5,5e-5 2e-5,8e-5 0.0546,0.31579 0.0882,0.63481 0.11947,0.95374 0.0486,0.49473 0.0859,0.9905 0.1198,1.48645 0.26281,3.84324 0.37264,7.69526 0.49565,11.54551 0.22531,7.05251 0.39365,14.10672 0.55426,21.161 0.56662,24.8873 1.0056,49.77732 1.45627,74.66699 0,1e-5 0,3e-5 0,4e-5 0,2e-5 0,3e-5 0,5e-5 0,0 0,0 0,0 1.01587,56.10473 2.53681,112.20365 5.06218,168.26072 0,0 0,0 0,0 0.91192,20.24241 1.95681,40.47938 3.25347,60.70079 0,0 0,0 0,0 0.94102,14.67522 1.99387,29.34503 3.39074,43.9839 0.49256,5.16187 1.02858,10.31999 1.66614,15.46596 0.45476,3.67058 0.95016,7.33768 1.6036,10.97815 0.22684,1.26374 0.47304,2.52441 0.76826,3.77395 0,2e-5 1e-5,3e-5 1e-5,5e-5 0.2083,0.88162 0.43559,1.76045 0.74053,2.61348 0.18085,0.50589 0.3695,1.02352 0.70876,1.44009 0.0934,0.11468 0.20278,0.22367 0.34112,0.27598 3e-5,10e-6 5e-5,2e-5 8e-5,3e-5 0.10707,0.0405 0.23043,0.0311 0.33175,-0.0222 0.13564,-0.0713 0.23646,-0.19466 0.32178,-0.32193 0.12956,-0.19327 0.22585,-0.40692 0.31132,-0.62332 0.27415,-0.69409 0.43972,-1.42606 0.58923,-2.1572 0.53906,-2.63599 0.79448,-5.32154 1.03068,-8.00169 10e-6,-3e-5 10e-6,-6e-5 10e-6,-9e-5 0.91147,-10.34235 1.15079,-20.73213 1.35727,-31.11251 0.25048,-12.59239 1.32146,-25.22915 4.32604,-37.4604 2.11627,-8.61502 5.24385,-17.05856 10.07659,-24.49777 10e-6,-1e-5 2e-5,-2e-5 3e-5,-4e-5 3.73429,-5.74831 8.53863,-10.81041 14.16069,-14.73221 2e-5,-10e-6 5e-5,-3e-5 7e-5,-5e-5 5.06846,-3.5356 10.73626,-6.14806 16.57814,-8.16355 2e-5,0 3e-5,-1e-5 5e-5,-1e-5 5.66775,-1.95541 11.50365,-3.37483 17.32933,-4.79203 5.52549,-1.34418 11.06914,-2.67543 16.4139,-4.61745 4.97744,-1.80854 9.8017,-4.20435 13.83197,-7.63986 2e-5,-2e-5 5e-5,-4e-5 7e-5,-6e-5 4.32067,-3.68306 7.55374,-8.55702 9.58347,-13.85922 10e-6,-3e-5 2e-5,-6e-5 3e-5,-8e-5 1.20482,-3.14735 2.01427,-6.43231 2.71581,-9.72855 0.90336,-4.24446 1.58683,-8.53317 2.17747,-12.83231 0,-3e-5 1e-5,-6e-5 1e-5,-9e-5 1.42241,-10.35349 2.30776,-20.77395 3.03562,-31.19931 0.75066,-10.75206 1.29576,-21.51753 1.76958,-32.28535 0,-3e-5 0,-6e-5 0,-9e-5 0.37868,-8.60564 0.68563,-17.21444 1.09517,-25.81867 0.12898,-2.70985 0.2591,-5.42032 0.47957,-8.12426 0.0668,-0.81941 0.13906,-1.63892 0.25513,-2.45281 0.0369,-0.25886 0.0778,-0.5174 0.13545,-0.77245 0.0348,-0.15384 0.0701,-0.30988 0.14224,-0.45015 0.0191,-0.0371 0.0408,-0.0744 0.074,-0.0996 3e-5,-2e-5 5e-5,-4e-5 8e-5,-5e-5 0.0216,-0.0163 0.0509,-0.0233 0.0761,-0.0135 1e-5,10e-6 2e-5,10e-6 4e-5,2e-5 0.0341,0.0133 0.0581,0.0441 0.0784,0.0745 0.034,0.0508 0.0586,0.10733 0.0809,0.16426 0.0764,0.19528 0.12438,0.40048 0.16956,0.60527 10e-6,3e-5 2e-5,6e-5 2e-5,9e-5 0.072,0.32652 0.1287,0.65624 0.18096,0.9865 0.42211,2.66738 0.63116,5.3637 0.86121,8.05446 1.10701,12.94781 1.84098,25.92451 2.62174,38.89608 1.51598,25.18636 2.91425,50.37965 4.31387,75.57274 1.38999,25.01977 2.8625,50.03833 4.94198,75.01025 0,0 0,0 0,0 0.63867,7.66971 1.33476,15.33561 2.21576,22.98127 0,0 0,0 0,0 0.56547,4.90732 1.17958,9.81338 2.09554,14.6675 0.28742,1.52317 0.60464,3.04199 1.01439,4.5369 0.26589,0.97007 0.55843,1.93887 0.99836,2.84342 2e-5,3e-5 3e-5,5e-5 4e-5,8e-5 0,0 0,0 0,0 0.1407,0.28927 0.29752,0.57246 0.4946,0.82668 0.13738,0.17721 0.29575,0.34379 0.49239,0.45152 0,0 0,0 0,0 0.14883,0.0815 0.32335,0.12029 0.49073,0.0923 0,0 0,0 0,0 0.18308,-0.0306 0.34834,-0.13041 0.48961,-0.25083 1e-5,-10e-6 2e-5,-2e-5 3e-5,-3e-5 0.45033,-0.38386 0.72624,-0.93167 0.97838,-1.467 0,-10e-6 1e-5,-3e-5 1e-5,-4e-5 0.4013,-0.85203 0.70385,-1.74715 0.9811,-2.64722 0,0 0,0 0,0 0.8399,-2.72671 1.42956,-5.52391 1.98901,-8.32166 1.66746,-8.33886 2.91701,-16.75503 4.21635,-25.15913 0,0 0,0 0,0 1.53066,-9.90017 3.03735,-19.80518 4.78372,-29.66959 0,0 0,0 0,0 0.82625,-4.66705 1.70507,-9.32534 2.69822,-13.95973 0.86385,-4.03102 1.80685,-8.04729 2.95235,-12.00748 1e-5,-3e-5 2e-5,-6e-5 3e-5,-9e-5 0.88949,-3.07512 1.87587,-6.13469 3.24397,-9.0288 10e-6,-3e-5 2e-5,-6e-5 4e-5,-9e-5 0.50432,-1.06686 1.06307,-2.11197 1.74299,-3.07647 0.51553,-0.7313 1.10189,-1.42683 1.82997,-1.94689 1.02452,-0.7318 2.13537,-1.38127 3.35884,-1.67839 0.87861,-0.21337 1.82479,-0.20353 2.66495,0.13056 0.83786,0.33318 1.53795,0.95024 2.10365,1.6524 0.69998,0.86882 1.22437,1.86641 1.67496,2.8871 1.17585,2.66353 1.89073,5.50462 2.59434,8.32985 1e-5,3e-5 2e-5,6e-5 3e-5,9e-5 0.816,3.2765 1.55506,6.57317 2.47093,9.82316 0.87349,3.09965 1.88091,6.18464 3.40845,9.01968 1.28605,2.38686 3.01425,4.64378 5.40684,5.91914 1.16611,0.6216 2.46644,0.98247 3.78434,1.07907 3e-5,10e-6 6e-5,10e-6 9e-5,10e-6 1.57541,0.11547 3.16223,-0.1254 4.68164,-0.55742 0,0 0,0 0,0 10e-6,-1e-5 3e-5,-1e-5 4e-5,-1e-5 0,0 0,0 0,0 4.67231,-1.32854 8.7667,-4.17173 12.58625,-7.1728 2e-5,-10e-6 3e-5,-2e-5 4e-5,-3e-5 0,0 0,0 0,0 13.66629,-10.7378 28.33142,-20.71305 44.86749,-26.06338 3e-5,-1e-5 6e-5,-2e-5 9e-5,-3e-5 3.6385,-1.17725 7.37356,-2.11665 11.18218,-2.4617 0,0 0,0 0,0 3e-5,0 6e-5,0 9e-5,0 0.92931,-0.0842 1.86295,-0.13258 2.79574,-0.108 2e-5,0 3e-5,10e-6 5e-5,10e-6 0.23404,0.006 0.46803,0.0169 0.70132,0.0368 0.059,0.005 0.11796,0.0106 0.17679,0.0173 l 0.061,0.008 c 3e-5,10e-6 4e-5,10e-6 4e-5,10e-6"
  4275. },
  4276. "style": {
  4277. "type": "map<string,string>",
  4278. "value": {
  4279. "stroke": "coral",
  4280. "fill-opacity": 0,
  4281. "stroke-width": 3
  4282. }
  4283. },
  4284. "mapper": {
  4285. "type": "code",
  4286. "value": "({\"segments\":getAttr(\"segments\"), \"style\":getAttr(\"style\")})"
  4287. },
  4288. "parser": {
  4289. "type": "code",
  4290. "value": ""
  4291. },
  4292. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4293. "position": {
  4294. "type": "list<double>",
  4295. "value": [
  4296. -1,
  4297. 0
  4298. ]
  4299. },
  4300. "orientation": {
  4301. "type": "double",
  4302. "value": 0
  4303. },
  4304. "scale": {
  4305. "type": "list<double>",
  4306. "value": [
  4307. 1,
  4308. 1
  4309. ]
  4310. }
  4311. }
  4312. },
  4313. "edges": []
  4314. }
  4315. },
  4316. "$asuri": {
  4317. "type": "string",
  4318. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path/79.instance"
  4319. },
  4320. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/PathIcon"
  4321. },
  4322. "80": {
  4323. "typename": {
  4324. "type": "string",
  4325. "value": "PathIcon"
  4326. },
  4327. "position": {
  4328. "type": "list<double>",
  4329. "value": [
  4330. 352.74902219620924,
  4331. 209.32303611308157
  4332. ]
  4333. },
  4334. "orientation": {
  4335. "type": "double",
  4336. "value": 0
  4337. },
  4338. "scale": {
  4339. "type": "list<double>",
  4340. "value": [
  4341. 0.22592148056019,
  4342. 0.16607488035979567
  4343. ]
  4344. },
  4345. "mapper": {
  4346. "type": "code",
  4347. "value": ""
  4348. },
  4349. "parser": {
  4350. "type": "code",
  4351. "value": ""
  4352. },
  4353. "$contents": {
  4354. "type": "map<string,*>",
  4355. "value": {
  4356. "nodes": {
  4357. "44": {
  4358. "segments": {
  4359. "type": "string",
  4360. "value": "m 216.41616,565.72776 c 0.60046,0.01 1.16602,-0.27815 1.67278,-0.6004 0.74606,-0.47442 1.40637,-1.07165 2.03961,-1.68865 1.80692,-1.7606 3.40125,-3.72523 5.00608,-5.67181 1.96698,-2.38586 3.91269,-4.79028 5.95258,-7.11411 2.04934,-2.33458 4.18405,-4.60516 6.55192,-6.61594 2.04032,-1.73262 4.26916,-3.31756 6.80407,-4.1773 2.17393,-0.7373 4.62682,-0.76464 6.70902,0.2018 2.77726,1.28904 4.74225,3.86609 6.26682,6.52136 2.62399,4.57008 4.18024,9.67362 5.47739,14.7813 10e-6,3e-5 10e-6,6e-5 2e-5,9e-5 1.70492,6.71337 3.06797,13.50843 4.42259,20.30115 1.61672,8.10698 3.16496,16.22753 4.79761,24.33131 1.58051,7.84499 3.21726,15.68126 5.15094,23.44675 0.8232,3.30588 1.70089,6.59915 2.70121,9.85581 0.81011,2.63743 1.69085,5.2573 2.78142,7.79166 0.7741,1.79893 1.62476,3.59255 2.85892,5.11316 0.42063,0.51826 0.89273,1.0047 1.45768,1.36016 0.44234,0.27832 0.95346,0.4656 1.47604,0.46017 0.53486,-0.006 1.05294,-0.21414 1.49407,-0.51663 0.60215,-0.41291 1.08654,-0.97663 1.51172,-1.57018 10e-6,-2e-5 2e-5,-3e-5 2e-5,-4e-5 1.41939,-1.98148 2.28516,-4.30256 3.0752,-6.60836 1.31419,-3.83562 2.27576,-7.78329 3.14186,-11.74421 1.26661,-5.79255 2.2843,-11.63705 3.20583,-17.49441 0,0 0,0 0,0 2.85449,-18.14353 4.81717,-36.41602 6.59273,-54.69669 0,-2e-5 0,-3e-5 0,-5e-5 4.66003,-47.97848 7.62228,-96.1078 10.01011,-144.25288 0,0 0,0 0,0 1.92286,-38.77017 3.34556,-77.56311 4.75761,-116.35525 0.22048,-6.05701 0.44213,-12.114 0.69111,-18.1699 0.16523,-4.01896 0.33077,-8.03827 0.57776,-12.05303 0.071,-1.15422 0.14567,-2.30852 0.2598,-3.45927 0,-3e-5 10e-6,-6e-5 10e-6,-9e-5 0.0345,-0.34751 0.0719,-0.6949 0.12499,-1.04006 0.0292,-0.1898 0.0541,-0.38268 0.1226,-0.56208 0.008,-0.0222 0.0179,-0.0441 0.0304,-0.0642 0.008,-0.0129 0.0172,-0.0256 0.0303,-0.0333 0.009,-0.005 0.0206,-0.006 0.0302,-0.002 0.0129,0.006 0.0222,0.0174 0.0301,0.0292 0.0306,0.0458 0.0454,0.10029 0.06,0.15341 0.0255,0.0925 0.0435,0.1869 0.0598,0.28145 10e-6,2e-5 2e-5,5e-5 2e-5,8e-5 0.0546,0.31579 0.0882,0.63481 0.11947,0.95374 0.0486,0.49473 0.0859,0.9905 0.1198,1.48645 0.26281,3.84324 0.37264,7.69526 0.49565,11.54551 0.22531,7.05251 0.39365,14.10672 0.55426,21.161 0.56662,24.8873 1.0056,49.77732 1.45627,74.66699 0,1e-5 0,3e-5 0,4e-5 0,2e-5 0,3e-5 0,5e-5 0,0 0,0 0,0 1.01587,56.10473 2.53681,112.20365 5.06218,168.26072 0,0 0,0 0,0 0.91192,20.24241 1.95681,40.47938 3.25347,60.70079 0,0 0,0 0,0 0.94102,14.67522 1.99387,29.34503 3.39074,43.9839 0.49256,5.16187 1.02858,10.31999 1.66614,15.46596 0.45476,3.67058 0.95016,7.33768 1.6036,10.97815 0.22684,1.26374 0.47304,2.52441 0.76826,3.77395 0,2e-5 1e-5,3e-5 1e-5,5e-5 0.2083,0.88162 0.43559,1.76045 0.74053,2.61348 0.18085,0.50589 0.3695,1.02352 0.70876,1.44009 0.0934,0.11468 0.20278,0.22367 0.34112,0.27598 3e-5,10e-6 5e-5,2e-5 8e-5,3e-5 0.10707,0.0405 0.23043,0.0311 0.33175,-0.0222 0.13564,-0.0713 0.23646,-0.19466 0.32178,-0.32193 0.12956,-0.19327 0.22585,-0.40692 0.31132,-0.62332 0.27415,-0.69409 0.43972,-1.42606 0.58923,-2.1572 0.53906,-2.63599 0.79448,-5.32154 1.03068,-8.00169 10e-6,-3e-5 10e-6,-6e-5 10e-6,-9e-5 0.91147,-10.34235 1.15079,-20.73213 1.35727,-31.11251 0.25048,-12.59239 1.32146,-25.22915 4.32604,-37.4604 2.11627,-8.61502 5.24385,-17.05856 10.07659,-24.49777 10e-6,-1e-5 2e-5,-2e-5 3e-5,-4e-5 3.73429,-5.74831 8.53863,-10.81041 14.16069,-14.73221 2e-5,-10e-6 5e-5,-3e-5 7e-5,-5e-5 5.06846,-3.5356 10.73626,-6.14806 16.57814,-8.16355 2e-5,0 3e-5,-1e-5 5e-5,-1e-5 5.66775,-1.95541 11.50365,-3.37483 17.32933,-4.79203 5.52549,-1.34418 11.06914,-2.67543 16.4139,-4.61745 4.97744,-1.80854 9.8017,-4.20435 13.83197,-7.63986 2e-5,-2e-5 5e-5,-4e-5 7e-5,-6e-5 4.32067,-3.68306 7.55374,-8.55702 9.58347,-13.85922 10e-6,-3e-5 2e-5,-6e-5 3e-5,-8e-5 1.20482,-3.14735 2.01427,-6.43231 2.71581,-9.72855 0.90336,-4.24446 1.58683,-8.53317 2.17747,-12.83231 0,-3e-5 1e-5,-6e-5 1e-5,-9e-5 1.42241,-10.35349 2.30776,-20.77395 3.03562,-31.19931 0.75066,-10.75206 1.29576,-21.51753 1.76958,-32.28535 0,-3e-5 0,-6e-5 0,-9e-5 0.37868,-8.60564 0.68563,-17.21444 1.09517,-25.81867 0.12898,-2.70985 0.2591,-5.42032 0.47957,-8.12426 0.0668,-0.81941 0.13906,-1.63892 0.25513,-2.45281 0.0369,-0.25886 0.0778,-0.5174 0.13545,-0.77245 0.0348,-0.15384 0.0701,-0.30988 0.14224,-0.45015 0.0191,-0.0371 0.0408,-0.0744 0.074,-0.0996 3e-5,-2e-5 5e-5,-4e-5 8e-5,-5e-5 0.0216,-0.0163 0.0509,-0.0233 0.0761,-0.0135 1e-5,10e-6 2e-5,10e-6 4e-5,2e-5 0.0341,0.0133 0.0581,0.0441 0.0784,0.0745 0.034,0.0508 0.0586,0.10733 0.0809,0.16426 0.0764,0.19528 0.12438,0.40048 0.16956,0.60527 10e-6,3e-5 2e-5,6e-5 2e-5,9e-5 0.072,0.32652 0.1287,0.65624 0.18096,0.9865 0.42211,2.66738 0.63116,5.3637 0.86121,8.05446 1.10701,12.94781 1.84098,25.92451 2.62174,38.89608 1.51598,25.18636 2.91425,50.37965 4.31387,75.57274 1.38999,25.01977 2.8625,50.03833 4.94198,75.01025 0,0 0,0 0,0 0.63867,7.66971 1.33476,15.33561 2.21576,22.98127 0,0 0,0 0,0 0.56547,4.90732 1.17958,9.81338 2.09554,14.6675 0.28742,1.52317 0.60464,3.04199 1.01439,4.5369 0.26589,0.97007 0.55843,1.93887 0.99836,2.84342 2e-5,3e-5 3e-5,5e-5 4e-5,8e-5 0,0 0,0 0,0 0.1407,0.28927 0.29752,0.57246 0.4946,0.82668 0.13738,0.17721 0.29575,0.34379 0.49239,0.45152 0,0 0,0 0,0 0.14883,0.0815 0.32335,0.12029 0.49073,0.0923 0,0 0,0 0,0 0.18308,-0.0306 0.34834,-0.13041 0.48961,-0.25083 1e-5,-10e-6 2e-5,-2e-5 3e-5,-3e-5 0.45033,-0.38386 0.72624,-0.93167 0.97838,-1.467 0,-10e-6 1e-5,-3e-5 1e-5,-4e-5 0.4013,-0.85203 0.70385,-1.74715 0.9811,-2.64722 0,0 0,0 0,0 0.8399,-2.72671 1.42956,-5.52391 1.98901,-8.32166 1.66746,-8.33886 2.91701,-16.75503 4.21635,-25.15913 0,0 0,0 0,0 1.53066,-9.90017 3.03735,-19.80518 4.78372,-29.66959 0,0 0,0 0,0 0.82625,-4.66705 1.70507,-9.32534 2.69822,-13.95973 0.86385,-4.03102 1.80685,-8.04729 2.95235,-12.00748 1e-5,-3e-5 2e-5,-6e-5 3e-5,-9e-5 0.88949,-3.07512 1.87587,-6.13469 3.24397,-9.0288 10e-6,-3e-5 2e-5,-6e-5 4e-5,-9e-5 0.50432,-1.06686 1.06307,-2.11197 1.74299,-3.07647 0.51553,-0.7313 1.10189,-1.42683 1.82997,-1.94689 1.02452,-0.7318 2.13537,-1.38127 3.35884,-1.67839 0.87861,-0.21337 1.82479,-0.20353 2.66495,0.13056 0.83786,0.33318 1.53795,0.95024 2.10365,1.6524 0.69998,0.86882 1.22437,1.86641 1.67496,2.8871 1.17585,2.66353 1.89073,5.50462 2.59434,8.32985 1e-5,3e-5 2e-5,6e-5 3e-5,9e-5 0.816,3.2765 1.55506,6.57317 2.47093,9.82316 0.87349,3.09965 1.88091,6.18464 3.40845,9.01968 1.28605,2.38686 3.01425,4.64378 5.40684,5.91914 1.16611,0.6216 2.46644,0.98247 3.78434,1.07907 3e-5,10e-6 6e-5,10e-6 9e-5,10e-6 1.57541,0.11547 3.16223,-0.1254 4.68164,-0.55742 0,0 0,0 0,0 10e-6,-1e-5 3e-5,-1e-5 4e-5,-1e-5 0,0 0,0 0,0 4.67231,-1.32854 8.7667,-4.17173 12.58625,-7.1728 2e-5,-10e-6 3e-5,-2e-5 4e-5,-3e-5 0,0 0,0 0,0 13.66629,-10.7378 28.33142,-20.71305 44.86749,-26.06338 3e-5,-1e-5 6e-5,-2e-5 9e-5,-3e-5 3.6385,-1.17725 7.37356,-2.11665 11.18218,-2.4617 0,0 0,0 0,0 3e-5,0 6e-5,0 9e-5,0 0.92931,-0.0842 1.86295,-0.13258 2.79574,-0.108 2e-5,0 3e-5,10e-6 5e-5,10e-6 0.23404,0.006 0.46803,0.0169 0.70132,0.0368 0.059,0.005 0.11796,0.0106 0.17679,0.0173 l 0.061,0.008 c 3e-5,10e-6 4e-5,10e-6 4e-5,10e-6"
  4361. },
  4362. "style": {
  4363. "type": "map<string,string>",
  4364. "value": {
  4365. "stroke": "gold",
  4366. "fill-opacity": 0,
  4367. "stroke-width": 3
  4368. }
  4369. },
  4370. "mapper": {
  4371. "type": "code",
  4372. "value": "({\"segments\":getAttr(\"segments\"), \"style\":getAttr(\"style\")})"
  4373. },
  4374. "parser": {
  4375. "type": "code",
  4376. "value": ""
  4377. },
  4378. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4379. "position": {
  4380. "type": "list<double>",
  4381. "value": [
  4382. -1,
  4383. 0
  4384. ]
  4385. },
  4386. "orientation": {
  4387. "type": "double",
  4388. "value": 0
  4389. },
  4390. "scale": {
  4391. "type": "list<double>",
  4392. "value": [
  4393. 1,
  4394. 1
  4395. ]
  4396. }
  4397. }
  4398. },
  4399. "edges": []
  4400. }
  4401. },
  4402. "$asuri": {
  4403. "type": "string",
  4404. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path/80.instance"
  4405. },
  4406. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/PathIcon"
  4407. },
  4408. "81": {
  4409. "link-style": {
  4410. "type": "map<string,string>",
  4411. "value": {
  4412. "stroke": "#00ffff",
  4413. "stroke-dasharray": "",
  4414. "stroke-opacity": 0.1,
  4415. "arrow-start": "none",
  4416. "arrow-end": "classic-wide-long"
  4417. }
  4418. },
  4419. "typename": {
  4420. "type": "string",
  4421. "value": "ContainLink"
  4422. },
  4423. "position": {
  4424. "type": "list<double>",
  4425. "value": [
  4426. 409.79647122199435,
  4427. 255.1401586482566
  4428. ]
  4429. },
  4430. "orientation": {
  4431. "type": "double",
  4432. "value": 0
  4433. },
  4434. "scale": {
  4435. "type": "list<double>",
  4436. "value": [
  4437. 1,
  4438. 1
  4439. ]
  4440. },
  4441. "mapper": {
  4442. "type": "code",
  4443. "value": ""
  4444. },
  4445. "parser": {
  4446. "type": "code",
  4447. "value": ""
  4448. },
  4449. "$contents": {
  4450. "type": "map<string,*>",
  4451. "value": {
  4452. "nodes": {},
  4453. "edges": []
  4454. }
  4455. },
  4456. "$asuri": {
  4457. "type": "string",
  4458. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain/81.instance"
  4459. },
  4460. "$segments": {
  4461. "type": "map<string,list<string>>",
  4462. "value": {
  4463. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/RectangleIcon/73.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/ContainLink/81.instance": "M379,230L409.79747271389874,255.14115864825658",
  4464. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/ContainLink/81.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/PathIcon/78.instance": "M409.7390704579444,255.0934826458781L431.3616312405709,290.0918539734205"
  4465. }
  4466. },
  4467. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/ContainLink"
  4468. },
  4469. "82": {
  4470. "link-style": {
  4471. "type": "map<string,string>",
  4472. "value": {
  4473. "stroke": "#00ffff",
  4474. "stroke-dasharray": "",
  4475. "stroke-opacity": 0.1,
  4476. "arrow-start": "none",
  4477. "arrow-end": "classic-wide-long"
  4478. }
  4479. },
  4480. "typename": {
  4481. "type": "string",
  4482. "value": "ContainLink"
  4483. },
  4484. "position": {
  4485. "type": "list<double>",
  4486. "value": [
  4487. 408.77781065586623,
  4488. 265.16058351308266
  4489. ]
  4490. },
  4491. "orientation": {
  4492. "type": "double",
  4493. "value": 0
  4494. },
  4495. "scale": {
  4496. "type": "list<double>",
  4497. "value": [
  4498. 1,
  4499. 1
  4500. ]
  4501. },
  4502. "mapper": {
  4503. "type": "code",
  4504. "value": ""
  4505. },
  4506. "parser": {
  4507. "type": "code",
  4508. "value": ""
  4509. },
  4510. "$contents": {
  4511. "type": "map<string,*>",
  4512. "value": {
  4513. "nodes": {},
  4514. "edges": []
  4515. }
  4516. },
  4517. "$asuri": {
  4518. "type": "string",
  4519. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain/82.instance"
  4520. },
  4521. "$segments": {
  4522. "type": "map<string,list<string>>",
  4523. "value": {
  4524. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/RectangleIcon/73.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/ContainLink/82.instance": "M379,230L408.7788121477706,265.16158351308263",
  4525. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/ContainLink/82.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/PathIcon/79.instance": "M408.72978009477265,265.10368850310897L438.361711057727,288.09184081884246"
  4526. }
  4527. },
  4528. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/ContainLink"
  4529. },
  4530. "83": {
  4531. "link-style": {
  4532. "type": "map<string,string>",
  4533. "value": {
  4534. "stroke": "#00ffff",
  4535. "stroke-dasharray": "",
  4536. "stroke-opacity": 0.1,
  4537. "arrow-start": "none",
  4538. "arrow-end": "classic-wide-long"
  4539. }
  4540. },
  4541. "typename": {
  4542. "type": "string",
  4543. "value": "ContainLink"
  4544. },
  4545. "position": {
  4546. "type": "list<double>",
  4547. "value": [
  4548. 412.79478275191775,
  4549. 259.14406772474194
  4550. ]
  4551. },
  4552. "orientation": {
  4553. "type": "double",
  4554. "value": 0
  4555. },
  4556. "scale": {
  4557. "type": "list<double>",
  4558. "value": [
  4559. 1,
  4560. 1
  4561. ]
  4562. },
  4563. "mapper": {
  4564. "type": "code",
  4565. "value": ""
  4566. },
  4567. "parser": {
  4568. "type": "code",
  4569. "value": ""
  4570. },
  4571. "$contents": {
  4572. "type": "map<string,*>",
  4573. "value": {
  4574. "nodes": {},
  4575. "edges": []
  4576. }
  4577. },
  4578. "$asuri": {
  4579. "type": "string",
  4580. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain/83.instance"
  4581. },
  4582. "$segments": {
  4583. "type": "map<string,list<string>>",
  4584. "value": {
  4585. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/RectangleIcon/73.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/ContainLink/83.instance": "M379,230L412.795784243822,259.1450677247419",
  4586. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/ContainLink/83.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/PathIcon/80.instance": "M412.73824320568974,259.09544504277596L446.36166519346875,288.09186968264885"
  4587. }
  4588. },
  4589. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/ContainLink"
  4590. },
  4591. "84": {
  4592. "typename": {
  4593. "type": "string",
  4594. "value": "RectangleIcon"
  4595. },
  4596. "position": {
  4597. "type": "list<double>",
  4598. "value": [
  4599. 449,
  4600. 336
  4601. ]
  4602. },
  4603. "orientation": {
  4604. "type": "double",
  4605. "value": 0
  4606. },
  4607. "scale": {
  4608. "type": "list<double>",
  4609. "value": [
  4610. 1,
  4611. 1
  4612. ]
  4613. },
  4614. "mapper": {
  4615. "type": "code",
  4616. "value": ""
  4617. },
  4618. "parser": {
  4619. "type": "code",
  4620. "value": ""
  4621. },
  4622. "$contents": {
  4623. "type": "map<string,*>",
  4624. "value": {
  4625. "nodes": {
  4626. "17": {
  4627. "width": {
  4628. "type": "double",
  4629. "value": 70
  4630. },
  4631. "height": {
  4632. "type": "double",
  4633. "value": 30
  4634. },
  4635. "cornerRadius": {
  4636. "type": "double",
  4637. "value": 10
  4638. },
  4639. "style": {
  4640. "type": "map<string,string>",
  4641. "value": {
  4642. "stroke": "orangered",
  4643. "stroke-dasharray": "",
  4644. "fill": "orange",
  4645. "fill-opacity": 1,
  4646. "font-size": "20px",
  4647. "stroke-width": 1,
  4648. "arrow-start": "none",
  4649. "arrow-end": "none"
  4650. }
  4651. },
  4652. "mapper": {
  4653. "type": "code",
  4654. "value": "({\"width\":getAttr(\"width\"), \"height\":getAttr(\"height\"), \"cornerRadius\":getAttr(\"cornerRadius\"), \"style\":getAttr(\"style\")})"
  4655. },
  4656. "parser": {
  4657. "type": "code",
  4658. "value": ""
  4659. },
  4660. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  4661. "position": {
  4662. "type": "list<double>",
  4663. "value": [
  4664. 0,
  4665. 1
  4666. ]
  4667. },
  4668. "orientation": {
  4669. "type": "double",
  4670. "value": 0
  4671. },
  4672. "scale": {
  4673. "type": "list<double>",
  4674. "value": [
  4675. 1,
  4676. 1
  4677. ]
  4678. }
  4679. }
  4680. },
  4681. "edges": []
  4682. }
  4683. },
  4684. "$asuri": {
  4685. "type": "string",
  4686. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle/84.instance"
  4687. },
  4688. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/RectangleIcon"
  4689. },
  4690. "85": {
  4691. "typename": {
  4692. "type": "string",
  4693. "value": "TextIcon"
  4694. },
  4695. "position": {
  4696. "type": "list<double>",
  4697. "value": [
  4698. 459,
  4699. 340
  4700. ]
  4701. },
  4702. "orientation": {
  4703. "type": "double",
  4704. "value": 0
  4705. },
  4706. "scale": {
  4707. "type": "list<double>",
  4708. "value": [
  4709. 1,
  4710. 1
  4711. ]
  4712. },
  4713. "mapper": {
  4714. "type": "code",
  4715. "value": ""
  4716. },
  4717. "parser": {
  4718. "type": "code",
  4719. "value": ""
  4720. },
  4721. "$contents": {
  4722. "type": "map<string,*>",
  4723. "value": {
  4724. "nodes": {
  4725. "21": {
  4726. "textContent": {
  4727. "type": "string",
  4728. "value": "HTTP"
  4729. },
  4730. "style": {
  4731. "type": "map<string,string>",
  4732. "value": {
  4733. "stroke": "#ffffff",
  4734. "stroke-dasharray": "",
  4735. "fill": "#ffffff",
  4736. "fill-opacity": 1,
  4737. "font-size": "20px",
  4738. "stroke-width": 1,
  4739. "arrow-start": "none",
  4740. "arrow-end": "none"
  4741. }
  4742. },
  4743. "mapper": {
  4744. "type": "code",
  4745. "value": "({\"textContent\":getAttr(\"textContent\"), \"style\":getAttr(\"style\")})"
  4746. },
  4747. "parser": {
  4748. "type": "code",
  4749. "value": "({\"textContent\":getAttr(\"textContent\")})"
  4750. },
  4751. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  4752. "position": {
  4753. "type": "list<double>",
  4754. "value": [
  4755. 0,
  4756. 0
  4757. ]
  4758. },
  4759. "orientation": {
  4760. "type": "double",
  4761. "value": 0
  4762. },
  4763. "scale": {
  4764. "type": "list<double>",
  4765. "value": [
  4766. 1,
  4767. 1
  4768. ]
  4769. }
  4770. }
  4771. },
  4772. "edges": []
  4773. }
  4774. },
  4775. "$asuri": {
  4776. "type": "string",
  4777. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text/85.instance"
  4778. },
  4779. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/TextIcon"
  4780. },
  4781. "86": {
  4782. "link-style": {
  4783. "type": "map<string,string>",
  4784. "value": {
  4785. "stroke": "#00ffff",
  4786. "stroke-dasharray": "",
  4787. "stroke-opacity": 0.1,
  4788. "arrow-start": "none",
  4789. "arrow-end": "classic-wide-long"
  4790. }
  4791. },
  4792. "typename": {
  4793. "type": "string",
  4794. "value": "ContainLink"
  4795. },
  4796. "position": {
  4797. "type": "list<double>",
  4798. "value": [
  4799. 465.2489985080956,
  4800. 345.999
  4801. ]
  4802. },
  4803. "orientation": {
  4804. "type": "double",
  4805. "value": 0
  4806. },
  4807. "scale": {
  4808. "type": "list<double>",
  4809. "value": [
  4810. 1,
  4811. 1
  4812. ]
  4813. },
  4814. "mapper": {
  4815. "type": "code",
  4816. "value": ""
  4817. },
  4818. "parser": {
  4819. "type": "code",
  4820. "value": ""
  4821. },
  4822. "$contents": {
  4823. "type": "map<string,*>",
  4824. "value": {
  4825. "nodes": {},
  4826. "edges": []
  4827. }
  4828. },
  4829. "$asuri": {
  4830. "type": "string",
  4831. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain/86.instance"
  4832. },
  4833. "$segments": {
  4834. "type": "map<string,list<string>>",
  4835. "value": {
  4836. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/RectangleIcon/84.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/ContainLink/86.instance": "M449,337L465.25,346",
  4837. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/ContainLink/86.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/TextIcon/85.instance": "M465.3155221212178,346.0362891748284L484.4992890845558,351.9996062622156"
  4838. }
  4839. },
  4840. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/ContainLink"
  4841. },
  4842. "87": {
  4843. "link-style": {
  4844. "type": "map<string,string>",
  4845. "value": {
  4846. "stroke": "#00ffff",
  4847. "stroke-dasharray": "",
  4848. "stroke-opacity": 0.1,
  4849. "arrow-start": "none",
  4850. "arrow-end": "classic-wide-long"
  4851. }
  4852. },
  4853. "typename": {
  4854. "type": "string",
  4855. "value": "ContainLink"
  4856. },
  4857. "position": {
  4858. "type": "list<double>",
  4859. "value": [
  4860. 431.4989985080956,
  4861. 290.999
  4862. ]
  4863. },
  4864. "orientation": {
  4865. "type": "double",
  4866. "value": 0
  4867. },
  4868. "scale": {
  4869. "type": "list<double>",
  4870. "value": [
  4871. 1,
  4872. 1
  4873. ]
  4874. },
  4875. "mapper": {
  4876. "type": "code",
  4877. "value": ""
  4878. },
  4879. "parser": {
  4880. "type": "code",
  4881. "value": ""
  4882. },
  4883. "$contents": {
  4884. "type": "map<string,*>",
  4885. "value": {
  4886. "nodes": {},
  4887. "edges": []
  4888. }
  4889. },
  4890. "$asuri": {
  4891. "type": "string",
  4892. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain/87.instance"
  4893. },
  4894. "$segments": {
  4895. "type": "map<string,list<string>>",
  4896. "value": {
  4897. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/RectangleIcon/73.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/ContainLink/87.instance": "M379,230L431.5,291",
  4898. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/ContainLink/87.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/RectangleIcon/84.instance": "M431.59819135536395,291.1140890033755L483.99950822265646,351.9994286015626"
  4899. }
  4900. },
  4901. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/ContainLink"
  4902. },
  4903. "88": {
  4904. "link-style": {
  4905. "type": "map<string,string>",
  4906. "value": {
  4907. "stroke": "#00ffff",
  4908. "stroke-dasharray": "",
  4909. "stroke-opacity": 0.1,
  4910. "arrow-start": "none",
  4911. "arrow-end": "classic-wide-long"
  4912. }
  4913. },
  4914. "typename": {
  4915. "type": "string",
  4916. "value": "ContainLink"
  4917. },
  4918. "position": {
  4919. "type": "list<double>",
  4920. "value": [
  4921. 431.8472903830017,
  4922. 291.11266453780615
  4923. ]
  4924. },
  4925. "orientation": {
  4926. "type": "double",
  4927. "value": 0
  4928. },
  4929. "scale": {
  4930. "type": "list<double>",
  4931. "value": [
  4932. 1,
  4933. 1
  4934. ]
  4935. },
  4936. "mapper": {
  4937. "type": "code",
  4938. "value": ""
  4939. },
  4940. "parser": {
  4941. "type": "code",
  4942. "value": ""
  4943. },
  4944. "$contents": {
  4945. "type": "map<string,*>",
  4946. "value": {
  4947. "nodes": {},
  4948. "edges": []
  4949. }
  4950. },
  4951. "$asuri": {
  4952. "type": "string",
  4953. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain/88.instance"
  4954. },
  4955. "$segments": {
  4956. "type": "map<string,list<string>>",
  4957. "value": {
  4958. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/RectangleIcon/73.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/ContainLink/88.instance": "M379,230L431.84829187490607,291.11366453780624",
  4959. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/ContainLink/88.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/TextIcon/85.instance": "M431.84804767174046,291.1133821417284L484.49951199739485,351.9994356747127"
  4960. }
  4961. },
  4962. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/ContainLink"
  4963. },
  4964. "89": {
  4965. "link-style": {
  4966. "type": "map<string,string>",
  4967. "value": {
  4968. "stroke": "#ff00ff",
  4969. "stroke-dasharray": "",
  4970. "stroke-opacity": 0.1,
  4971. "arrow-start": "none",
  4972. "arrow-end": "classic-wide-long"
  4973. }
  4974. },
  4975. "typename": {
  4976. "type": "string",
  4977. "value": "IconContentsLink"
  4978. },
  4979. "position": {
  4980. "type": "list<double>",
  4981. "value": [
  4982. 407.7489985080956,
  4983. 259.249
  4984. ]
  4985. },
  4986. "orientation": {
  4987. "type": "double",
  4988. "value": 0
  4989. },
  4990. "scale": {
  4991. "type": "list<double>",
  4992. "value": [
  4993. 1,
  4994. 1
  4995. ]
  4996. },
  4997. "mapper": {
  4998. "type": "code",
  4999. "value": ""
  5000. },
  5001. "parser": {
  5002. "type": "code",
  5003. "value": ""
  5004. },
  5005. "$contents": {
  5006. "type": "map<string,*>",
  5007. "value": {
  5008. "nodes": {},
  5009. "edges": []
  5010. }
  5011. },
  5012. "$asuri": {
  5013. "type": "string",
  5014. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents/89.instance"
  5015. },
  5016. "$segments": {
  5017. "type": "map<string,list<string>>",
  5018. "value": {
  5019. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconIcon/69.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/89.instance": "M374,226L407.75,259.25",
  5020. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/89.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/RectangleIcon/73.instance": "M407.8037417747423,259.30294560030165L441.49977098643853,292.4997743792321"
  5021. }
  5022. },
  5023. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink"
  5024. },
  5025. "90": {
  5026. "link-style": {
  5027. "type": "map<string,string>",
  5028. "value": {
  5029. "stroke": "#ff00ff",
  5030. "stroke-dasharray": "",
  5031. "stroke-opacity": 0.1,
  5032. "arrow-start": "none",
  5033. "arrow-end": "classic-wide-long"
  5034. }
  5035. },
  5036. "typename": {
  5037. "type": "string",
  5038. "value": "IconContentsLink"
  5039. },
  5040. "position": {
  5041. "type": "list<double>",
  5042. "value": [
  5043. 402.78001117540134,
  5044. 258.15683561499816
  5045. ]
  5046. },
  5047. "orientation": {
  5048. "type": "double",
  5049. "value": 0
  5050. },
  5051. "scale": {
  5052. "type": "list<double>",
  5053. "value": [
  5054. 1,
  5055. 1
  5056. ]
  5057. },
  5058. "mapper": {
  5059. "type": "code",
  5060. "value": ""
  5061. },
  5062. "parser": {
  5063. "type": "code",
  5064. "value": ""
  5065. },
  5066. "$contents": {
  5067. "type": "map<string,*>",
  5068. "value": {
  5069. "nodes": {},
  5070. "edges": []
  5071. }
  5072. },
  5073. "$asuri": {
  5074. "type": "string",
  5075. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents/90.instance"
  5076. },
  5077. "$segments": {
  5078. "type": "map<string,list<string>>",
  5079. "value": {
  5080. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconIcon/69.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/90.instance": "M374,226L402.78101266730573,258.15783561499825",
  5081. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/90.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/PathIcon/78.instance": "M402.7308715528004,258.1018115363303L431.3616934598971,290.09183478720047"
  5082. }
  5083. },
  5084. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink"
  5085. },
  5086. "91": {
  5087. "link-style": {
  5088. "type": "map<string,string>",
  5089. "value": {
  5090. "stroke": "#ff00ff",
  5091. "stroke-dasharray": "",
  5092. "stroke-opacity": 0.1,
  5093. "arrow-start": "none",
  5094. "arrow-end": "classic-wide-long"
  5095. }
  5096. },
  5097. "typename": {
  5098. "type": "string",
  5099. "value": "IconContentsLink"
  5100. },
  5101. "position": {
  5102. "type": "list<double>",
  5103. "value": [
  5104. 406.2884364584261,
  5105. 257.14969670092216
  5106. ]
  5107. },
  5108. "orientation": {
  5109. "type": "double",
  5110. "value": 0
  5111. },
  5112. "scale": {
  5113. "type": "list<double>",
  5114. "value": [
  5115. 1,
  5116. 1
  5117. ]
  5118. },
  5119. "mapper": {
  5120. "type": "code",
  5121. "value": ""
  5122. },
  5123. "parser": {
  5124. "type": "code",
  5125. "value": ""
  5126. },
  5127. "$contents": {
  5128. "type": "map<string,*>",
  5129. "value": {
  5130. "nodes": {},
  5131. "edges": []
  5132. }
  5133. },
  5134. "$asuri": {
  5135. "type": "string",
  5136. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents/91.instance"
  5137. },
  5138. "$segments": {
  5139. "type": "map<string,list<string>>",
  5140. "value": {
  5141. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconIcon/69.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/91.instance": "M374,226L406.28943795033047,257.15069670092225",
  5142. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/91.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/PathIcon/79.instance": "M406.23507865000613,257.09825447260323L438.3616823718472,288.0918595675332"
  5143. }
  5144. },
  5145. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink"
  5146. },
  5147. "92": {
  5148. "link-style": {
  5149. "type": "map<string,string>",
  5150. "value": {
  5151. "stroke": "#ff00ff",
  5152. "stroke-dasharray": "",
  5153. "stroke-opacity": 0.1,
  5154. "arrow-start": "none",
  5155. "arrow-end": "classic-wide-long"
  5156. }
  5157. },
  5158. "typename": {
  5159. "type": "string",
  5160. "value": "IconContentsLink"
  5161. },
  5162. "position": {
  5163. "type": "list<double>",
  5164. "value": [
  5165. 410.2942169886792,
  5166. 257.1430872839677
  5167. ]
  5168. },
  5169. "orientation": {
  5170. "type": "double",
  5171. "value": 0
  5172. },
  5173. "scale": {
  5174. "type": "list<double>",
  5175. "value": [
  5176. 1,
  5177. 1
  5178. ]
  5179. },
  5180. "mapper": {
  5181. "type": "code",
  5182. "value": ""
  5183. },
  5184. "parser": {
  5185. "type": "code",
  5186. "value": ""
  5187. },
  5188. "$contents": {
  5189. "type": "map<string,*>",
  5190. "value": {
  5191. "nodes": {},
  5192. "edges": []
  5193. }
  5194. },
  5195. "$asuri": {
  5196. "type": "string",
  5197. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents/92.instance"
  5198. },
  5199. "$segments": {
  5200. "type": "map<string,list<string>>",
  5201. "value": {
  5202. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconIcon/69.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/92.instance": "M374,226L410.29521848058357,257.1440872839678",
  5203. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/92.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/PathIcon/80.instance": "M410.2379705230071,257.0949641360098L446.36168558418854,288.0918883035408"
  5204. }
  5205. },
  5206. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink"
  5207. },
  5208. "93": {
  5209. "link-style": {
  5210. "type": "map<string,string>",
  5211. "value": {
  5212. "stroke": "#ff00ff",
  5213. "stroke-dasharray": "",
  5214. "stroke-opacity": 0.1,
  5215. "arrow-start": "none",
  5216. "arrow-end": "classic-wide-long"
  5217. }
  5218. },
  5219. "typename": {
  5220. "type": "string",
  5221. "value": "IconContentsLink"
  5222. },
  5223. "position": {
  5224. "type": "list<double>",
  5225. "value": [
  5226. 391.8972341190928,
  5227. 240.56907932412832
  5228. ]
  5229. },
  5230. "orientation": {
  5231. "type": "double",
  5232. "value": 0
  5233. },
  5234. "scale": {
  5235. "type": "list<double>",
  5236. "value": [
  5237. 1,
  5238. 1
  5239. ]
  5240. },
  5241. "mapper": {
  5242. "type": "code",
  5243. "value": ""
  5244. },
  5245. "parser": {
  5246. "type": "code",
  5247. "value": ""
  5248. },
  5249. "$contents": {
  5250. "type": "map<string,*>",
  5251. "value": {
  5252. "nodes": {},
  5253. "edges": []
  5254. }
  5255. },
  5256. "$asuri": {
  5257. "type": "string",
  5258. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents/93.instance"
  5259. },
  5260. "$segments": {
  5261. "type": "map<string,list<string>>",
  5262. "value": {
  5263. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconIcon/69.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/93.instance": "M374,226L391.8982356109972,240.5700793241283",
  5264. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/93.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/ContainLink/81.instance": "M391.9563455763223,240.61738380836414L409.79596444611116,255.13974610676507"
  5265. }
  5266. },
  5267. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink"
  5268. },
  5269. "94": {
  5270. "link-style": {
  5271. "type": "map<string,string>",
  5272. "value": {
  5273. "stroke": "#ff00ff",
  5274. "stroke-dasharray": "",
  5275. "stroke-opacity": 0.1,
  5276. "arrow-start": "none",
  5277. "arrow-end": "classic-wide-long"
  5278. }
  5279. },
  5280. "typename": {
  5281. "type": "string",
  5282. "value": "IconContentsLink"
  5283. },
  5284. "position": {
  5285. "type": "list<double>",
  5286. "value": [
  5287. 391.4882239490124,
  5288. 245.6922544211958
  5289. ]
  5290. },
  5291. "orientation": {
  5292. "type": "double",
  5293. "value": 0
  5294. },
  5295. "scale": {
  5296. "type": "list<double>",
  5297. "value": [
  5298. 1,
  5299. 1
  5300. ]
  5301. },
  5302. "mapper": {
  5303. "type": "code",
  5304. "value": ""
  5305. },
  5306. "parser": {
  5307. "type": "code",
  5308. "value": ""
  5309. },
  5310. "$contents": {
  5311. "type": "map<string,*>",
  5312. "value": {
  5313. "nodes": {},
  5314. "edges": []
  5315. }
  5316. },
  5317. "$asuri": {
  5318. "type": "string",
  5319. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents/94.instance"
  5320. },
  5321. "$segments": {
  5322. "type": "map<string,list<string>>",
  5323. "value": {
  5324. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconIcon/69.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/94.instance": "M374,226L391.48922544091687,245.6932544211959",
  5325. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/94.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/ContainLink/82.instance": "M391.4388726463944,245.6365560615859L408.77742530205285,265.16014959617087"
  5326. }
  5327. },
  5328. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink"
  5329. },
  5330. "95": {
  5331. "link-style": {
  5332. "type": "map<string,string>",
  5333. "value": {
  5334. "stroke": "#ff00ff",
  5335. "stroke-dasharray": "",
  5336. "stroke-opacity": 0.1,
  5337. "arrow-start": "none",
  5338. "arrow-end": "classic-wide-long"
  5339. }
  5340. },
  5341. "typename": {
  5342. "type": "string",
  5343. "value": "IconContentsLink"
  5344. },
  5345. "position": {
  5346. "type": "list<double>",
  5347. "value": [
  5348. 393.51049160135096,
  5349. 242.66851591478428
  5350. ]
  5351. },
  5352. "orientation": {
  5353. "type": "double",
  5354. "value": 0
  5355. },
  5356. "scale": {
  5357. "type": "list<double>",
  5358. "value": [
  5359. 1,
  5360. 1
  5361. ]
  5362. },
  5363. "mapper": {
  5364. "type": "code",
  5365. "value": ""
  5366. },
  5367. "parser": {
  5368. "type": "code",
  5369. "value": ""
  5370. },
  5371. "$contents": {
  5372. "type": "map<string,*>",
  5373. "value": {
  5374. "nodes": {},
  5375. "edges": []
  5376. }
  5377. },
  5378. "$asuri": {
  5379. "type": "string",
  5380. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents/95.instance"
  5381. },
  5382. "$segments": {
  5383. "type": "map<string,list<string>>",
  5384. "value": {
  5385. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconIcon/69.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/95.instance": "M374,226L393.51149309325535,242.66951591478426",
  5386. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/95.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/ContainLink/83.instance": "M393.4542187248027,242.620583934445L412.7943358768241,259.1436859399421"
  5387. }
  5388. },
  5389. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink"
  5390. },
  5391. "96": {
  5392. "link-style": {
  5393. "type": "map<string,string>",
  5394. "value": {
  5395. "stroke": "#ff00ff",
  5396. "stroke-dasharray": "",
  5397. "stroke-opacity": 0.1,
  5398. "arrow-start": "none",
  5399. "arrow-end": "classic-wide-long"
  5400. }
  5401. },
  5402. "typename": {
  5403. "type": "string",
  5404. "value": "IconContentsLink"
  5405. },
  5406. "position": {
  5407. "type": "list<double>",
  5408. "value": [
  5409. 428.9989985080956,
  5410. 288.999
  5411. ]
  5412. },
  5413. "orientation": {
  5414. "type": "double",
  5415. "value": 0
  5416. },
  5417. "scale": {
  5418. "type": "list<double>",
  5419. "value": [
  5420. 1,
  5421. 1
  5422. ]
  5423. },
  5424. "mapper": {
  5425. "type": "code",
  5426. "value": ""
  5427. },
  5428. "parser": {
  5429. "type": "code",
  5430. "value": ""
  5431. },
  5432. "$contents": {
  5433. "type": "map<string,*>",
  5434. "value": {
  5435. "nodes": {},
  5436. "edges": []
  5437. }
  5438. },
  5439. "$asuri": {
  5440. "type": "string",
  5441. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents/96.instance"
  5442. },
  5443. "$segments": {
  5444. "type": "map<string,list<string>>",
  5445. "value": {
  5446. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconIcon/69.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/96.instance": "M374,226L429,289",
  5447. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/96.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/RectangleIcon/84.instance": "M429.0985656958685,289.11290252435856L483.999527073001,351.99945828361933"
  5448. }
  5449. },
  5450. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink"
  5451. },
  5452. "97": {
  5453. "link-style": {
  5454. "type": "map<string,string>",
  5455. "value": {
  5456. "stroke": "#ff00ff",
  5457. "stroke-dasharray": "",
  5458. "stroke-opacity": 0.1,
  5459. "arrow-start": "none",
  5460. "arrow-end": "classic-wide-long"
  5461. }
  5462. },
  5463. "typename": {
  5464. "type": "string",
  5465. "value": "IconContentsLink"
  5466. },
  5467. "position": {
  5468. "type": "list<double>",
  5469. "value": [
  5470. 429.2489985080956,
  5471. 288.999
  5472. ]
  5473. },
  5474. "orientation": {
  5475. "type": "double",
  5476. "value": 0
  5477. },
  5478. "scale": {
  5479. "type": "list<double>",
  5480. "value": [
  5481. 1,
  5482. 1
  5483. ]
  5484. },
  5485. "mapper": {
  5486. "type": "code",
  5487. "value": ""
  5488. },
  5489. "parser": {
  5490. "type": "code",
  5491. "value": ""
  5492. },
  5493. "$contents": {
  5494. "type": "map<string,*>",
  5495. "value": {
  5496. "nodes": {},
  5497. "edges": []
  5498. }
  5499. },
  5500. "$asuri": {
  5501. "type": "string",
  5502. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents/97.instance"
  5503. },
  5504. "$segments": {
  5505. "type": "map<string,list<string>>",
  5506. "value": {
  5507. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconIcon/69.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/97.instance": "M374,226L429.25,289",
  5508. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/97.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/TextIcon/85.instance": "M429.3490137217589,289.11290252435856L484.49952492333284,351.99945828361933"
  5509. }
  5510. },
  5511. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink"
  5512. },
  5513. "98": {
  5514. "link-style": {
  5515. "type": "map<string,string>",
  5516. "value": {
  5517. "stroke": "#ff00ff",
  5518. "stroke-dasharray": "",
  5519. "stroke-opacity": 0.1,
  5520. "arrow-start": "none",
  5521. "arrow-end": "classic-wide-long"
  5522. }
  5523. },
  5524. "typename": {
  5525. "type": "string",
  5526. "value": "IconContentsLink"
  5527. },
  5528. "position": {
  5529. "type": "list<double>",
  5530. "value": [
  5531. 419.714746706578,
  5532. 286.1184989288895
  5533. ]
  5534. },
  5535. "orientation": {
  5536. "type": "double",
  5537. "value": 0
  5538. },
  5539. "scale": {
  5540. "type": "list<double>",
  5541. "value": [
  5542. 1,
  5543. 1
  5544. ]
  5545. },
  5546. "mapper": {
  5547. "type": "code",
  5548. "value": ""
  5549. },
  5550. "parser": {
  5551. "type": "code",
  5552. "value": ""
  5553. },
  5554. "$contents": {
  5555. "type": "map<string,*>",
  5556. "value": {
  5557. "nodes": {},
  5558. "edges": []
  5559. }
  5560. },
  5561. "$asuri": {
  5562. "type": "string",
  5563. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents/98.instance"
  5564. },
  5565. "$segments": {
  5566. "type": "map<string,list<string>>",
  5567. "value": {
  5568. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconIcon/69.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/98.instance": "M374,226L419.7157481984824,286.11949892888947",
  5569. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/98.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/ContainLink/86.instance": "M419.71550486825106,286.11917893212353L465.2485122793581,345.9983605742175"
  5570. }
  5571. },
  5572. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink"
  5573. },
  5574. "99": {
  5575. "link-style": {
  5576. "type": "map<string,string>",
  5577. "value": {
  5578. "stroke": "#ff00ff",
  5579. "stroke-dasharray": "",
  5580. "stroke-opacity": 0.1,
  5581. "arrow-start": "none",
  5582. "arrow-end": "classic-wide-long"
  5583. }
  5584. },
  5585. "typename": {
  5586. "type": "string",
  5587. "value": "IconContentsLink"
  5588. },
  5589. "position": {
  5590. "type": "list<double>",
  5591. "value": [
  5592. 402.8487865322311,
  5593. 258.6118701444559
  5594. ]
  5595. },
  5596. "orientation": {
  5597. "type": "double",
  5598. "value": 0
  5599. },
  5600. "scale": {
  5601. "type": "list<double>",
  5602. "value": [
  5603. 1,
  5604. 1
  5605. ]
  5606. },
  5607. "mapper": {
  5608. "type": "code",
  5609. "value": ""
  5610. },
  5611. "parser": {
  5612. "type": "code",
  5613. "value": ""
  5614. },
  5615. "$contents": {
  5616. "type": "map<string,*>",
  5617. "value": {
  5618. "nodes": {},
  5619. "edges": []
  5620. }
  5621. },
  5622. "$asuri": {
  5623. "type": "string",
  5624. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents/99.instance"
  5625. },
  5626. "$segments": {
  5627. "type": "map<string,list<string>>",
  5628. "value": {
  5629. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconIcon/69.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/99.instance": "M374,226L402.8497880241355,258.6128701444559",
  5630. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/99.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/ContainLink/87.instance": "M402.79952709198926,258.55605332306175L431.4987654587758,290.9987365524073"
  5631. }
  5632. },
  5633. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink"
  5634. },
  5635. "100": {
  5636. "link-style": {
  5637. "type": "map<string,string>",
  5638. "value": {
  5639. "stroke": "#ff00ff",
  5640. "stroke-dasharray": "",
  5641. "stroke-opacity": 0.1,
  5642. "arrow-start": "none",
  5643. "arrow-end": "classic-wide-long"
  5644. }
  5645. },
  5646. "typename": {
  5647. "type": "string",
  5648. "value": "IconContentsLink"
  5649. },
  5650. "position": {
  5651. "type": "list<double>",
  5652. "value": [
  5653. 403.0223802314599,
  5654. 258.66759528586374
  5655. ]
  5656. },
  5657. "orientation": {
  5658. "type": "double",
  5659. "value": 0
  5660. },
  5661. "scale": {
  5662. "type": "list<double>",
  5663. "value": [
  5664. 1,
  5665. 1
  5666. ]
  5667. },
  5668. "mapper": {
  5669. "type": "code",
  5670. "value": ""
  5671. },
  5672. "parser": {
  5673. "type": "code",
  5674. "value": ""
  5675. },
  5676. "$contents": {
  5677. "type": "map<string,*>",
  5678. "value": {
  5679. "nodes": {},
  5680. "edges": []
  5681. }
  5682. },
  5683. "$asuri": {
  5684. "type": "string",
  5685. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents/100.instance"
  5686. },
  5687. "$segments": {
  5688. "type": "map<string,list<string>>",
  5689. "value": {
  5690. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconIcon/69.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/100.instance": "M374,226L403.0233817233643,258.66859528586383",
  5691. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/100.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/ContainLink/88.instance": "M402.97339888357504,258.61233481353554L431.8470612789075,291.11240665921014"
  5692. }
  5693. },
  5694. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink"
  5695. }
  5696. },
  5697. "edges": [],
  5698. "metamodels": [
  5699. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons"
  5700. ]
  5701. },
  5702. "asm": {
  5703. "nodes": {
  5704. "0": {
  5705. "typename": {
  5706. "type": "string",
  5707. "value": "HTTPDebuggerIcon"
  5708. },
  5709. "position": {
  5710. "type": "list<double>",
  5711. "value": [
  5712. 125,
  5713. 200
  5714. ]
  5715. },
  5716. "orientation": {
  5717. "type": "double",
  5718. "value": 0
  5719. },
  5720. "scale": {
  5721. "type": "list<double>",
  5722. "value": [
  5723. 1,
  5724. 1
  5725. ]
  5726. },
  5727. "mapper": {
  5728. "type": "code",
  5729. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  5730. },
  5731. "parser": {
  5732. "type": "code",
  5733. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5734. },
  5735. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Icon"
  5736. },
  5737. "1": {
  5738. "typename": {
  5739. "type": "string",
  5740. "value": "CustomIcon"
  5741. },
  5742. "position": {
  5743. "type": "list<double>",
  5744. "value": [
  5745. 626,
  5746. 251
  5747. ]
  5748. },
  5749. "orientation": {
  5750. "type": "double",
  5751. "value": 0
  5752. },
  5753. "scale": {
  5754. "type": "list<double>",
  5755. "value": [
  5756. 1,
  5757. 1
  5758. ]
  5759. },
  5760. "mapper": {
  5761. "type": "code",
  5762. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  5763. },
  5764. "parser": {
  5765. "type": "code",
  5766. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5767. },
  5768. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Icon"
  5769. },
  5770. "2": {
  5771. "rx": {
  5772. "type": "double",
  5773. "value": 30
  5774. },
  5775. "ry": {
  5776. "type": "double",
  5777. "value": 40
  5778. },
  5779. "style": {
  5780. "type": "map<string,string>",
  5781. "value": {
  5782. "stroke": "#000000",
  5783. "fill": "lawngreen",
  5784. "stroke-width": 1
  5785. }
  5786. },
  5787. "mapper": {
  5788. "type": "code",
  5789. "value": ""
  5790. },
  5791. "parser": {
  5792. "type": "code",
  5793. "value": ""
  5794. },
  5795. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Ellipse"
  5796. },
  5797. "3": {
  5798. "r": {
  5799. "type": "double",
  5800. "value": 20
  5801. },
  5802. "style": {
  5803. "type": "map<string,string>",
  5804. "value": {
  5805. "stroke": "#000000",
  5806. "fill": "lawngreen",
  5807. "fill-opacity": 1,
  5808. "stroke-width": 1
  5809. }
  5810. },
  5811. "mapper": {
  5812. "type": "code",
  5813. "value": ""
  5814. },
  5815. "parser": {
  5816. "type": "code",
  5817. "value": ""
  5818. },
  5819. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle"
  5820. },
  5821. "15": {
  5822. "r": {
  5823. "type": "double",
  5824. "value": 3
  5825. },
  5826. "style": {
  5827. "type": "map<string,string>",
  5828. "value": {
  5829. "stroke": "#000000",
  5830. "fill": "limegreen",
  5831. "stroke-width": 1
  5832. }
  5833. },
  5834. "mapper": {
  5835. "type": "code",
  5836. "value": ""
  5837. },
  5838. "parser": {
  5839. "type": "code",
  5840. "value": ""
  5841. },
  5842. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle"
  5843. },
  5844. "16": {
  5845. "segments": {
  5846. "type": "string",
  5847. "value": "m0,0l5,10"
  5848. },
  5849. "style": {
  5850. "type": "map<string,string>",
  5851. "value": {
  5852. "stroke": "#000000",
  5853. "stroke-dasharray": "",
  5854. "fill": "#ffffff",
  5855. "fill-opacity": 0.75,
  5856. "font-size": "20px",
  5857. "stroke-width": 2,
  5858. "arrow-start": "none",
  5859. "arrow-end": "none"
  5860. }
  5861. },
  5862. "mapper": {
  5863. "type": "code",
  5864. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  5865. },
  5866. "parser": {
  5867. "type": "code",
  5868. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5869. },
  5870. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path"
  5871. },
  5872. "18": {
  5873. "segments": {
  5874. "type": "string",
  5875. "value": "m0,0l5,10"
  5876. },
  5877. "style": {
  5878. "type": "map<string,string>",
  5879. "value": {
  5880. "stroke": "#000000",
  5881. "stroke-dasharray": "",
  5882. "fill": "#ffffff",
  5883. "fill-opacity": 0.75,
  5884. "font-size": "20px",
  5885. "stroke-width": 2,
  5886. "arrow-start": "none",
  5887. "arrow-end": "none"
  5888. }
  5889. },
  5890. "mapper": {
  5891. "type": "code",
  5892. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  5893. },
  5894. "parser": {
  5895. "type": "code",
  5896. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5897. },
  5898. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path"
  5899. },
  5900. "19": {
  5901. "r": {
  5902. "type": "double",
  5903. "value": 3
  5904. },
  5905. "style": {
  5906. "type": "map<string,string>",
  5907. "value": {
  5908. "stroke": "#000000",
  5909. "fill": "limegreen",
  5910. "stroke-width": 1
  5911. }
  5912. },
  5913. "mapper": {
  5914. "type": "code",
  5915. "value": ""
  5916. },
  5917. "parser": {
  5918. "type": "code",
  5919. "value": ""
  5920. },
  5921. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle"
  5922. },
  5923. "20": {
  5924. "width": {
  5925. "type": "double",
  5926. "value": 30
  5927. },
  5928. "height": {
  5929. "type": "double",
  5930. "value": 5
  5931. },
  5932. "cornerRadius": {
  5933. "type": "double",
  5934. "value": 5
  5935. },
  5936. "style": {
  5937. "type": "map<string,string>",
  5938. "value": {
  5939. "stroke": "#000000",
  5940. "fill": "limegreen",
  5941. "stroke-width": 1
  5942. }
  5943. },
  5944. "mapper": {
  5945. "type": "code",
  5946. "value": ""
  5947. },
  5948. "parser": {
  5949. "type": "code",
  5950. "value": ""
  5951. },
  5952. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle"
  5953. },
  5954. "21": {
  5955. "width": {
  5956. "type": "double",
  5957. "value": 30
  5958. },
  5959. "height": {
  5960. "type": "double",
  5961. "value": 5
  5962. },
  5963. "cornerRadius": {
  5964. "type": "double",
  5965. "value": 5
  5966. },
  5967. "style": {
  5968. "type": "map<string,string>",
  5969. "value": {
  5970. "stroke": "#000000",
  5971. "fill": "limegreen",
  5972. "stroke-width": 1
  5973. }
  5974. },
  5975. "mapper": {
  5976. "type": "code",
  5977. "value": ""
  5978. },
  5979. "parser": {
  5980. "type": "code",
  5981. "value": ""
  5982. },
  5983. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle"
  5984. },
  5985. "22": {
  5986. "width": {
  5987. "type": "double",
  5988. "value": 30
  5989. },
  5990. "height": {
  5991. "type": "double",
  5992. "value": 5
  5993. },
  5994. "cornerRadius": {
  5995. "type": "double",
  5996. "value": 5
  5997. },
  5998. "style": {
  5999. "type": "map<string,string>",
  6000. "value": {
  6001. "stroke": "#000000",
  6002. "fill": "limegreen",
  6003. "stroke-width": 1
  6004. }
  6005. },
  6006. "mapper": {
  6007. "type": "code",
  6008. "value": ""
  6009. },
  6010. "parser": {
  6011. "type": "code",
  6012. "value": ""
  6013. },
  6014. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle"
  6015. },
  6016. "23": {
  6017. "width": {
  6018. "type": "double",
  6019. "value": 30
  6020. },
  6021. "height": {
  6022. "type": "double",
  6023. "value": 5
  6024. },
  6025. "cornerRadius": {
  6026. "type": "double",
  6027. "value": 5
  6028. },
  6029. "style": {
  6030. "type": "map<string,string>",
  6031. "value": {
  6032. "stroke": "#000000",
  6033. "fill": "limegreen",
  6034. "stroke-width": 1
  6035. }
  6036. },
  6037. "mapper": {
  6038. "type": "code",
  6039. "value": ""
  6040. },
  6041. "parser": {
  6042. "type": "code",
  6043. "value": ""
  6044. },
  6045. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle"
  6046. },
  6047. "24": {
  6048. "width": {
  6049. "type": "double",
  6050. "value": 30
  6051. },
  6052. "height": {
  6053. "type": "double",
  6054. "value": 5
  6055. },
  6056. "cornerRadius": {
  6057. "type": "double",
  6058. "value": 5
  6059. },
  6060. "style": {
  6061. "type": "map<string,string>",
  6062. "value": {
  6063. "stroke": "#000000",
  6064. "fill": "limegreen",
  6065. "stroke-width": 1
  6066. }
  6067. },
  6068. "mapper": {
  6069. "type": "code",
  6070. "value": ""
  6071. },
  6072. "parser": {
  6073. "type": "code",
  6074. "value": ""
  6075. },
  6076. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle"
  6077. },
  6078. "25": {
  6079. "width": {
  6080. "type": "double",
  6081. "value": 30
  6082. },
  6083. "height": {
  6084. "type": "double",
  6085. "value": 5
  6086. },
  6087. "cornerRadius": {
  6088. "type": "double",
  6089. "value": 5
  6090. },
  6091. "style": {
  6092. "type": "map<string,string>",
  6093. "value": {
  6094. "stroke": "#000000",
  6095. "fill": "limegreen",
  6096. "stroke-width": 1
  6097. }
  6098. },
  6099. "mapper": {
  6100. "type": "code",
  6101. "value": ""
  6102. },
  6103. "parser": {
  6104. "type": "code",
  6105. "value": ""
  6106. },
  6107. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle"
  6108. },
  6109. "26": {
  6110. "width": {
  6111. "type": "double",
  6112. "value": 30
  6113. },
  6114. "height": {
  6115. "type": "double",
  6116. "value": 5
  6117. },
  6118. "cornerRadius": {
  6119. "type": "double",
  6120. "value": 5
  6121. },
  6122. "style": {
  6123. "type": "map<string,string>",
  6124. "value": {
  6125. "stroke": "#000000",
  6126. "fill": "limegreen",
  6127. "stroke-width": 1
  6128. }
  6129. },
  6130. "mapper": {
  6131. "type": "code",
  6132. "value": ""
  6133. },
  6134. "parser": {
  6135. "type": "code",
  6136. "value": ""
  6137. },
  6138. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle"
  6139. },
  6140. "27": {
  6141. "width": {
  6142. "type": "double",
  6143. "value": 30
  6144. },
  6145. "height": {
  6146. "type": "double",
  6147. "value": 5
  6148. },
  6149. "cornerRadius": {
  6150. "type": "double",
  6151. "value": 5
  6152. },
  6153. "style": {
  6154. "type": "map<string,string>",
  6155. "value": {
  6156. "stroke": "#000000",
  6157. "fill": "limegreen",
  6158. "stroke-width": 1
  6159. }
  6160. },
  6161. "mapper": {
  6162. "type": "code",
  6163. "value": ""
  6164. },
  6165. "parser": {
  6166. "type": "code",
  6167. "value": ""
  6168. },
  6169. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle"
  6170. },
  6171. "34": {
  6172. "width": {
  6173. "type": "double",
  6174. "value": 70
  6175. },
  6176. "height": {
  6177. "type": "double",
  6178. "value": 30
  6179. },
  6180. "cornerRadius": {
  6181. "type": "double",
  6182. "value": 10
  6183. },
  6184. "style": {
  6185. "type": "map<string,string>",
  6186. "value": {
  6187. "stroke": "orangered",
  6188. "stroke-dasharray": "",
  6189. "fill": "orange",
  6190. "fill-opacity": 1,
  6191. "font-size": "20px",
  6192. "stroke-width": 1,
  6193. "arrow-start": "none",
  6194. "arrow-end": "none"
  6195. }
  6196. },
  6197. "mapper": {
  6198. "type": "code",
  6199. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  6200. },
  6201. "parser": {
  6202. "type": "code",
  6203. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6204. },
  6205. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle"
  6206. },
  6207. "35": {
  6208. "textContent": {
  6209. "type": "string",
  6210. "value": "HTTP"
  6211. },
  6212. "style": {
  6213. "type": "map<string,string>",
  6214. "value": {
  6215. "stroke": "#ffffff",
  6216. "stroke-dasharray": "",
  6217. "fill": "#ffffff",
  6218. "fill-opacity": 1,
  6219. "font-size": "20px",
  6220. "stroke-width": 1,
  6221. "arrow-start": "none",
  6222. "arrow-end": "none"
  6223. }
  6224. },
  6225. "mapper": {
  6226. "type": "code",
  6227. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  6228. },
  6229. "parser": {
  6230. "type": "code",
  6231. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6232. },
  6233. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  6234. },
  6235. "36": {
  6236. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain"
  6237. },
  6238. "39": {
  6239. "width": {
  6240. "type": "double",
  6241. "value": 30
  6242. },
  6243. "height": {
  6244. "type": "double",
  6245. "value": 130
  6246. },
  6247. "cornerRadius": {
  6248. "type": "double",
  6249. "value": 5
  6250. },
  6251. "style": {
  6252. "type": "map<string,string>",
  6253. "value": {
  6254. "fill": "gray",
  6255. "fill-opacity": 1,
  6256. "stroke-width": 2
  6257. }
  6258. },
  6259. "mapper": {
  6260. "type": "code",
  6261. "value": ""
  6262. },
  6263. "parser": {
  6264. "type": "code",
  6265. "value": ""
  6266. },
  6267. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle"
  6268. },
  6269. "40": {
  6270. "width": {
  6271. "type": "double",
  6272. "value": 30
  6273. },
  6274. "height": {
  6275. "type": "double",
  6276. "value": 130
  6277. },
  6278. "cornerRadius": {
  6279. "type": "double",
  6280. "value": 5
  6281. },
  6282. "style": {
  6283. "type": "map<string,string>",
  6284. "value": {
  6285. "fill": "gray",
  6286. "fill-opacity": 1,
  6287. "stroke-width": 2
  6288. }
  6289. },
  6290. "mapper": {
  6291. "type": "code",
  6292. "value": ""
  6293. },
  6294. "parser": {
  6295. "type": "code",
  6296. "value": ""
  6297. },
  6298. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle"
  6299. },
  6300. "41": {
  6301. "width": {
  6302. "type": "double",
  6303. "value": 30
  6304. },
  6305. "height": {
  6306. "type": "double",
  6307. "value": 130
  6308. },
  6309. "cornerRadius": {
  6310. "type": "double",
  6311. "value": 5
  6312. },
  6313. "style": {
  6314. "type": "map<string,string>",
  6315. "value": {
  6316. "fill": "gray",
  6317. "fill-opacity": 1,
  6318. "stroke-width": 2
  6319. }
  6320. },
  6321. "mapper": {
  6322. "type": "code",
  6323. "value": ""
  6324. },
  6325. "parser": {
  6326. "type": "code",
  6327. "value": ""
  6328. },
  6329. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle"
  6330. },
  6331. "42": {
  6332. "width": {
  6333. "type": "double",
  6334. "value": 30
  6335. },
  6336. "height": {
  6337. "type": "double",
  6338. "value": 130
  6339. },
  6340. "cornerRadius": {
  6341. "type": "double",
  6342. "value": 5
  6343. },
  6344. "style": {
  6345. "type": "map<string,string>",
  6346. "value": {
  6347. "fill": "gray",
  6348. "fill-opacity": 1,
  6349. "stroke-width": 2
  6350. }
  6351. },
  6352. "mapper": {
  6353. "type": "code",
  6354. "value": ""
  6355. },
  6356. "parser": {
  6357. "type": "code",
  6358. "value": ""
  6359. },
  6360. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle"
  6361. },
  6362. "43": {
  6363. "r": {
  6364. "type": "double",
  6365. "value": 47
  6366. },
  6367. "style": {
  6368. "type": "map<string,string>",
  6369. "value": {
  6370. "fill": "gray",
  6371. "stroke": "gray",
  6372. "fill-opacity": 1,
  6373. "stroke-width": 2
  6374. }
  6375. },
  6376. "mapper": {
  6377. "type": "code",
  6378. "value": ""
  6379. },
  6380. "parser": {
  6381. "type": "code",
  6382. "value": ""
  6383. },
  6384. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle"
  6385. },
  6386. "44": {
  6387. "r": {
  6388. "type": "double",
  6389. "value": 20
  6390. },
  6391. "style": {
  6392. "type": "map<string,string>",
  6393. "value": {
  6394. "fill": "white",
  6395. "fill-opacity": 1,
  6396. "stroke-width": 2
  6397. }
  6398. },
  6399. "mapper": {
  6400. "type": "code",
  6401. "value": ""
  6402. },
  6403. "parser": {
  6404. "type": "code",
  6405. "value": ""
  6406. },
  6407. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle"
  6408. },
  6409. "46": {
  6410. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents"
  6411. },
  6412. "47": {
  6413. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents"
  6414. },
  6415. "48": {
  6416. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents"
  6417. },
  6418. "49": {
  6419. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents"
  6420. },
  6421. "50": {
  6422. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents"
  6423. },
  6424. "51": {
  6425. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents"
  6426. },
  6427. "52": {
  6428. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents"
  6429. },
  6430. "53": {
  6431. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents"
  6432. },
  6433. "54": {
  6434. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents"
  6435. },
  6436. "55": {
  6437. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents"
  6438. },
  6439. "56": {
  6440. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents"
  6441. },
  6442. "57": {
  6443. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents"
  6444. },
  6445. "58": {
  6446. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents"
  6447. },
  6448. "59": {
  6449. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents"
  6450. },
  6451. "60": {
  6452. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents"
  6453. },
  6454. "61": {
  6455. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents"
  6456. },
  6457. "62": {
  6458. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents"
  6459. },
  6460. "63": {
  6461. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents"
  6462. },
  6463. "64": {
  6464. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents"
  6465. },
  6466. "65": {
  6467. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents"
  6468. },
  6469. "66": {
  6470. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents"
  6471. },
  6472. "67": {
  6473. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents"
  6474. },
  6475. "68": {
  6476. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents"
  6477. },
  6478. "69": {
  6479. "typename": {
  6480. "type": "string",
  6481. "value": "HTTPPerfMonitorIcon"
  6482. },
  6483. "position": {
  6484. "type": "list<double>",
  6485. "value": [
  6486. 374,
  6487. 226
  6488. ]
  6489. },
  6490. "orientation": {
  6491. "type": "double",
  6492. "value": 0
  6493. },
  6494. "scale": {
  6495. "type": "list<double>",
  6496. "value": [
  6497. 1,
  6498. 1
  6499. ]
  6500. },
  6501. "mapper": {
  6502. "type": "code",
  6503. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  6504. },
  6505. "parser": {
  6506. "type": "code",
  6507. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6508. },
  6509. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Icon"
  6510. },
  6511. "73": {
  6512. "width": {
  6513. "type": "double",
  6514. "value": 125
  6515. },
  6516. "height": {
  6517. "type": "double",
  6518. "value": 125
  6519. },
  6520. "cornerRadius": {
  6521. "type": "double",
  6522. "value": 5
  6523. },
  6524. "style": {
  6525. "type": "map<string,string>",
  6526. "value": {
  6527. "stroke": "#888888",
  6528. "stroke-dasharray": "",
  6529. "fill": "#000000",
  6530. "fill-opacity": 0.75,
  6531. "font-size": "20px",
  6532. "stroke-width": 8,
  6533. "arrow-start": "none",
  6534. "arrow-end": "none"
  6535. }
  6536. },
  6537. "mapper": {
  6538. "type": "code",
  6539. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  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/Rectangle"
  6546. },
  6547. "78": {
  6548. "segments": {
  6549. "type": "string",
  6550. "value": "m 216.41616,565.72776 c 0.60046,0.01 1.16602,-0.27815 1.67278,-0.6004 0.74606,-0.47442 1.40637,-1.07165 2.03961,-1.68865 1.80692,-1.7606 3.40125,-3.72523 5.00608,-5.67181 1.96698,-2.38586 3.91269,-4.79028 5.95258,-7.11411 2.04934,-2.33458 4.18405,-4.60516 6.55192,-6.61594 2.04032,-1.73262 4.26916,-3.31756 6.80407,-4.1773 2.17393,-0.7373 4.62682,-0.76464 6.70902,0.2018 2.77726,1.28904 4.74225,3.86609 6.26682,6.52136 2.62399,4.57008 4.18024,9.67362 5.47739,14.7813 10e-6,3e-5 10e-6,6e-5 2e-5,9e-5 1.70492,6.71337 3.06797,13.50843 4.42259,20.30115 1.61672,8.10698 3.16496,16.22753 4.79761,24.33131 1.58051,7.84499 3.21726,15.68126 5.15094,23.44675 0.8232,3.30588 1.70089,6.59915 2.70121,9.85581 0.81011,2.63743 1.69085,5.2573 2.78142,7.79166 0.7741,1.79893 1.62476,3.59255 2.85892,5.11316 0.42063,0.51826 0.89273,1.0047 1.45768,1.36016 0.44234,0.27832 0.95346,0.4656 1.47604,0.46017 0.53486,-0.006 1.05294,-0.21414 1.49407,-0.51663 0.60215,-0.41291 1.08654,-0.97663 1.51172,-1.57018 10e-6,-2e-5 2e-5,-3e-5 2e-5,-4e-5 1.41939,-1.98148 2.28516,-4.30256 3.0752,-6.60836 1.31419,-3.83562 2.27576,-7.78329 3.14186,-11.74421 1.26661,-5.79255 2.2843,-11.63705 3.20583,-17.49441 0,0 0,0 0,0 2.85449,-18.14353 4.81717,-36.41602 6.59273,-54.69669 0,-2e-5 0,-3e-5 0,-5e-5 4.66003,-47.97848 7.62228,-96.1078 10.01011,-144.25288 0,0 0,0 0,0 1.92286,-38.77017 3.34556,-77.56311 4.75761,-116.35525 0.22048,-6.05701 0.44213,-12.114 0.69111,-18.1699 0.16523,-4.01896 0.33077,-8.03827 0.57776,-12.05303 0.071,-1.15422 0.14567,-2.30852 0.2598,-3.45927 0,-3e-5 10e-6,-6e-5 10e-6,-9e-5 0.0345,-0.34751 0.0719,-0.6949 0.12499,-1.04006 0.0292,-0.1898 0.0541,-0.38268 0.1226,-0.56208 0.008,-0.0222 0.0179,-0.0441 0.0304,-0.0642 0.008,-0.0129 0.0172,-0.0256 0.0303,-0.0333 0.009,-0.005 0.0206,-0.006 0.0302,-0.002 0.0129,0.006 0.0222,0.0174 0.0301,0.0292 0.0306,0.0458 0.0454,0.10029 0.06,0.15341 0.0255,0.0925 0.0435,0.1869 0.0598,0.28145 10e-6,2e-5 2e-5,5e-5 2e-5,8e-5 0.0546,0.31579 0.0882,0.63481 0.11947,0.95374 0.0486,0.49473 0.0859,0.9905 0.1198,1.48645 0.26281,3.84324 0.37264,7.69526 0.49565,11.54551 0.22531,7.05251 0.39365,14.10672 0.55426,21.161 0.56662,24.8873 1.0056,49.77732 1.45627,74.66699 0,1e-5 0,3e-5 0,4e-5 0,2e-5 0,3e-5 0,5e-5 0,0 0,0 0,0 1.01587,56.10473 2.53681,112.20365 5.06218,168.26072 0,0 0,0 0,0 0.91192,20.24241 1.95681,40.47938 3.25347,60.70079 0,0 0,0 0,0 0.94102,14.67522 1.99387,29.34503 3.39074,43.9839 0.49256,5.16187 1.02858,10.31999 1.66614,15.46596 0.45476,3.67058 0.95016,7.33768 1.6036,10.97815 0.22684,1.26374 0.47304,2.52441 0.76826,3.77395 0,2e-5 1e-5,3e-5 1e-5,5e-5 0.2083,0.88162 0.43559,1.76045 0.74053,2.61348 0.18085,0.50589 0.3695,1.02352 0.70876,1.44009 0.0934,0.11468 0.20278,0.22367 0.34112,0.27598 3e-5,10e-6 5e-5,2e-5 8e-5,3e-5 0.10707,0.0405 0.23043,0.0311 0.33175,-0.0222 0.13564,-0.0713 0.23646,-0.19466 0.32178,-0.32193 0.12956,-0.19327 0.22585,-0.40692 0.31132,-0.62332 0.27415,-0.69409 0.43972,-1.42606 0.58923,-2.1572 0.53906,-2.63599 0.79448,-5.32154 1.03068,-8.00169 10e-6,-3e-5 10e-6,-6e-5 10e-6,-9e-5 0.91147,-10.34235 1.15079,-20.73213 1.35727,-31.11251 0.25048,-12.59239 1.32146,-25.22915 4.32604,-37.4604 2.11627,-8.61502 5.24385,-17.05856 10.07659,-24.49777 10e-6,-1e-5 2e-5,-2e-5 3e-5,-4e-5 3.73429,-5.74831 8.53863,-10.81041 14.16069,-14.73221 2e-5,-10e-6 5e-5,-3e-5 7e-5,-5e-5 5.06846,-3.5356 10.73626,-6.14806 16.57814,-8.16355 2e-5,0 3e-5,-1e-5 5e-5,-1e-5 5.66775,-1.95541 11.50365,-3.37483 17.32933,-4.79203 5.52549,-1.34418 11.06914,-2.67543 16.4139,-4.61745 4.97744,-1.80854 9.8017,-4.20435 13.83197,-7.63986 2e-5,-2e-5 5e-5,-4e-5 7e-5,-6e-5 4.32067,-3.68306 7.55374,-8.55702 9.58347,-13.85922 10e-6,-3e-5 2e-5,-6e-5 3e-5,-8e-5 1.20482,-3.14735 2.01427,-6.43231 2.71581,-9.72855 0.90336,-4.24446 1.58683,-8.53317 2.17747,-12.83231 0,-3e-5 1e-5,-6e-5 1e-5,-9e-5 1.42241,-10.35349 2.30776,-20.77395 3.03562,-31.19931 0.75066,-10.75206 1.29576,-21.51753 1.76958,-32.28535 0,-3e-5 0,-6e-5 0,-9e-5 0.37868,-8.60564 0.68563,-17.21444 1.09517,-25.81867 0.12898,-2.70985 0.2591,-5.42032 0.47957,-8.12426 0.0668,-0.81941 0.13906,-1.63892 0.25513,-2.45281 0.0369,-0.25886 0.0778,-0.5174 0.13545,-0.77245 0.0348,-0.15384 0.0701,-0.30988 0.14224,-0.45015 0.0191,-0.0371 0.0408,-0.0744 0.074,-0.0996 3e-5,-2e-5 5e-5,-4e-5 8e-5,-5e-5 0.0216,-0.0163 0.0509,-0.0233 0.0761,-0.0135 1e-5,10e-6 2e-5,10e-6 4e-5,2e-5 0.0341,0.0133 0.0581,0.0441 0.0784,0.0745 0.034,0.0508 0.0586,0.10733 0.0809,0.16426 0.0764,0.19528 0.12438,0.40048 0.16956,0.60527 10e-6,3e-5 2e-5,6e-5 2e-5,9e-5 0.072,0.32652 0.1287,0.65624 0.18096,0.9865 0.42211,2.66738 0.63116,5.3637 0.86121,8.05446 1.10701,12.94781 1.84098,25.92451 2.62174,38.89608 1.51598,25.18636 2.91425,50.37965 4.31387,75.57274 1.38999,25.01977 2.8625,50.03833 4.94198,75.01025 0,0 0,0 0,0 0.63867,7.66971 1.33476,15.33561 2.21576,22.98127 0,0 0,0 0,0 0.56547,4.90732 1.17958,9.81338 2.09554,14.6675 0.28742,1.52317 0.60464,3.04199 1.01439,4.5369 0.26589,0.97007 0.55843,1.93887 0.99836,2.84342 2e-5,3e-5 3e-5,5e-5 4e-5,8e-5 0,0 0,0 0,0 0.1407,0.28927 0.29752,0.57246 0.4946,0.82668 0.13738,0.17721 0.29575,0.34379 0.49239,0.45152 0,0 0,0 0,0 0.14883,0.0815 0.32335,0.12029 0.49073,0.0923 0,0 0,0 0,0 0.18308,-0.0306 0.34834,-0.13041 0.48961,-0.25083 1e-5,-10e-6 2e-5,-2e-5 3e-5,-3e-5 0.45033,-0.38386 0.72624,-0.93167 0.97838,-1.467 0,-10e-6 1e-5,-3e-5 1e-5,-4e-5 0.4013,-0.85203 0.70385,-1.74715 0.9811,-2.64722 0,0 0,0 0,0 0.8399,-2.72671 1.42956,-5.52391 1.98901,-8.32166 1.66746,-8.33886 2.91701,-16.75503 4.21635,-25.15913 0,0 0,0 0,0 1.53066,-9.90017 3.03735,-19.80518 4.78372,-29.66959 0,0 0,0 0,0 0.82625,-4.66705 1.70507,-9.32534 2.69822,-13.95973 0.86385,-4.03102 1.80685,-8.04729 2.95235,-12.00748 1e-5,-3e-5 2e-5,-6e-5 3e-5,-9e-5 0.88949,-3.07512 1.87587,-6.13469 3.24397,-9.0288 10e-6,-3e-5 2e-5,-6e-5 4e-5,-9e-5 0.50432,-1.06686 1.06307,-2.11197 1.74299,-3.07647 0.51553,-0.7313 1.10189,-1.42683 1.82997,-1.94689 1.02452,-0.7318 2.13537,-1.38127 3.35884,-1.67839 0.87861,-0.21337 1.82479,-0.20353 2.66495,0.13056 0.83786,0.33318 1.53795,0.95024 2.10365,1.6524 0.69998,0.86882 1.22437,1.86641 1.67496,2.8871 1.17585,2.66353 1.89073,5.50462 2.59434,8.32985 1e-5,3e-5 2e-5,6e-5 3e-5,9e-5 0.816,3.2765 1.55506,6.57317 2.47093,9.82316 0.87349,3.09965 1.88091,6.18464 3.40845,9.01968 1.28605,2.38686 3.01425,4.64378 5.40684,5.91914 1.16611,0.6216 2.46644,0.98247 3.78434,1.07907 3e-5,10e-6 6e-5,10e-6 9e-5,10e-6 1.57541,0.11547 3.16223,-0.1254 4.68164,-0.55742 0,0 0,0 0,0 10e-6,-1e-5 3e-5,-1e-5 4e-5,-1e-5 0,0 0,0 0,0 4.67231,-1.32854 8.7667,-4.17173 12.58625,-7.1728 2e-5,-10e-6 3e-5,-2e-5 4e-5,-3e-5 0,0 0,0 0,0 13.66629,-10.7378 28.33142,-20.71305 44.86749,-26.06338 3e-5,-1e-5 6e-5,-2e-5 9e-5,-3e-5 3.6385,-1.17725 7.37356,-2.11665 11.18218,-2.4617 0,0 0,0 0,0 3e-5,0 6e-5,0 9e-5,0 0.92931,-0.0842 1.86295,-0.13258 2.79574,-0.108 2e-5,0 3e-5,10e-6 5e-5,10e-6 0.23404,0.006 0.46803,0.0169 0.70132,0.0368 0.059,0.005 0.11796,0.0106 0.17679,0.0173 l 0.061,0.008 c 3e-5,10e-6 4e-5,10e-6 4e-5,10e-6"
  6551. },
  6552. "style": {
  6553. "type": "map<string,string>",
  6554. "value": {
  6555. "stroke": "MediumSpringGreen",
  6556. "fill-opacity": 0,
  6557. "stroke-width": 3
  6558. }
  6559. },
  6560. "mapper": {
  6561. "type": "code",
  6562. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  6563. },
  6564. "parser": {
  6565. "type": "code",
  6566. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6567. },
  6568. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path"
  6569. },
  6570. "79": {
  6571. "segments": {
  6572. "type": "string",
  6573. "value": "m 216.41616,565.72776 c 0.60046,0.01 1.16602,-0.27815 1.67278,-0.6004 0.74606,-0.47442 1.40637,-1.07165 2.03961,-1.68865 1.80692,-1.7606 3.40125,-3.72523 5.00608,-5.67181 1.96698,-2.38586 3.91269,-4.79028 5.95258,-7.11411 2.04934,-2.33458 4.18405,-4.60516 6.55192,-6.61594 2.04032,-1.73262 4.26916,-3.31756 6.80407,-4.1773 2.17393,-0.7373 4.62682,-0.76464 6.70902,0.2018 2.77726,1.28904 4.74225,3.86609 6.26682,6.52136 2.62399,4.57008 4.18024,9.67362 5.47739,14.7813 10e-6,3e-5 10e-6,6e-5 2e-5,9e-5 1.70492,6.71337 3.06797,13.50843 4.42259,20.30115 1.61672,8.10698 3.16496,16.22753 4.79761,24.33131 1.58051,7.84499 3.21726,15.68126 5.15094,23.44675 0.8232,3.30588 1.70089,6.59915 2.70121,9.85581 0.81011,2.63743 1.69085,5.2573 2.78142,7.79166 0.7741,1.79893 1.62476,3.59255 2.85892,5.11316 0.42063,0.51826 0.89273,1.0047 1.45768,1.36016 0.44234,0.27832 0.95346,0.4656 1.47604,0.46017 0.53486,-0.006 1.05294,-0.21414 1.49407,-0.51663 0.60215,-0.41291 1.08654,-0.97663 1.51172,-1.57018 10e-6,-2e-5 2e-5,-3e-5 2e-5,-4e-5 1.41939,-1.98148 2.28516,-4.30256 3.0752,-6.60836 1.31419,-3.83562 2.27576,-7.78329 3.14186,-11.74421 1.26661,-5.79255 2.2843,-11.63705 3.20583,-17.49441 0,0 0,0 0,0 2.85449,-18.14353 4.81717,-36.41602 6.59273,-54.69669 0,-2e-5 0,-3e-5 0,-5e-5 4.66003,-47.97848 7.62228,-96.1078 10.01011,-144.25288 0,0 0,0 0,0 1.92286,-38.77017 3.34556,-77.56311 4.75761,-116.35525 0.22048,-6.05701 0.44213,-12.114 0.69111,-18.1699 0.16523,-4.01896 0.33077,-8.03827 0.57776,-12.05303 0.071,-1.15422 0.14567,-2.30852 0.2598,-3.45927 0,-3e-5 10e-6,-6e-5 10e-6,-9e-5 0.0345,-0.34751 0.0719,-0.6949 0.12499,-1.04006 0.0292,-0.1898 0.0541,-0.38268 0.1226,-0.56208 0.008,-0.0222 0.0179,-0.0441 0.0304,-0.0642 0.008,-0.0129 0.0172,-0.0256 0.0303,-0.0333 0.009,-0.005 0.0206,-0.006 0.0302,-0.002 0.0129,0.006 0.0222,0.0174 0.0301,0.0292 0.0306,0.0458 0.0454,0.10029 0.06,0.15341 0.0255,0.0925 0.0435,0.1869 0.0598,0.28145 10e-6,2e-5 2e-5,5e-5 2e-5,8e-5 0.0546,0.31579 0.0882,0.63481 0.11947,0.95374 0.0486,0.49473 0.0859,0.9905 0.1198,1.48645 0.26281,3.84324 0.37264,7.69526 0.49565,11.54551 0.22531,7.05251 0.39365,14.10672 0.55426,21.161 0.56662,24.8873 1.0056,49.77732 1.45627,74.66699 0,1e-5 0,3e-5 0,4e-5 0,2e-5 0,3e-5 0,5e-5 0,0 0,0 0,0 1.01587,56.10473 2.53681,112.20365 5.06218,168.26072 0,0 0,0 0,0 0.91192,20.24241 1.95681,40.47938 3.25347,60.70079 0,0 0,0 0,0 0.94102,14.67522 1.99387,29.34503 3.39074,43.9839 0.49256,5.16187 1.02858,10.31999 1.66614,15.46596 0.45476,3.67058 0.95016,7.33768 1.6036,10.97815 0.22684,1.26374 0.47304,2.52441 0.76826,3.77395 0,2e-5 1e-5,3e-5 1e-5,5e-5 0.2083,0.88162 0.43559,1.76045 0.74053,2.61348 0.18085,0.50589 0.3695,1.02352 0.70876,1.44009 0.0934,0.11468 0.20278,0.22367 0.34112,0.27598 3e-5,10e-6 5e-5,2e-5 8e-5,3e-5 0.10707,0.0405 0.23043,0.0311 0.33175,-0.0222 0.13564,-0.0713 0.23646,-0.19466 0.32178,-0.32193 0.12956,-0.19327 0.22585,-0.40692 0.31132,-0.62332 0.27415,-0.69409 0.43972,-1.42606 0.58923,-2.1572 0.53906,-2.63599 0.79448,-5.32154 1.03068,-8.00169 10e-6,-3e-5 10e-6,-6e-5 10e-6,-9e-5 0.91147,-10.34235 1.15079,-20.73213 1.35727,-31.11251 0.25048,-12.59239 1.32146,-25.22915 4.32604,-37.4604 2.11627,-8.61502 5.24385,-17.05856 10.07659,-24.49777 10e-6,-1e-5 2e-5,-2e-5 3e-5,-4e-5 3.73429,-5.74831 8.53863,-10.81041 14.16069,-14.73221 2e-5,-10e-6 5e-5,-3e-5 7e-5,-5e-5 5.06846,-3.5356 10.73626,-6.14806 16.57814,-8.16355 2e-5,0 3e-5,-1e-5 5e-5,-1e-5 5.66775,-1.95541 11.50365,-3.37483 17.32933,-4.79203 5.52549,-1.34418 11.06914,-2.67543 16.4139,-4.61745 4.97744,-1.80854 9.8017,-4.20435 13.83197,-7.63986 2e-5,-2e-5 5e-5,-4e-5 7e-5,-6e-5 4.32067,-3.68306 7.55374,-8.55702 9.58347,-13.85922 10e-6,-3e-5 2e-5,-6e-5 3e-5,-8e-5 1.20482,-3.14735 2.01427,-6.43231 2.71581,-9.72855 0.90336,-4.24446 1.58683,-8.53317 2.17747,-12.83231 0,-3e-5 1e-5,-6e-5 1e-5,-9e-5 1.42241,-10.35349 2.30776,-20.77395 3.03562,-31.19931 0.75066,-10.75206 1.29576,-21.51753 1.76958,-32.28535 0,-3e-5 0,-6e-5 0,-9e-5 0.37868,-8.60564 0.68563,-17.21444 1.09517,-25.81867 0.12898,-2.70985 0.2591,-5.42032 0.47957,-8.12426 0.0668,-0.81941 0.13906,-1.63892 0.25513,-2.45281 0.0369,-0.25886 0.0778,-0.5174 0.13545,-0.77245 0.0348,-0.15384 0.0701,-0.30988 0.14224,-0.45015 0.0191,-0.0371 0.0408,-0.0744 0.074,-0.0996 3e-5,-2e-5 5e-5,-4e-5 8e-5,-5e-5 0.0216,-0.0163 0.0509,-0.0233 0.0761,-0.0135 1e-5,10e-6 2e-5,10e-6 4e-5,2e-5 0.0341,0.0133 0.0581,0.0441 0.0784,0.0745 0.034,0.0508 0.0586,0.10733 0.0809,0.16426 0.0764,0.19528 0.12438,0.40048 0.16956,0.60527 10e-6,3e-5 2e-5,6e-5 2e-5,9e-5 0.072,0.32652 0.1287,0.65624 0.18096,0.9865 0.42211,2.66738 0.63116,5.3637 0.86121,8.05446 1.10701,12.94781 1.84098,25.92451 2.62174,38.89608 1.51598,25.18636 2.91425,50.37965 4.31387,75.57274 1.38999,25.01977 2.8625,50.03833 4.94198,75.01025 0,0 0,0 0,0 0.63867,7.66971 1.33476,15.33561 2.21576,22.98127 0,0 0,0 0,0 0.56547,4.90732 1.17958,9.81338 2.09554,14.6675 0.28742,1.52317 0.60464,3.04199 1.01439,4.5369 0.26589,0.97007 0.55843,1.93887 0.99836,2.84342 2e-5,3e-5 3e-5,5e-5 4e-5,8e-5 0,0 0,0 0,0 0.1407,0.28927 0.29752,0.57246 0.4946,0.82668 0.13738,0.17721 0.29575,0.34379 0.49239,0.45152 0,0 0,0 0,0 0.14883,0.0815 0.32335,0.12029 0.49073,0.0923 0,0 0,0 0,0 0.18308,-0.0306 0.34834,-0.13041 0.48961,-0.25083 1e-5,-10e-6 2e-5,-2e-5 3e-5,-3e-5 0.45033,-0.38386 0.72624,-0.93167 0.97838,-1.467 0,-10e-6 1e-5,-3e-5 1e-5,-4e-5 0.4013,-0.85203 0.70385,-1.74715 0.9811,-2.64722 0,0 0,0 0,0 0.8399,-2.72671 1.42956,-5.52391 1.98901,-8.32166 1.66746,-8.33886 2.91701,-16.75503 4.21635,-25.15913 0,0 0,0 0,0 1.53066,-9.90017 3.03735,-19.80518 4.78372,-29.66959 0,0 0,0 0,0 0.82625,-4.66705 1.70507,-9.32534 2.69822,-13.95973 0.86385,-4.03102 1.80685,-8.04729 2.95235,-12.00748 1e-5,-3e-5 2e-5,-6e-5 3e-5,-9e-5 0.88949,-3.07512 1.87587,-6.13469 3.24397,-9.0288 10e-6,-3e-5 2e-5,-6e-5 4e-5,-9e-5 0.50432,-1.06686 1.06307,-2.11197 1.74299,-3.07647 0.51553,-0.7313 1.10189,-1.42683 1.82997,-1.94689 1.02452,-0.7318 2.13537,-1.38127 3.35884,-1.67839 0.87861,-0.21337 1.82479,-0.20353 2.66495,0.13056 0.83786,0.33318 1.53795,0.95024 2.10365,1.6524 0.69998,0.86882 1.22437,1.86641 1.67496,2.8871 1.17585,2.66353 1.89073,5.50462 2.59434,8.32985 1e-5,3e-5 2e-5,6e-5 3e-5,9e-5 0.816,3.2765 1.55506,6.57317 2.47093,9.82316 0.87349,3.09965 1.88091,6.18464 3.40845,9.01968 1.28605,2.38686 3.01425,4.64378 5.40684,5.91914 1.16611,0.6216 2.46644,0.98247 3.78434,1.07907 3e-5,10e-6 6e-5,10e-6 9e-5,10e-6 1.57541,0.11547 3.16223,-0.1254 4.68164,-0.55742 0,0 0,0 0,0 10e-6,-1e-5 3e-5,-1e-5 4e-5,-1e-5 0,0 0,0 0,0 4.67231,-1.32854 8.7667,-4.17173 12.58625,-7.1728 2e-5,-10e-6 3e-5,-2e-5 4e-5,-3e-5 0,0 0,0 0,0 13.66629,-10.7378 28.33142,-20.71305 44.86749,-26.06338 3e-5,-1e-5 6e-5,-2e-5 9e-5,-3e-5 3.6385,-1.17725 7.37356,-2.11665 11.18218,-2.4617 0,0 0,0 0,0 3e-5,0 6e-5,0 9e-5,0 0.92931,-0.0842 1.86295,-0.13258 2.79574,-0.108 2e-5,0 3e-5,10e-6 5e-5,10e-6 0.23404,0.006 0.46803,0.0169 0.70132,0.0368 0.059,0.005 0.11796,0.0106 0.17679,0.0173 l 0.061,0.008 c 3e-5,10e-6 4e-5,10e-6 4e-5,10e-6"
  6574. },
  6575. "style": {
  6576. "type": "map<string,string>",
  6577. "value": {
  6578. "stroke": "coral",
  6579. "fill-opacity": 0,
  6580. "stroke-width": 3
  6581. }
  6582. },
  6583. "mapper": {
  6584. "type": "code",
  6585. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  6586. },
  6587. "parser": {
  6588. "type": "code",
  6589. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6590. },
  6591. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path"
  6592. },
  6593. "80": {
  6594. "segments": {
  6595. "type": "string",
  6596. "value": "m 216.41616,565.72776 c 0.60046,0.01 1.16602,-0.27815 1.67278,-0.6004 0.74606,-0.47442 1.40637,-1.07165 2.03961,-1.68865 1.80692,-1.7606 3.40125,-3.72523 5.00608,-5.67181 1.96698,-2.38586 3.91269,-4.79028 5.95258,-7.11411 2.04934,-2.33458 4.18405,-4.60516 6.55192,-6.61594 2.04032,-1.73262 4.26916,-3.31756 6.80407,-4.1773 2.17393,-0.7373 4.62682,-0.76464 6.70902,0.2018 2.77726,1.28904 4.74225,3.86609 6.26682,6.52136 2.62399,4.57008 4.18024,9.67362 5.47739,14.7813 10e-6,3e-5 10e-6,6e-5 2e-5,9e-5 1.70492,6.71337 3.06797,13.50843 4.42259,20.30115 1.61672,8.10698 3.16496,16.22753 4.79761,24.33131 1.58051,7.84499 3.21726,15.68126 5.15094,23.44675 0.8232,3.30588 1.70089,6.59915 2.70121,9.85581 0.81011,2.63743 1.69085,5.2573 2.78142,7.79166 0.7741,1.79893 1.62476,3.59255 2.85892,5.11316 0.42063,0.51826 0.89273,1.0047 1.45768,1.36016 0.44234,0.27832 0.95346,0.4656 1.47604,0.46017 0.53486,-0.006 1.05294,-0.21414 1.49407,-0.51663 0.60215,-0.41291 1.08654,-0.97663 1.51172,-1.57018 10e-6,-2e-5 2e-5,-3e-5 2e-5,-4e-5 1.41939,-1.98148 2.28516,-4.30256 3.0752,-6.60836 1.31419,-3.83562 2.27576,-7.78329 3.14186,-11.74421 1.26661,-5.79255 2.2843,-11.63705 3.20583,-17.49441 0,0 0,0 0,0 2.85449,-18.14353 4.81717,-36.41602 6.59273,-54.69669 0,-2e-5 0,-3e-5 0,-5e-5 4.66003,-47.97848 7.62228,-96.1078 10.01011,-144.25288 0,0 0,0 0,0 1.92286,-38.77017 3.34556,-77.56311 4.75761,-116.35525 0.22048,-6.05701 0.44213,-12.114 0.69111,-18.1699 0.16523,-4.01896 0.33077,-8.03827 0.57776,-12.05303 0.071,-1.15422 0.14567,-2.30852 0.2598,-3.45927 0,-3e-5 10e-6,-6e-5 10e-6,-9e-5 0.0345,-0.34751 0.0719,-0.6949 0.12499,-1.04006 0.0292,-0.1898 0.0541,-0.38268 0.1226,-0.56208 0.008,-0.0222 0.0179,-0.0441 0.0304,-0.0642 0.008,-0.0129 0.0172,-0.0256 0.0303,-0.0333 0.009,-0.005 0.0206,-0.006 0.0302,-0.002 0.0129,0.006 0.0222,0.0174 0.0301,0.0292 0.0306,0.0458 0.0454,0.10029 0.06,0.15341 0.0255,0.0925 0.0435,0.1869 0.0598,0.28145 10e-6,2e-5 2e-5,5e-5 2e-5,8e-5 0.0546,0.31579 0.0882,0.63481 0.11947,0.95374 0.0486,0.49473 0.0859,0.9905 0.1198,1.48645 0.26281,3.84324 0.37264,7.69526 0.49565,11.54551 0.22531,7.05251 0.39365,14.10672 0.55426,21.161 0.56662,24.8873 1.0056,49.77732 1.45627,74.66699 0,1e-5 0,3e-5 0,4e-5 0,2e-5 0,3e-5 0,5e-5 0,0 0,0 0,0 1.01587,56.10473 2.53681,112.20365 5.06218,168.26072 0,0 0,0 0,0 0.91192,20.24241 1.95681,40.47938 3.25347,60.70079 0,0 0,0 0,0 0.94102,14.67522 1.99387,29.34503 3.39074,43.9839 0.49256,5.16187 1.02858,10.31999 1.66614,15.46596 0.45476,3.67058 0.95016,7.33768 1.6036,10.97815 0.22684,1.26374 0.47304,2.52441 0.76826,3.77395 0,2e-5 1e-5,3e-5 1e-5,5e-5 0.2083,0.88162 0.43559,1.76045 0.74053,2.61348 0.18085,0.50589 0.3695,1.02352 0.70876,1.44009 0.0934,0.11468 0.20278,0.22367 0.34112,0.27598 3e-5,10e-6 5e-5,2e-5 8e-5,3e-5 0.10707,0.0405 0.23043,0.0311 0.33175,-0.0222 0.13564,-0.0713 0.23646,-0.19466 0.32178,-0.32193 0.12956,-0.19327 0.22585,-0.40692 0.31132,-0.62332 0.27415,-0.69409 0.43972,-1.42606 0.58923,-2.1572 0.53906,-2.63599 0.79448,-5.32154 1.03068,-8.00169 10e-6,-3e-5 10e-6,-6e-5 10e-6,-9e-5 0.91147,-10.34235 1.15079,-20.73213 1.35727,-31.11251 0.25048,-12.59239 1.32146,-25.22915 4.32604,-37.4604 2.11627,-8.61502 5.24385,-17.05856 10.07659,-24.49777 10e-6,-1e-5 2e-5,-2e-5 3e-5,-4e-5 3.73429,-5.74831 8.53863,-10.81041 14.16069,-14.73221 2e-5,-10e-6 5e-5,-3e-5 7e-5,-5e-5 5.06846,-3.5356 10.73626,-6.14806 16.57814,-8.16355 2e-5,0 3e-5,-1e-5 5e-5,-1e-5 5.66775,-1.95541 11.50365,-3.37483 17.32933,-4.79203 5.52549,-1.34418 11.06914,-2.67543 16.4139,-4.61745 4.97744,-1.80854 9.8017,-4.20435 13.83197,-7.63986 2e-5,-2e-5 5e-5,-4e-5 7e-5,-6e-5 4.32067,-3.68306 7.55374,-8.55702 9.58347,-13.85922 10e-6,-3e-5 2e-5,-6e-5 3e-5,-8e-5 1.20482,-3.14735 2.01427,-6.43231 2.71581,-9.72855 0.90336,-4.24446 1.58683,-8.53317 2.17747,-12.83231 0,-3e-5 1e-5,-6e-5 1e-5,-9e-5 1.42241,-10.35349 2.30776,-20.77395 3.03562,-31.19931 0.75066,-10.75206 1.29576,-21.51753 1.76958,-32.28535 0,-3e-5 0,-6e-5 0,-9e-5 0.37868,-8.60564 0.68563,-17.21444 1.09517,-25.81867 0.12898,-2.70985 0.2591,-5.42032 0.47957,-8.12426 0.0668,-0.81941 0.13906,-1.63892 0.25513,-2.45281 0.0369,-0.25886 0.0778,-0.5174 0.13545,-0.77245 0.0348,-0.15384 0.0701,-0.30988 0.14224,-0.45015 0.0191,-0.0371 0.0408,-0.0744 0.074,-0.0996 3e-5,-2e-5 5e-5,-4e-5 8e-5,-5e-5 0.0216,-0.0163 0.0509,-0.0233 0.0761,-0.0135 1e-5,10e-6 2e-5,10e-6 4e-5,2e-5 0.0341,0.0133 0.0581,0.0441 0.0784,0.0745 0.034,0.0508 0.0586,0.10733 0.0809,0.16426 0.0764,0.19528 0.12438,0.40048 0.16956,0.60527 10e-6,3e-5 2e-5,6e-5 2e-5,9e-5 0.072,0.32652 0.1287,0.65624 0.18096,0.9865 0.42211,2.66738 0.63116,5.3637 0.86121,8.05446 1.10701,12.94781 1.84098,25.92451 2.62174,38.89608 1.51598,25.18636 2.91425,50.37965 4.31387,75.57274 1.38999,25.01977 2.8625,50.03833 4.94198,75.01025 0,0 0,0 0,0 0.63867,7.66971 1.33476,15.33561 2.21576,22.98127 0,0 0,0 0,0 0.56547,4.90732 1.17958,9.81338 2.09554,14.6675 0.28742,1.52317 0.60464,3.04199 1.01439,4.5369 0.26589,0.97007 0.55843,1.93887 0.99836,2.84342 2e-5,3e-5 3e-5,5e-5 4e-5,8e-5 0,0 0,0 0,0 0.1407,0.28927 0.29752,0.57246 0.4946,0.82668 0.13738,0.17721 0.29575,0.34379 0.49239,0.45152 0,0 0,0 0,0 0.14883,0.0815 0.32335,0.12029 0.49073,0.0923 0,0 0,0 0,0 0.18308,-0.0306 0.34834,-0.13041 0.48961,-0.25083 1e-5,-10e-6 2e-5,-2e-5 3e-5,-3e-5 0.45033,-0.38386 0.72624,-0.93167 0.97838,-1.467 0,-10e-6 1e-5,-3e-5 1e-5,-4e-5 0.4013,-0.85203 0.70385,-1.74715 0.9811,-2.64722 0,0 0,0 0,0 0.8399,-2.72671 1.42956,-5.52391 1.98901,-8.32166 1.66746,-8.33886 2.91701,-16.75503 4.21635,-25.15913 0,0 0,0 0,0 1.53066,-9.90017 3.03735,-19.80518 4.78372,-29.66959 0,0 0,0 0,0 0.82625,-4.66705 1.70507,-9.32534 2.69822,-13.95973 0.86385,-4.03102 1.80685,-8.04729 2.95235,-12.00748 1e-5,-3e-5 2e-5,-6e-5 3e-5,-9e-5 0.88949,-3.07512 1.87587,-6.13469 3.24397,-9.0288 10e-6,-3e-5 2e-5,-6e-5 4e-5,-9e-5 0.50432,-1.06686 1.06307,-2.11197 1.74299,-3.07647 0.51553,-0.7313 1.10189,-1.42683 1.82997,-1.94689 1.02452,-0.7318 2.13537,-1.38127 3.35884,-1.67839 0.87861,-0.21337 1.82479,-0.20353 2.66495,0.13056 0.83786,0.33318 1.53795,0.95024 2.10365,1.6524 0.69998,0.86882 1.22437,1.86641 1.67496,2.8871 1.17585,2.66353 1.89073,5.50462 2.59434,8.32985 1e-5,3e-5 2e-5,6e-5 3e-5,9e-5 0.816,3.2765 1.55506,6.57317 2.47093,9.82316 0.87349,3.09965 1.88091,6.18464 3.40845,9.01968 1.28605,2.38686 3.01425,4.64378 5.40684,5.91914 1.16611,0.6216 2.46644,0.98247 3.78434,1.07907 3e-5,10e-6 6e-5,10e-6 9e-5,10e-6 1.57541,0.11547 3.16223,-0.1254 4.68164,-0.55742 0,0 0,0 0,0 10e-6,-1e-5 3e-5,-1e-5 4e-5,-1e-5 0,0 0,0 0,0 4.67231,-1.32854 8.7667,-4.17173 12.58625,-7.1728 2e-5,-10e-6 3e-5,-2e-5 4e-5,-3e-5 0,0 0,0 0,0 13.66629,-10.7378 28.33142,-20.71305 44.86749,-26.06338 3e-5,-1e-5 6e-5,-2e-5 9e-5,-3e-5 3.6385,-1.17725 7.37356,-2.11665 11.18218,-2.4617 0,0 0,0 0,0 3e-5,0 6e-5,0 9e-5,0 0.92931,-0.0842 1.86295,-0.13258 2.79574,-0.108 2e-5,0 3e-5,10e-6 5e-5,10e-6 0.23404,0.006 0.46803,0.0169 0.70132,0.0368 0.059,0.005 0.11796,0.0106 0.17679,0.0173 l 0.061,0.008 c 3e-5,10e-6 4e-5,10e-6 4e-5,10e-6"
  6597. },
  6598. "style": {
  6599. "type": "map<string,string>",
  6600. "value": {
  6601. "stroke": "gold",
  6602. "fill-opacity": 0,
  6603. "stroke-width": 3
  6604. }
  6605. },
  6606. "mapper": {
  6607. "type": "code",
  6608. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  6609. },
  6610. "parser": {
  6611. "type": "code",
  6612. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6613. },
  6614. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path"
  6615. },
  6616. "81": {
  6617. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain"
  6618. },
  6619. "82": {
  6620. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain"
  6621. },
  6622. "83": {
  6623. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain"
  6624. },
  6625. "84": {
  6626. "width": {
  6627. "type": "double",
  6628. "value": 70
  6629. },
  6630. "height": {
  6631. "type": "double",
  6632. "value": 30
  6633. },
  6634. "cornerRadius": {
  6635. "type": "double",
  6636. "value": 10
  6637. },
  6638. "style": {
  6639. "type": "map<string,string>",
  6640. "value": {
  6641. "stroke": "orangered",
  6642. "stroke-dasharray": "",
  6643. "fill": "orange",
  6644. "fill-opacity": 1,
  6645. "font-size": "20px",
  6646. "stroke-width": 1,
  6647. "arrow-start": "none",
  6648. "arrow-end": "none"
  6649. }
  6650. },
  6651. "mapper": {
  6652. "type": "code",
  6653. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  6654. },
  6655. "parser": {
  6656. "type": "code",
  6657. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6658. },
  6659. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle"
  6660. },
  6661. "85": {
  6662. "textContent": {
  6663. "type": "string",
  6664. "value": "HTTP"
  6665. },
  6666. "style": {
  6667. "type": "map<string,string>",
  6668. "value": {
  6669. "stroke": "#ffffff",
  6670. "stroke-dasharray": "",
  6671. "fill": "#ffffff",
  6672. "fill-opacity": 1,
  6673. "font-size": "20px",
  6674. "stroke-width": 1,
  6675. "arrow-start": "none",
  6676. "arrow-end": "none"
  6677. }
  6678. },
  6679. "mapper": {
  6680. "type": "code",
  6681. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  6682. },
  6683. "parser": {
  6684. "type": "code",
  6685. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  6686. },
  6687. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  6688. },
  6689. "86": {
  6690. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain"
  6691. },
  6692. "87": {
  6693. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain"
  6694. },
  6695. "88": {
  6696. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain"
  6697. },
  6698. "89": {
  6699. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents"
  6700. },
  6701. "90": {
  6702. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents"
  6703. },
  6704. "91": {
  6705. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents"
  6706. },
  6707. "92": {
  6708. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents"
  6709. },
  6710. "93": {
  6711. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents"
  6712. },
  6713. "94": {
  6714. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents"
  6715. },
  6716. "95": {
  6717. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents"
  6718. },
  6719. "96": {
  6720. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents"
  6721. },
  6722. "97": {
  6723. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents"
  6724. },
  6725. "98": {
  6726. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents"
  6727. },
  6728. "99": {
  6729. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents"
  6730. },
  6731. "100": {
  6732. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents"
  6733. }
  6734. },
  6735. "edges": [
  6736. {
  6737. "src": "34",
  6738. "dest": "36"
  6739. },
  6740. {
  6741. "src": "36",
  6742. "dest": "35"
  6743. },
  6744. {
  6745. "src": "0",
  6746. "dest": "46"
  6747. },
  6748. {
  6749. "src": "46",
  6750. "dest": "2"
  6751. },
  6752. {
  6753. "src": "0",
  6754. "dest": "47"
  6755. },
  6756. {
  6757. "src": "47",
  6758. "dest": "19"
  6759. },
  6760. {
  6761. "src": "0",
  6762. "dest": "48"
  6763. },
  6764. {
  6765. "src": "48",
  6766. "dest": "18"
  6767. },
  6768. {
  6769. "src": "0",
  6770. "dest": "49"
  6771. },
  6772. {
  6773. "src": "49",
  6774. "dest": "16"
  6775. },
  6776. {
  6777. "src": "0",
  6778. "dest": "50"
  6779. },
  6780. {
  6781. "src": "50",
  6782. "dest": "15"
  6783. },
  6784. {
  6785. "src": "0",
  6786. "dest": "51"
  6787. },
  6788. {
  6789. "src": "51",
  6790. "dest": "3"
  6791. },
  6792. {
  6793. "src": "0",
  6794. "dest": "52"
  6795. },
  6796. {
  6797. "src": "52",
  6798. "dest": "20"
  6799. },
  6800. {
  6801. "src": "0",
  6802. "dest": "53"
  6803. },
  6804. {
  6805. "src": "53",
  6806. "dest": "21"
  6807. },
  6808. {
  6809. "src": "0",
  6810. "dest": "54"
  6811. },
  6812. {
  6813. "src": "54",
  6814. "dest": "22"
  6815. },
  6816. {
  6817. "src": "0",
  6818. "dest": "55"
  6819. },
  6820. {
  6821. "src": "55",
  6822. "dest": "23"
  6823. },
  6824. {
  6825. "src": "0",
  6826. "dest": "56"
  6827. },
  6828. {
  6829. "src": "56",
  6830. "dest": "24"
  6831. },
  6832. {
  6833. "src": "0",
  6834. "dest": "57"
  6835. },
  6836. {
  6837. "src": "57",
  6838. "dest": "25"
  6839. },
  6840. {
  6841. "src": "0",
  6842. "dest": "58"
  6843. },
  6844. {
  6845. "src": "58",
  6846. "dest": "26"
  6847. },
  6848. {
  6849. "src": "0",
  6850. "dest": "59"
  6851. },
  6852. {
  6853. "src": "59",
  6854. "dest": "27"
  6855. },
  6856. {
  6857. "src": "0",
  6858. "dest": "60"
  6859. },
  6860. {
  6861. "src": "60",
  6862. "dest": "34"
  6863. },
  6864. {
  6865. "src": "0",
  6866. "dest": "61"
  6867. },
  6868. {
  6869. "src": "61",
  6870. "dest": "35"
  6871. },
  6872. {
  6873. "src": "0",
  6874. "dest": "62"
  6875. },
  6876. {
  6877. "src": "62",
  6878. "dest": "36"
  6879. },
  6880. {
  6881. "src": "1",
  6882. "dest": "63"
  6883. },
  6884. {
  6885. "src": "63",
  6886. "dest": "39"
  6887. },
  6888. {
  6889. "src": "1",
  6890. "dest": "64"
  6891. },
  6892. {
  6893. "src": "64",
  6894. "dest": "40"
  6895. },
  6896. {
  6897. "src": "1",
  6898. "dest": "65"
  6899. },
  6900. {
  6901. "src": "65",
  6902. "dest": "41"
  6903. },
  6904. {
  6905. "src": "1",
  6906. "dest": "66"
  6907. },
  6908. {
  6909. "src": "66",
  6910. "dest": "42"
  6911. },
  6912. {
  6913. "src": "1",
  6914. "dest": "67"
  6915. },
  6916. {
  6917. "src": "67",
  6918. "dest": "43"
  6919. },
  6920. {
  6921. "src": "1",
  6922. "dest": "68"
  6923. },
  6924. {
  6925. "src": "68",
  6926. "dest": "44"
  6927. },
  6928. {
  6929. "src": "73",
  6930. "dest": "81"
  6931. },
  6932. {
  6933. "src": "81",
  6934. "dest": "78"
  6935. },
  6936. {
  6937. "src": "73",
  6938. "dest": "82"
  6939. },
  6940. {
  6941. "src": "82",
  6942. "dest": "79"
  6943. },
  6944. {
  6945. "src": "73",
  6946. "dest": "83"
  6947. },
  6948. {
  6949. "src": "83",
  6950. "dest": "80"
  6951. },
  6952. {
  6953. "src": "84",
  6954. "dest": "86"
  6955. },
  6956. {
  6957. "src": "86",
  6958. "dest": "85"
  6959. },
  6960. {
  6961. "src": "73",
  6962. "dest": "87"
  6963. },
  6964. {
  6965. "src": "87",
  6966. "dest": "84"
  6967. },
  6968. {
  6969. "src": "73",
  6970. "dest": "88"
  6971. },
  6972. {
  6973. "src": "88",
  6974. "dest": "85"
  6975. },
  6976. {
  6977. "src": "73",
  6978. "dest": "86"
  6979. },
  6980. {
  6981. "src": "69",
  6982. "dest": "89"
  6983. },
  6984. {
  6985. "src": "89",
  6986. "dest": "73"
  6987. },
  6988. {
  6989. "src": "69",
  6990. "dest": "90"
  6991. },
  6992. {
  6993. "src": "90",
  6994. "dest": "78"
  6995. },
  6996. {
  6997. "src": "69",
  6998. "dest": "91"
  6999. },
  7000. {
  7001. "src": "91",
  7002. "dest": "79"
  7003. },
  7004. {
  7005. "src": "69",
  7006. "dest": "92"
  7007. },
  7008. {
  7009. "src": "92",
  7010. "dest": "80"
  7011. },
  7012. {
  7013. "src": "69",
  7014. "dest": "93"
  7015. },
  7016. {
  7017. "src": "93",
  7018. "dest": "81"
  7019. },
  7020. {
  7021. "src": "69",
  7022. "dest": "94"
  7023. },
  7024. {
  7025. "src": "94",
  7026. "dest": "82"
  7027. },
  7028. {
  7029. "src": "69",
  7030. "dest": "95"
  7031. },
  7032. {
  7033. "src": "95",
  7034. "dest": "83"
  7035. },
  7036. {
  7037. "src": "69",
  7038. "dest": "96"
  7039. },
  7040. {
  7041. "src": "96",
  7042. "dest": "84"
  7043. },
  7044. {
  7045. "src": "69",
  7046. "dest": "97"
  7047. },
  7048. {
  7049. "src": "97",
  7050. "dest": "85"
  7051. },
  7052. {
  7053. "src": "69",
  7054. "dest": "98"
  7055. },
  7056. {
  7057. "src": "98",
  7058. "dest": "86"
  7059. },
  7060. {
  7061. "src": "69",
  7062. "dest": "99"
  7063. },
  7064. {
  7065. "src": "99",
  7066. "dest": "87"
  7067. },
  7068. {
  7069. "src": "69",
  7070. "dest": "100"
  7071. },
  7072. {
  7073. "src": "100",
  7074. "dest": "88"
  7075. }
  7076. ],
  7077. "metamodels": [
  7078. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax"
  7079. ]
  7080. }
  7081. }