LCA.defaultIcons.pattern.metamodel 90 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750
  1. {
  2. "types": {
  3. "__pNodeIcon": [
  4. {
  5. "name": "typename",
  6. "type": "string",
  7. "default": "NodeIcon"
  8. },
  9. {
  10. "name": "position",
  11. "type": "list<double>",
  12. "default": [
  13. 311,
  14. 228
  15. ]
  16. },
  17. {
  18. "name": "orientation",
  19. "type": "double",
  20. "default": 0
  21. },
  22. {
  23. "name": "scale",
  24. "type": "list<double>",
  25. "default": [
  26. 1,
  27. 1
  28. ]
  29. },
  30. {
  31. "name": "mapper",
  32. "type": "code",
  33. "default": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  34. },
  35. {
  36. "name": "parser",
  37. "type": "code",
  38. "default": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  39. },
  40. {
  41. "name": "$contents",
  42. "type": "map<string,*>",
  43. "default": {
  44. "nodes": {
  45. "1": {
  46. "r": {
  47. "type": "double",
  48. "value": 30
  49. },
  50. "style": {
  51. "type": "map<string,string>",
  52. "value": {
  53. "stroke": "#000000",
  54. "fill": "#ffffff",
  55. "fill-opacity": 0.75,
  56. "font-size": "20px",
  57. "stroke-width": 5
  58. }
  59. },
  60. "mapper": {
  61. "type": "code",
  62. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  63. },
  64. "parser": {
  65. "type": "code",
  66. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  67. },
  68. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  69. "position": {
  70. "type": "list<double>",
  71. "value": [
  72. 5,
  73. 4
  74. ]
  75. },
  76. "orientation": {
  77. "type": "double",
  78. "value": 0
  79. },
  80. "scale": {
  81. "type": "list<double>",
  82. "value": [
  83. 1,
  84. 1
  85. ]
  86. }
  87. },
  88. "3": {
  89. "textContent": {
  90. "type": "string",
  91. "value": "##"
  92. },
  93. "style": {
  94. "type": "map<string,string>",
  95. "value": {
  96. "stroke": "#000000",
  97. "fill": "#000000",
  98. "fill-opacity": 0.75,
  99. "font-size": "20px",
  100. "stroke-width": 1,
  101. "arrow-start": "none",
  102. "arrow-end": "none",
  103. "text-anchor": "middle"
  104. }
  105. },
  106. "mapper": {
  107. "type": "code",
  108. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  109. },
  110. "parser": {
  111. "type": "code",
  112. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  113. },
  114. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  115. "position": {
  116. "type": "list<double>",
  117. "value": [
  118. 35,
  119. 23
  120. ]
  121. },
  122. "orientation": {
  123. "type": "double",
  124. "value": 0
  125. },
  126. "scale": {
  127. "type": "list<double>",
  128. "value": [
  129. 1,
  130. 1
  131. ]
  132. }
  133. },
  134. "8": {
  135. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  136. "position": {
  137. "type": "list<double>",
  138. "value": [
  139. 24.096510792336232,
  140. 19.345311948423017
  141. ]
  142. },
  143. "orientation": {
  144. "type": "double",
  145. "value": 0
  146. },
  147. "scale": {
  148. "type": "list<double>",
  149. "value": [
  150. 1,
  151. 1
  152. ]
  153. },
  154. "link-style": {
  155. "type": "map<string,string>",
  156. "value": {
  157. "stroke": "#00ffff",
  158. "stroke-dasharray": "",
  159. "stroke-opacity": 0.1,
  160. "stroke-width": 1
  161. }
  162. }
  163. },
  164. "__pLabelText": {
  165. "position": {
  166. "type": "list<double>",
  167. "value": [
  168. 0,
  169. 0
  170. ]
  171. },
  172. "orientation": {
  173. "type": "double",
  174. "value": 0
  175. },
  176. "scale": {
  177. "type": "list<double>",
  178. "value": [
  179. 1,
  180. 1
  181. ]
  182. },
  183. "textContent": {
  184. "type": "string",
  185. "value": "#"
  186. },
  187. "style": {
  188. "type": "map<string,string>",
  189. "value": {
  190. "stroke": "#6000ff",
  191. "fill": "#6000ff",
  192. "font-size": "15px",
  193. "opacity": "1"
  194. }
  195. },
  196. "mapper": {
  197. "type": "code",
  198. "value": "({'textContent':getAttr('__pLabel')})"
  199. },
  200. "parser": {
  201. "type": "code",
  202. "value": "({'__pLabel':getAttr('textContent')})"
  203. },
  204. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  205. }
  206. },
  207. "edges": [
  208. {
  209. "src": "1",
  210. "dest": "8"
  211. },
  212. {
  213. "src": "8",
  214. "dest": "3"
  215. }
  216. ]
  217. }
  218. },
  219. {
  220. "name": "$asuri",
  221. "type": "string",
  222. "default": "-1"
  223. }
  224. ],
  225. "__pparentLink": [
  226. {
  227. "name": "link-style",
  228. "type": "map<string,string>",
  229. "default": {
  230. "stroke": "#000000",
  231. "stroke-dasharray": "",
  232. "stroke-opacity": 1,
  233. "stroke-width": 2
  234. }
  235. },
  236. {
  237. "name": "arrowHead",
  238. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  239. "default": "custom"
  240. },
  241. {
  242. "name": "arrowTail",
  243. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  244. "default": "arrow-black"
  245. },
  246. {
  247. "name": "typename",
  248. "type": "string",
  249. "default": "parentLink"
  250. },
  251. {
  252. "name": "position",
  253. "type": "list<double>",
  254. "default": [
  255. 695,
  256. 257
  257. ]
  258. },
  259. {
  260. "name": "orientation",
  261. "type": "double",
  262. "default": 0
  263. },
  264. {
  265. "name": "scale",
  266. "type": "list<double>",
  267. "default": [
  268. 1,
  269. 1
  270. ]
  271. },
  272. {
  273. "name": "mapper",
  274. "type": "code",
  275. "default": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  276. },
  277. {
  278. "name": "parser",
  279. "type": "code",
  280. "default": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  281. },
  282. {
  283. "name": "$contents",
  284. "type": "map<string,*>",
  285. "default": {
  286. "nodes": {
  287. "267": {
  288. "segments": {
  289. "type": "string",
  290. "value": "m0,0 l10,4 l-10,4 l3,-4 z"
  291. },
  292. "style": {
  293. "type": "map<string,string>",
  294. "value": {
  295. "stroke": "#000000",
  296. "fill": "#000000",
  297. "opacity": 1,
  298. "stroke-width": 1
  299. }
  300. },
  301. "mapper": {
  302. "type": "code",
  303. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  304. },
  305. "parser": {
  306. "type": "code",
  307. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  308. },
  309. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  310. "position": {
  311. "type": "list<double>",
  312. "value": [
  313. 0,
  314. 0
  315. ]
  316. },
  317. "orientation": {
  318. "type": "double",
  319. "value": 0
  320. },
  321. "scale": {
  322. "type": "list<double>",
  323. "value": [
  324. 1,
  325. 1
  326. ]
  327. },
  328. "arrow": "arrowTail",
  329. "arrowType": "arrow-black",
  330. "$linkDecoratorInfo": {
  331. "type": "map<string,double>",
  332. "value": {
  333. "xratio": 1,
  334. "yoffset": -4
  335. }
  336. }
  337. },
  338. "268": {
  339. "segments": {
  340. "type": "string",
  341. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  342. },
  343. "style": {
  344. "type": "map<string,string>",
  345. "value": {
  346. "stroke": "#000000",
  347. "fill": "#000000",
  348. "opacity": 0,
  349. "stroke-width": 1
  350. }
  351. },
  352. "mapper": {
  353. "type": "code",
  354. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  355. },
  356. "parser": {
  357. "type": "code",
  358. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  359. },
  360. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  361. "position": {
  362. "type": "list<double>",
  363. "value": [
  364. 0,
  365. 0
  366. ]
  367. },
  368. "orientation": {
  369. "type": "double",
  370. "value": 0
  371. },
  372. "scale": {
  373. "type": "list<double>",
  374. "value": [
  375. 1,
  376. 1
  377. ]
  378. },
  379. "arrow": "arrowTail",
  380. "arrowType": "diamond-black-large",
  381. "$linkDecoratorInfo": {
  382. "type": "map<string,double>",
  383. "value": {
  384. "xratio": 1,
  385. "yoffset": -10
  386. }
  387. }
  388. },
  389. "269": {
  390. "r": {
  391. "type": "double",
  392. "value": 10
  393. },
  394. "style": {
  395. "type": "map<string,string>",
  396. "value": {
  397. "stroke": "#000000",
  398. "fill": "#000000",
  399. "opacity": 0,
  400. "stroke-width": 1
  401. }
  402. },
  403. "mapper": {
  404. "type": "code",
  405. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  406. },
  407. "parser": {
  408. "type": "code",
  409. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  410. },
  411. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  412. "position": {
  413. "type": "list<double>",
  414. "value": [
  415. 0,
  416. 0
  417. ]
  418. },
  419. "orientation": {
  420. "type": "double",
  421. "value": 0
  422. },
  423. "scale": {
  424. "type": "list<double>",
  425. "value": [
  426. 1,
  427. 1
  428. ]
  429. },
  430. "arrow": "arrowTail",
  431. "arrowType": "circle-black-large",
  432. "$linkDecoratorInfo": {
  433. "type": "map<string,double>",
  434. "value": {
  435. "xratio": 1,
  436. "yoffset": -10
  437. }
  438. }
  439. },
  440. "270": {
  441. "r": {
  442. "type": "double",
  443. "value": 10
  444. },
  445. "style": {
  446. "type": "map<string,string>",
  447. "value": {
  448. "stroke": "#000000",
  449. "fill": "#ffffff",
  450. "opacity": 0,
  451. "stroke-width": 1
  452. }
  453. },
  454. "mapper": {
  455. "type": "code",
  456. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  457. },
  458. "parser": {
  459. "type": "code",
  460. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  461. },
  462. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  463. "position": {
  464. "type": "list<double>",
  465. "value": [
  466. 0,
  467. 0
  468. ]
  469. },
  470. "orientation": {
  471. "type": "double",
  472. "value": 0
  473. },
  474. "scale": {
  475. "type": "list<double>",
  476. "value": [
  477. 1,
  478. 1
  479. ]
  480. },
  481. "arrow": "arrowTail",
  482. "arrowType": "circle-white-large",
  483. "$linkDecoratorInfo": {
  484. "type": "map<string,double>",
  485. "value": {
  486. "xratio": 1,
  487. "yoffset": -10
  488. }
  489. }
  490. },
  491. "271": {
  492. "r": {
  493. "type": "double",
  494. "value": 5
  495. },
  496. "style": {
  497. "type": "map<string,string>",
  498. "value": {
  499. "stroke": "#000000",
  500. "fill": "#000000",
  501. "opacity": 0,
  502. "stroke-width": 1
  503. }
  504. },
  505. "mapper": {
  506. "type": "code",
  507. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  508. },
  509. "parser": {
  510. "type": "code",
  511. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  512. },
  513. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  514. "position": {
  515. "type": "list<double>",
  516. "value": [
  517. 0,
  518. 0
  519. ]
  520. },
  521. "orientation": {
  522. "type": "double",
  523. "value": 0
  524. },
  525. "scale": {
  526. "type": "list<double>",
  527. "value": [
  528. 1,
  529. 1
  530. ]
  531. },
  532. "arrow": "arrowTail",
  533. "arrowType": "circle-black",
  534. "$linkDecoratorInfo": {
  535. "type": "map<string,double>",
  536. "value": {
  537. "xratio": 1,
  538. "yoffset": -5
  539. }
  540. }
  541. },
  542. "272": {
  543. "segments": {
  544. "type": "string",
  545. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  546. },
  547. "style": {
  548. "type": "map<string,string>",
  549. "value": {
  550. "stroke": "#000000",
  551. "fill": "#000000",
  552. "opacity": 0,
  553. "stroke-width": 1
  554. }
  555. },
  556. "mapper": {
  557. "type": "code",
  558. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  559. },
  560. "parser": {
  561. "type": "code",
  562. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  563. },
  564. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  565. "position": {
  566. "type": "list<double>",
  567. "value": [
  568. 0,
  569. 0
  570. ]
  571. },
  572. "orientation": {
  573. "type": "double",
  574. "value": 0
  575. },
  576. "scale": {
  577. "type": "list<double>",
  578. "value": [
  579. 1,
  580. 1
  581. ]
  582. },
  583. "arrow": "arrowTail",
  584. "arrowType": "diamond-black",
  585. "$linkDecoratorInfo": {
  586. "type": "map<string,double>",
  587. "value": {
  588. "xratio": 1,
  589. "yoffset": -5
  590. }
  591. }
  592. },
  593. "273": {
  594. "segments": {
  595. "type": "string",
  596. "value": "m0,0 l20,10 l-20,10 z"
  597. },
  598. "style": {
  599. "type": "map<string,string>",
  600. "value": {
  601. "stroke": "#000000",
  602. "fill": "#000000",
  603. "opacity": 0,
  604. "stroke-width": 1
  605. }
  606. },
  607. "mapper": {
  608. "type": "code",
  609. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  610. },
  611. "parser": {
  612. "type": "code",
  613. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  614. },
  615. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  616. "position": {
  617. "type": "list<double>",
  618. "value": [
  619. 0,
  620. 0
  621. ]
  622. },
  623. "orientation": {
  624. "type": "double",
  625. "value": 0
  626. },
  627. "scale": {
  628. "type": "list<double>",
  629. "value": [
  630. 1,
  631. 1
  632. ]
  633. },
  634. "arrow": "arrowTail",
  635. "arrowType": "triangle-black-large",
  636. "$linkDecoratorInfo": {
  637. "type": "map<string,double>",
  638. "value": {
  639. "xratio": 1,
  640. "yoffset": -10
  641. }
  642. }
  643. },
  644. "274": {
  645. "segments": {
  646. "type": "string",
  647. "value": "m0,0 l10,4 l-10,4 z"
  648. },
  649. "style": {
  650. "type": "map<string,string>",
  651. "value": {
  652. "stroke": "#000000",
  653. "fill": "#000000",
  654. "opacity": 0,
  655. "stroke-width": 1
  656. }
  657. },
  658. "mapper": {
  659. "type": "code",
  660. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  661. },
  662. "parser": {
  663. "type": "code",
  664. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  665. },
  666. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  667. "position": {
  668. "type": "list<double>",
  669. "value": [
  670. 0,
  671. 0
  672. ]
  673. },
  674. "orientation": {
  675. "type": "double",
  676. "value": 0
  677. },
  678. "scale": {
  679. "type": "list<double>",
  680. "value": [
  681. 1,
  682. 1
  683. ]
  684. },
  685. "arrow": "arrowTail",
  686. "arrowType": "triangle-black",
  687. "$linkDecoratorInfo": {
  688. "type": "map<string,double>",
  689. "value": {
  690. "xratio": 1,
  691. "yoffset": -4
  692. }
  693. }
  694. },
  695. "275": {
  696. "segments": {
  697. "type": "string",
  698. "value": "m0,0 l20,8 l-20,8 l6,-8 z"
  699. },
  700. "style": {
  701. "type": "map<string,string>",
  702. "value": {
  703. "stroke": "#000000",
  704. "fill": "#000000",
  705. "opacity": 0,
  706. "stroke-width": 1
  707. }
  708. },
  709. "mapper": {
  710. "type": "code",
  711. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  712. },
  713. "parser": {
  714. "type": "code",
  715. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  716. },
  717. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  718. "position": {
  719. "type": "list<double>",
  720. "value": [
  721. 0,
  722. 0
  723. ]
  724. },
  725. "orientation": {
  726. "type": "double",
  727. "value": 0
  728. },
  729. "scale": {
  730. "type": "list<double>",
  731. "value": [
  732. 1,
  733. 1
  734. ]
  735. },
  736. "arrow": "arrowTail",
  737. "arrowType": "arrow-black-large",
  738. "$linkDecoratorInfo": {
  739. "type": "map<string,double>",
  740. "value": {
  741. "xratio": 1,
  742. "yoffset": -8
  743. }
  744. }
  745. },
  746. "276": {
  747. "segments": {
  748. "type": "string",
  749. "value": "m0,0 l20,10 l-20,10 z"
  750. },
  751. "style": {
  752. "type": "map<string,string>",
  753. "value": {
  754. "stroke": "#000000",
  755. "fill": "#ffffff",
  756. "opacity": 0,
  757. "stroke-width": 1
  758. }
  759. },
  760. "mapper": {
  761. "type": "code",
  762. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  763. },
  764. "parser": {
  765. "type": "code",
  766. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  767. },
  768. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  769. "position": {
  770. "type": "list<double>",
  771. "value": [
  772. 0,
  773. 0
  774. ]
  775. },
  776. "orientation": {
  777. "type": "double",
  778. "value": 0
  779. },
  780. "scale": {
  781. "type": "list<double>",
  782. "value": [
  783. 1,
  784. 1
  785. ]
  786. },
  787. "arrow": "arrowTail",
  788. "arrowType": "triangle-white-large",
  789. "$linkDecoratorInfo": {
  790. "type": "map<string,double>",
  791. "value": {
  792. "xratio": 1,
  793. "yoffset": -10
  794. }
  795. }
  796. },
  797. "277": {
  798. "segments": {
  799. "type": "string",
  800. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  801. },
  802. "style": {
  803. "type": "map<string,string>",
  804. "value": {
  805. "stroke": "#000000",
  806. "fill": "#ffffff",
  807. "opacity": 0,
  808. "stroke-width": 1
  809. }
  810. },
  811. "mapper": {
  812. "type": "code",
  813. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  814. },
  815. "parser": {
  816. "type": "code",
  817. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  818. },
  819. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  820. "position": {
  821. "type": "list<double>",
  822. "value": [
  823. 0,
  824. 0
  825. ]
  826. },
  827. "orientation": {
  828. "type": "double",
  829. "value": 0
  830. },
  831. "scale": {
  832. "type": "list<double>",
  833. "value": [
  834. 1,
  835. 1
  836. ]
  837. },
  838. "arrow": "arrowTail",
  839. "arrowType": "diamond-white",
  840. "$linkDecoratorInfo": {
  841. "type": "map<string,double>",
  842. "value": {
  843. "xratio": 1,
  844. "yoffset": -5
  845. }
  846. }
  847. },
  848. "278": {
  849. "segments": {
  850. "type": "string",
  851. "value": "m0,0 l20,8 l-20,8"
  852. },
  853. "style": {
  854. "type": "map<string,string>",
  855. "value": {
  856. "stroke": "#000000",
  857. "fill": "#000000",
  858. "fill-opacity": 0,
  859. "stroke-width": 1,
  860. "opacity": 0
  861. }
  862. },
  863. "mapper": {
  864. "type": "code",
  865. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  866. },
  867. "parser": {
  868. "type": "code",
  869. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  870. },
  871. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  872. "position": {
  873. "type": "list<double>",
  874. "value": [
  875. 0,
  876. 0
  877. ]
  878. },
  879. "orientation": {
  880. "type": "double",
  881. "value": 0
  882. },
  883. "scale": {
  884. "type": "list<double>",
  885. "value": [
  886. 1,
  887. 1
  888. ]
  889. },
  890. "arrow": "arrowTail",
  891. "arrowType": "arrow-empty-large",
  892. "$linkDecoratorInfo": {
  893. "type": "map<string,double>",
  894. "value": {
  895. "xratio": 1,
  896. "yoffset": -8
  897. }
  898. }
  899. },
  900. "279": {
  901. "r": {
  902. "type": "double",
  903. "value": 5
  904. },
  905. "style": {
  906. "type": "map<string,string>",
  907. "value": {
  908. "stroke": "#000000",
  909. "fill": "#ffffff",
  910. "opacity": 0,
  911. "stroke-width": 1
  912. }
  913. },
  914. "mapper": {
  915. "type": "code",
  916. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  917. },
  918. "parser": {
  919. "type": "code",
  920. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  921. },
  922. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  923. "position": {
  924. "type": "list<double>",
  925. "value": [
  926. 0,
  927. 0
  928. ]
  929. },
  930. "orientation": {
  931. "type": "double",
  932. "value": 0
  933. },
  934. "scale": {
  935. "type": "list<double>",
  936. "value": [
  937. 1,
  938. 1
  939. ]
  940. },
  941. "arrow": "arrowTail",
  942. "arrowType": "circle-white",
  943. "$linkDecoratorInfo": {
  944. "type": "map<string,double>",
  945. "value": {
  946. "xratio": 1,
  947. "yoffset": -5
  948. }
  949. }
  950. },
  951. "280": {
  952. "segments": {
  953. "type": "string",
  954. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  955. },
  956. "style": {
  957. "type": "map<string,string>",
  958. "value": {
  959. "stroke": "#000000",
  960. "fill": "#ffffff",
  961. "opacity": 0,
  962. "stroke-width": 1
  963. }
  964. },
  965. "mapper": {
  966. "type": "code",
  967. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  968. },
  969. "parser": {
  970. "type": "code",
  971. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  972. },
  973. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  974. "position": {
  975. "type": "list<double>",
  976. "value": [
  977. 0,
  978. 0
  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. "arrow": "arrowTail",
  993. "arrowType": "diamond-white-large",
  994. "$linkDecoratorInfo": {
  995. "type": "map<string,double>",
  996. "value": {
  997. "xratio": 1,
  998. "yoffset": -10
  999. }
  1000. }
  1001. },
  1002. "281": {
  1003. "segments": {
  1004. "type": "string",
  1005. "value": "m0,0 l10,4 l-10,4"
  1006. },
  1007. "style": {
  1008. "type": "map<string,string>",
  1009. "value": {
  1010. "stroke": "#000000",
  1011. "fill": "#000000",
  1012. "fill-opacity": 0,
  1013. "stroke-width": 1,
  1014. "opacity": 0
  1015. }
  1016. },
  1017. "mapper": {
  1018. "type": "code",
  1019. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1020. },
  1021. "parser": {
  1022. "type": "code",
  1023. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1024. },
  1025. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1026. "position": {
  1027. "type": "list<double>",
  1028. "value": [
  1029. 0,
  1030. 0
  1031. ]
  1032. },
  1033. "orientation": {
  1034. "type": "double",
  1035. "value": 0
  1036. },
  1037. "scale": {
  1038. "type": "list<double>",
  1039. "value": [
  1040. 1,
  1041. 1
  1042. ]
  1043. },
  1044. "arrow": "arrowTail",
  1045. "arrowType": "arrow-empty",
  1046. "$linkDecoratorInfo": {
  1047. "type": "map<string,double>",
  1048. "value": {
  1049. "xratio": 1,
  1050. "yoffset": -4
  1051. }
  1052. }
  1053. },
  1054. "282": {
  1055. "segments": {
  1056. "type": "string",
  1057. "value": "m0,0 l10,5 l-10,5 z"
  1058. },
  1059. "style": {
  1060. "type": "map<string,string>",
  1061. "value": {
  1062. "stroke": "#000000",
  1063. "fill": "#ffffff",
  1064. "opacity": 0,
  1065. "stroke-width": 1
  1066. }
  1067. },
  1068. "mapper": {
  1069. "type": "code",
  1070. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1071. },
  1072. "parser": {
  1073. "type": "code",
  1074. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1075. },
  1076. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1077. "position": {
  1078. "type": "list<double>",
  1079. "value": [
  1080. 0,
  1081. 0
  1082. ]
  1083. },
  1084. "orientation": {
  1085. "type": "double",
  1086. "value": 0
  1087. },
  1088. "scale": {
  1089. "type": "list<double>",
  1090. "value": [
  1091. 1,
  1092. 1
  1093. ]
  1094. },
  1095. "arrow": "arrowTail",
  1096. "arrowType": "triangle-white",
  1097. "$linkDecoratorInfo": {
  1098. "type": "map<string,double>",
  1099. "value": {
  1100. "xratio": 1,
  1101. "yoffset": -5
  1102. }
  1103. }
  1104. },
  1105. "283": {
  1106. "segments": {
  1107. "type": "string",
  1108. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  1109. },
  1110. "style": {
  1111. "type": "map<string,string>",
  1112. "value": {
  1113. "stroke": "#000000",
  1114. "fill": "#ffffff",
  1115. "opacity": 0,
  1116. "stroke-width": 1
  1117. }
  1118. },
  1119. "mapper": {
  1120. "type": "code",
  1121. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1122. },
  1123. "parser": {
  1124. "type": "code",
  1125. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1126. },
  1127. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1128. "position": {
  1129. "type": "list<double>",
  1130. "value": [
  1131. 0,
  1132. 0
  1133. ]
  1134. },
  1135. "orientation": {
  1136. "type": "double",
  1137. "value": 0
  1138. },
  1139. "scale": {
  1140. "type": "list<double>",
  1141. "value": [
  1142. 1,
  1143. 1
  1144. ]
  1145. },
  1146. "arrow": "arrowHead",
  1147. "arrowType": "diamond-white",
  1148. "$linkDecoratorInfo": {
  1149. "type": "map<string,double>",
  1150. "value": {
  1151. "xratio": -1,
  1152. "yoffset": -5
  1153. }
  1154. }
  1155. },
  1156. "284": {
  1157. "segments": {
  1158. "type": "string",
  1159. "value": "m0,0 l-10,5 l10,5 z"
  1160. },
  1161. "style": {
  1162. "type": "map<string,string>",
  1163. "value": {
  1164. "stroke": "#000000",
  1165. "fill": "#ffffff",
  1166. "opacity": 0,
  1167. "stroke-width": 1
  1168. }
  1169. },
  1170. "mapper": {
  1171. "type": "code",
  1172. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1173. },
  1174. "parser": {
  1175. "type": "code",
  1176. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1177. },
  1178. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1179. "position": {
  1180. "type": "list<double>",
  1181. "value": [
  1182. 0,
  1183. 0
  1184. ]
  1185. },
  1186. "orientation": {
  1187. "type": "double",
  1188. "value": 0
  1189. },
  1190. "scale": {
  1191. "type": "list<double>",
  1192. "value": [
  1193. 1,
  1194. 1
  1195. ]
  1196. },
  1197. "arrow": "arrowHead",
  1198. "arrowType": "triangle-white",
  1199. "$linkDecoratorInfo": {
  1200. "type": "map<string,double>",
  1201. "value": {
  1202. "xratio": -1,
  1203. "yoffset": -5
  1204. }
  1205. }
  1206. },
  1207. "285": {
  1208. "segments": {
  1209. "type": "string",
  1210. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  1211. },
  1212. "style": {
  1213. "type": "map<string,string>",
  1214. "value": {
  1215. "stroke": "#000000",
  1216. "fill": "#000000",
  1217. "opacity": 0,
  1218. "stroke-width": 1
  1219. }
  1220. },
  1221. "mapper": {
  1222. "type": "code",
  1223. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1224. },
  1225. "parser": {
  1226. "type": "code",
  1227. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1228. },
  1229. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1230. "position": {
  1231. "type": "list<double>",
  1232. "value": [
  1233. 0,
  1234. 0
  1235. ]
  1236. },
  1237. "orientation": {
  1238. "type": "double",
  1239. "value": 0
  1240. },
  1241. "scale": {
  1242. "type": "list<double>",
  1243. "value": [
  1244. 1,
  1245. 1
  1246. ]
  1247. },
  1248. "arrow": "arrowHead",
  1249. "arrowType": "diamond-black",
  1250. "$linkDecoratorInfo": {
  1251. "type": "map<string,double>",
  1252. "value": {
  1253. "xratio": -1,
  1254. "yoffset": -5
  1255. }
  1256. }
  1257. },
  1258. "286": {
  1259. "r": {
  1260. "type": "double",
  1261. "value": 10
  1262. },
  1263. "style": {
  1264. "type": "map<string,string>",
  1265. "value": {
  1266. "stroke": "#000000",
  1267. "fill": "#000000",
  1268. "opacity": 0,
  1269. "stroke-width": 1
  1270. }
  1271. },
  1272. "mapper": {
  1273. "type": "code",
  1274. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1275. },
  1276. "parser": {
  1277. "type": "code",
  1278. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1279. },
  1280. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  1281. "position": {
  1282. "type": "list<double>",
  1283. "value": [
  1284. 0,
  1285. 0
  1286. ]
  1287. },
  1288. "orientation": {
  1289. "type": "double",
  1290. "value": 0
  1291. },
  1292. "scale": {
  1293. "type": "list<double>",
  1294. "value": [
  1295. 1,
  1296. 1
  1297. ]
  1298. },
  1299. "arrow": "arrowHead",
  1300. "arrowType": "circle-black-large",
  1301. "$linkDecoratorInfo": {
  1302. "type": "map<string,double>",
  1303. "value": {
  1304. "xratio": -1,
  1305. "yoffset": -10
  1306. }
  1307. }
  1308. },
  1309. "287": {
  1310. "segments": {
  1311. "type": "string",
  1312. "value": "m0,0 l-20,8 l20,8 l-6,-8 z"
  1313. },
  1314. "style": {
  1315. "type": "map<string,string>",
  1316. "value": {
  1317. "stroke": "#000000",
  1318. "fill": "#000000",
  1319. "opacity": 0,
  1320. "stroke-width": 1
  1321. }
  1322. },
  1323. "mapper": {
  1324. "type": "code",
  1325. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1326. },
  1327. "parser": {
  1328. "type": "code",
  1329. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1330. },
  1331. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1332. "position": {
  1333. "type": "list<double>",
  1334. "value": [
  1335. 0,
  1336. 0
  1337. ]
  1338. },
  1339. "orientation": {
  1340. "type": "double",
  1341. "value": 0
  1342. },
  1343. "scale": {
  1344. "type": "list<double>",
  1345. "value": [
  1346. 1,
  1347. 1
  1348. ]
  1349. },
  1350. "arrow": "arrowHead",
  1351. "arrowType": "arrow-black-large",
  1352. "$linkDecoratorInfo": {
  1353. "type": "map<string,double>",
  1354. "value": {
  1355. "xratio": -1,
  1356. "yoffset": -8
  1357. }
  1358. }
  1359. },
  1360. "288": {
  1361. "segments": {
  1362. "type": "string",
  1363. "value": "m0,0 l-10,4 l10,4 l-3,-4 z"
  1364. },
  1365. "style": {
  1366. "type": "map<string,string>",
  1367. "value": {
  1368. "stroke": "#000000",
  1369. "fill": "#000000",
  1370. "opacity": 0,
  1371. "stroke-width": 1
  1372. }
  1373. },
  1374. "mapper": {
  1375. "type": "code",
  1376. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1377. },
  1378. "parser": {
  1379. "type": "code",
  1380. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1381. },
  1382. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1383. "position": {
  1384. "type": "list<double>",
  1385. "value": [
  1386. 0,
  1387. 0
  1388. ]
  1389. },
  1390. "orientation": {
  1391. "type": "double",
  1392. "value": 0
  1393. },
  1394. "scale": {
  1395. "type": "list<double>",
  1396. "value": [
  1397. 1,
  1398. 1
  1399. ]
  1400. },
  1401. "arrow": "arrowHead",
  1402. "arrowType": "arrow-black",
  1403. "$linkDecoratorInfo": {
  1404. "type": "map<string,double>",
  1405. "value": {
  1406. "xratio": -1,
  1407. "yoffset": -4
  1408. }
  1409. }
  1410. },
  1411. "289": {
  1412. "segments": {
  1413. "type": "string",
  1414. "value": "m0,0 l-20,10 l20,10 z"
  1415. },
  1416. "style": {
  1417. "type": "map<string,string>",
  1418. "value": {
  1419. "stroke": "#000000",
  1420. "fill": "#ffffff",
  1421. "opacity": 0,
  1422. "stroke-width": 1
  1423. }
  1424. },
  1425. "mapper": {
  1426. "type": "code",
  1427. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1428. },
  1429. "parser": {
  1430. "type": "code",
  1431. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1432. },
  1433. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1434. "position": {
  1435. "type": "list<double>",
  1436. "value": [
  1437. 0,
  1438. 0
  1439. ]
  1440. },
  1441. "orientation": {
  1442. "type": "double",
  1443. "value": 0
  1444. },
  1445. "scale": {
  1446. "type": "list<double>",
  1447. "value": [
  1448. 1,
  1449. 1
  1450. ]
  1451. },
  1452. "arrow": "arrowHead",
  1453. "arrowType": "triangle-white-large",
  1454. "$linkDecoratorInfo": {
  1455. "type": "map<string,double>",
  1456. "value": {
  1457. "xratio": -1,
  1458. "yoffset": -10
  1459. }
  1460. }
  1461. },
  1462. "290": {
  1463. "segments": {
  1464. "type": "string",
  1465. "value": "m0,0 l-20,10 l20,10 z"
  1466. },
  1467. "style": {
  1468. "type": "map<string,string>",
  1469. "value": {
  1470. "stroke": "#000000",
  1471. "fill": "#000000",
  1472. "opacity": 0,
  1473. "stroke-width": 1
  1474. }
  1475. },
  1476. "mapper": {
  1477. "type": "code",
  1478. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1479. },
  1480. "parser": {
  1481. "type": "code",
  1482. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1483. },
  1484. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1485. "position": {
  1486. "type": "list<double>",
  1487. "value": [
  1488. 0,
  1489. 0
  1490. ]
  1491. },
  1492. "orientation": {
  1493. "type": "double",
  1494. "value": 0
  1495. },
  1496. "scale": {
  1497. "type": "list<double>",
  1498. "value": [
  1499. 1,
  1500. 1
  1501. ]
  1502. },
  1503. "arrow": "arrowHead",
  1504. "arrowType": "triangle-black-large",
  1505. "$linkDecoratorInfo": {
  1506. "type": "map<string,double>",
  1507. "value": {
  1508. "xratio": -1,
  1509. "yoffset": -10
  1510. }
  1511. }
  1512. },
  1513. "291": {
  1514. "r": {
  1515. "type": "double",
  1516. "value": 5
  1517. },
  1518. "style": {
  1519. "type": "map<string,string>",
  1520. "value": {
  1521. "stroke": "#000000",
  1522. "fill": "#000000",
  1523. "opacity": 0,
  1524. "stroke-width": 1
  1525. }
  1526. },
  1527. "mapper": {
  1528. "type": "code",
  1529. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1530. },
  1531. "parser": {
  1532. "type": "code",
  1533. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1534. },
  1535. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  1536. "position": {
  1537. "type": "list<double>",
  1538. "value": [
  1539. 0,
  1540. 0
  1541. ]
  1542. },
  1543. "orientation": {
  1544. "type": "double",
  1545. "value": 0
  1546. },
  1547. "scale": {
  1548. "type": "list<double>",
  1549. "value": [
  1550. 1,
  1551. 1
  1552. ]
  1553. },
  1554. "arrow": "arrowHead",
  1555. "arrowType": "circle-black",
  1556. "$linkDecoratorInfo": {
  1557. "type": "map<string,double>",
  1558. "value": {
  1559. "xratio": -1,
  1560. "yoffset": -5
  1561. }
  1562. }
  1563. },
  1564. "292": {
  1565. "r": {
  1566. "type": "double",
  1567. "value": 5
  1568. },
  1569. "style": {
  1570. "type": "map<string,string>",
  1571. "value": {
  1572. "stroke": "#000000",
  1573. "fill": "#ffffff",
  1574. "opacity": 0,
  1575. "stroke-width": 1
  1576. }
  1577. },
  1578. "mapper": {
  1579. "type": "code",
  1580. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1581. },
  1582. "parser": {
  1583. "type": "code",
  1584. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1585. },
  1586. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  1587. "position": {
  1588. "type": "list<double>",
  1589. "value": [
  1590. 0,
  1591. 0
  1592. ]
  1593. },
  1594. "orientation": {
  1595. "type": "double",
  1596. "value": 0
  1597. },
  1598. "scale": {
  1599. "type": "list<double>",
  1600. "value": [
  1601. 1,
  1602. 1
  1603. ]
  1604. },
  1605. "arrow": "arrowHead",
  1606. "arrowType": "circle-white",
  1607. "$linkDecoratorInfo": {
  1608. "type": "map<string,double>",
  1609. "value": {
  1610. "xratio": -1,
  1611. "yoffset": -5
  1612. }
  1613. }
  1614. },
  1615. "293": {
  1616. "r": {
  1617. "type": "double",
  1618. "value": 10
  1619. },
  1620. "style": {
  1621. "type": "map<string,string>",
  1622. "value": {
  1623. "stroke": "#000000",
  1624. "fill": "#ffffff",
  1625. "opacity": 0,
  1626. "stroke-width": 1
  1627. }
  1628. },
  1629. "mapper": {
  1630. "type": "code",
  1631. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1632. },
  1633. "parser": {
  1634. "type": "code",
  1635. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1636. },
  1637. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  1638. "position": {
  1639. "type": "list<double>",
  1640. "value": [
  1641. 0,
  1642. 0
  1643. ]
  1644. },
  1645. "orientation": {
  1646. "type": "double",
  1647. "value": 0
  1648. },
  1649. "scale": {
  1650. "type": "list<double>",
  1651. "value": [
  1652. 1,
  1653. 1
  1654. ]
  1655. },
  1656. "arrow": "arrowHead",
  1657. "arrowType": "circle-white-large",
  1658. "$linkDecoratorInfo": {
  1659. "type": "map<string,double>",
  1660. "value": {
  1661. "xratio": -1,
  1662. "yoffset": -10
  1663. }
  1664. }
  1665. },
  1666. "294": {
  1667. "segments": {
  1668. "type": "string",
  1669. "value": "m0,0 l-20,8 l20,8"
  1670. },
  1671. "style": {
  1672. "type": "map<string,string>",
  1673. "value": {
  1674. "stroke": "#000000",
  1675. "fill": "#000000",
  1676. "fill-opacity": 0,
  1677. "stroke-width": 1,
  1678. "opacity": 0
  1679. }
  1680. },
  1681. "mapper": {
  1682. "type": "code",
  1683. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1684. },
  1685. "parser": {
  1686. "type": "code",
  1687. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1688. },
  1689. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1690. "position": {
  1691. "type": "list<double>",
  1692. "value": [
  1693. 0,
  1694. 0
  1695. ]
  1696. },
  1697. "orientation": {
  1698. "type": "double",
  1699. "value": 0
  1700. },
  1701. "scale": {
  1702. "type": "list<double>",
  1703. "value": [
  1704. 1,
  1705. 1
  1706. ]
  1707. },
  1708. "arrow": "arrowHead",
  1709. "arrowType": "arrow-empty-large",
  1710. "$linkDecoratorInfo": {
  1711. "type": "map<string,double>",
  1712. "value": {
  1713. "xratio": -1,
  1714. "yoffset": -8
  1715. }
  1716. }
  1717. },
  1718. "295": {
  1719. "segments": {
  1720. "type": "string",
  1721. "value": "m0,0 l-10,4 l10,4"
  1722. },
  1723. "style": {
  1724. "type": "map<string,string>",
  1725. "value": {
  1726. "stroke": "#000000",
  1727. "fill": "#000000",
  1728. "fill-opacity": 0,
  1729. "stroke-width": 1,
  1730. "opacity": 0
  1731. }
  1732. },
  1733. "mapper": {
  1734. "type": "code",
  1735. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1736. },
  1737. "parser": {
  1738. "type": "code",
  1739. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1740. },
  1741. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1742. "position": {
  1743. "type": "list<double>",
  1744. "value": [
  1745. 0,
  1746. 0
  1747. ]
  1748. },
  1749. "orientation": {
  1750. "type": "double",
  1751. "value": 0
  1752. },
  1753. "scale": {
  1754. "type": "list<double>",
  1755. "value": [
  1756. 1,
  1757. 1
  1758. ]
  1759. },
  1760. "arrow": "arrowHead",
  1761. "arrowType": "arrow-empty",
  1762. "$linkDecoratorInfo": {
  1763. "type": "map<string,double>",
  1764. "value": {
  1765. "xratio": -1,
  1766. "yoffset": -4
  1767. }
  1768. }
  1769. },
  1770. "296": {
  1771. "segments": {
  1772. "type": "string",
  1773. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  1774. },
  1775. "style": {
  1776. "type": "map<string,string>",
  1777. "value": {
  1778. "stroke": "#000000",
  1779. "fill": "#000000",
  1780. "opacity": 0,
  1781. "stroke-width": 1
  1782. }
  1783. },
  1784. "mapper": {
  1785. "type": "code",
  1786. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1787. },
  1788. "parser": {
  1789. "type": "code",
  1790. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1791. },
  1792. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1793. "position": {
  1794. "type": "list<double>",
  1795. "value": [
  1796. 0,
  1797. 0
  1798. ]
  1799. },
  1800. "orientation": {
  1801. "type": "double",
  1802. "value": 0
  1803. },
  1804. "scale": {
  1805. "type": "list<double>",
  1806. "value": [
  1807. 1,
  1808. 1
  1809. ]
  1810. },
  1811. "arrow": "arrowHead",
  1812. "arrowType": "diamond-black-large",
  1813. "$linkDecoratorInfo": {
  1814. "type": "map<string,double>",
  1815. "value": {
  1816. "xratio": -1,
  1817. "yoffset": -10
  1818. }
  1819. }
  1820. },
  1821. "297": {
  1822. "segments": {
  1823. "type": "string",
  1824. "value": "m0,0 l-10,4 l10,4 z"
  1825. },
  1826. "style": {
  1827. "type": "map<string,string>",
  1828. "value": {
  1829. "stroke": "#000000",
  1830. "fill": "#000000",
  1831. "opacity": 0,
  1832. "stroke-width": 1
  1833. }
  1834. },
  1835. "mapper": {
  1836. "type": "code",
  1837. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1838. },
  1839. "parser": {
  1840. "type": "code",
  1841. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1842. },
  1843. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1844. "position": {
  1845. "type": "list<double>",
  1846. "value": [
  1847. 0,
  1848. 0
  1849. ]
  1850. },
  1851. "orientation": {
  1852. "type": "double",
  1853. "value": 0
  1854. },
  1855. "scale": {
  1856. "type": "list<double>",
  1857. "value": [
  1858. 1,
  1859. 1
  1860. ]
  1861. },
  1862. "arrow": "arrowHead",
  1863. "arrowType": "triangle-black",
  1864. "$linkDecoratorInfo": {
  1865. "type": "map<string,double>",
  1866. "value": {
  1867. "xratio": -1,
  1868. "yoffset": -4
  1869. }
  1870. }
  1871. },
  1872. "298": {
  1873. "segments": {
  1874. "type": "string",
  1875. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  1876. },
  1877. "style": {
  1878. "type": "map<string,string>",
  1879. "value": {
  1880. "stroke": "#000000",
  1881. "fill": "#ffffff",
  1882. "opacity": 0,
  1883. "stroke-width": 1
  1884. }
  1885. },
  1886. "mapper": {
  1887. "type": "code",
  1888. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1889. },
  1890. "parser": {
  1891. "type": "code",
  1892. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1893. },
  1894. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1895. "position": {
  1896. "type": "list<double>",
  1897. "value": [
  1898. 0,
  1899. 0
  1900. ]
  1901. },
  1902. "orientation": {
  1903. "type": "double",
  1904. "value": 0
  1905. },
  1906. "scale": {
  1907. "type": "list<double>",
  1908. "value": [
  1909. 1,
  1910. 1
  1911. ]
  1912. },
  1913. "arrow": "arrowHead",
  1914. "arrowType": "diamond-white-large",
  1915. "$linkDecoratorInfo": {
  1916. "type": "map<string,double>",
  1917. "value": {
  1918. "xratio": -1,
  1919. "yoffset": -10
  1920. }
  1921. }
  1922. },
  1923. "__pLabelText": {
  1924. "position": {
  1925. "type": "list<double>",
  1926. "value": [
  1927. 0,
  1928. 0
  1929. ]
  1930. },
  1931. "orientation": {
  1932. "type": "double",
  1933. "value": 0
  1934. },
  1935. "scale": {
  1936. "type": "list<double>",
  1937. "value": [
  1938. 1,
  1939. 1
  1940. ]
  1941. },
  1942. "textContent": {
  1943. "type": "string",
  1944. "value": "#"
  1945. },
  1946. "style": {
  1947. "type": "map<string,string>",
  1948. "value": {
  1949. "stroke": "#6000ff",
  1950. "fill": "#6000ff",
  1951. "font-size": "15px",
  1952. "opacity": "1"
  1953. }
  1954. },
  1955. "mapper": {
  1956. "type": "code",
  1957. "value": "({'textContent':getAttr('__pLabel')})"
  1958. },
  1959. "parser": {
  1960. "type": "code",
  1961. "value": "({'__pLabel':getAttr('textContent')})"
  1962. },
  1963. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  1964. }
  1965. },
  1966. "edges": []
  1967. }
  1968. },
  1969. {
  1970. "name": "$asuri",
  1971. "type": "string",
  1972. "default": "-1"
  1973. },
  1974. {
  1975. "name": "$segments",
  1976. "type": "map<string,list<string>>",
  1977. "default": {}
  1978. }
  1979. ],
  1980. "__pancestorLink": [
  1981. {
  1982. "name": "link-style",
  1983. "type": "map<string,string>",
  1984. "default": {
  1985. "stroke": "lightgreen",
  1986. "stroke-dasharray": "",
  1987. "stroke-opacity": 1,
  1988. "stroke-width": 2
  1989. }
  1990. },
  1991. {
  1992. "name": "arrowHead",
  1993. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  1994. "default": "custom"
  1995. },
  1996. {
  1997. "name": "arrowTail",
  1998. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  1999. "default": "arrow-black"
  2000. },
  2001. {
  2002. "name": "typename",
  2003. "type": "string",
  2004. "default": "ancestorLink"
  2005. },
  2006. {
  2007. "name": "position",
  2008. "type": "list<double>",
  2009. "default": [
  2010. 705,
  2011. 524
  2012. ]
  2013. },
  2014. {
  2015. "name": "orientation",
  2016. "type": "double",
  2017. "default": 0
  2018. },
  2019. {
  2020. "name": "scale",
  2021. "type": "list<double>",
  2022. "default": [
  2023. 1,
  2024. 1
  2025. ]
  2026. },
  2027. {
  2028. "name": "mapper",
  2029. "type": "code",
  2030. "default": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2031. },
  2032. {
  2033. "name": "parser",
  2034. "type": "code",
  2035. "default": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2036. },
  2037. {
  2038. "name": "$contents",
  2039. "type": "map<string,*>",
  2040. "default": {
  2041. "nodes": {
  2042. "267": {
  2043. "segments": {
  2044. "type": "string",
  2045. "value": "m0,0 l10,4 l-10,4 l3,-4 z"
  2046. },
  2047. "style": {
  2048. "type": "map<string,string>",
  2049. "value": {
  2050. "stroke": "#000000",
  2051. "fill": "#000000",
  2052. "opacity": 1,
  2053. "stroke-width": 1
  2054. }
  2055. },
  2056. "mapper": {
  2057. "type": "code",
  2058. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2059. },
  2060. "parser": {
  2061. "type": "code",
  2062. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2063. },
  2064. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2065. "position": {
  2066. "type": "list<double>",
  2067. "value": [
  2068. 0,
  2069. 0
  2070. ]
  2071. },
  2072. "orientation": {
  2073. "type": "double",
  2074. "value": 0
  2075. },
  2076. "scale": {
  2077. "type": "list<double>",
  2078. "value": [
  2079. 1,
  2080. 1
  2081. ]
  2082. },
  2083. "arrow": "arrowTail",
  2084. "arrowType": "arrow-black",
  2085. "$linkDecoratorInfo": {
  2086. "type": "map<string,double>",
  2087. "value": {
  2088. "xratio": 1,
  2089. "yoffset": -4
  2090. }
  2091. }
  2092. },
  2093. "268": {
  2094. "segments": {
  2095. "type": "string",
  2096. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  2097. },
  2098. "style": {
  2099. "type": "map<string,string>",
  2100. "value": {
  2101. "stroke": "#000000",
  2102. "fill": "#000000",
  2103. "opacity": 0,
  2104. "stroke-width": 1
  2105. }
  2106. },
  2107. "mapper": {
  2108. "type": "code",
  2109. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2110. },
  2111. "parser": {
  2112. "type": "code",
  2113. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2114. },
  2115. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2116. "position": {
  2117. "type": "list<double>",
  2118. "value": [
  2119. 0,
  2120. 0
  2121. ]
  2122. },
  2123. "orientation": {
  2124. "type": "double",
  2125. "value": 0
  2126. },
  2127. "scale": {
  2128. "type": "list<double>",
  2129. "value": [
  2130. 1,
  2131. 1
  2132. ]
  2133. },
  2134. "arrow": "arrowTail",
  2135. "arrowType": "diamond-black-large",
  2136. "$linkDecoratorInfo": {
  2137. "type": "map<string,double>",
  2138. "value": {
  2139. "xratio": 1,
  2140. "yoffset": -10
  2141. }
  2142. }
  2143. },
  2144. "269": {
  2145. "r": {
  2146. "type": "double",
  2147. "value": 10
  2148. },
  2149. "style": {
  2150. "type": "map<string,string>",
  2151. "value": {
  2152. "stroke": "#000000",
  2153. "fill": "#000000",
  2154. "opacity": 0,
  2155. "stroke-width": 1
  2156. }
  2157. },
  2158. "mapper": {
  2159. "type": "code",
  2160. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2161. },
  2162. "parser": {
  2163. "type": "code",
  2164. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2165. },
  2166. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  2167. "position": {
  2168. "type": "list<double>",
  2169. "value": [
  2170. 0,
  2171. 0
  2172. ]
  2173. },
  2174. "orientation": {
  2175. "type": "double",
  2176. "value": 0
  2177. },
  2178. "scale": {
  2179. "type": "list<double>",
  2180. "value": [
  2181. 1,
  2182. 1
  2183. ]
  2184. },
  2185. "arrow": "arrowTail",
  2186. "arrowType": "circle-black-large",
  2187. "$linkDecoratorInfo": {
  2188. "type": "map<string,double>",
  2189. "value": {
  2190. "xratio": 1,
  2191. "yoffset": -10
  2192. }
  2193. }
  2194. },
  2195. "270": {
  2196. "r": {
  2197. "type": "double",
  2198. "value": 10
  2199. },
  2200. "style": {
  2201. "type": "map<string,string>",
  2202. "value": {
  2203. "stroke": "#000000",
  2204. "fill": "#ffffff",
  2205. "opacity": 0,
  2206. "stroke-width": 1
  2207. }
  2208. },
  2209. "mapper": {
  2210. "type": "code",
  2211. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2212. },
  2213. "parser": {
  2214. "type": "code",
  2215. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2216. },
  2217. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  2218. "position": {
  2219. "type": "list<double>",
  2220. "value": [
  2221. 0,
  2222. 0
  2223. ]
  2224. },
  2225. "orientation": {
  2226. "type": "double",
  2227. "value": 0
  2228. },
  2229. "scale": {
  2230. "type": "list<double>",
  2231. "value": [
  2232. 1,
  2233. 1
  2234. ]
  2235. },
  2236. "arrow": "arrowTail",
  2237. "arrowType": "circle-white-large",
  2238. "$linkDecoratorInfo": {
  2239. "type": "map<string,double>",
  2240. "value": {
  2241. "xratio": 1,
  2242. "yoffset": -10
  2243. }
  2244. }
  2245. },
  2246. "271": {
  2247. "r": {
  2248. "type": "double",
  2249. "value": 5
  2250. },
  2251. "style": {
  2252. "type": "map<string,string>",
  2253. "value": {
  2254. "stroke": "#000000",
  2255. "fill": "#000000",
  2256. "opacity": 0,
  2257. "stroke-width": 1
  2258. }
  2259. },
  2260. "mapper": {
  2261. "type": "code",
  2262. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2263. },
  2264. "parser": {
  2265. "type": "code",
  2266. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2267. },
  2268. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  2269. "position": {
  2270. "type": "list<double>",
  2271. "value": [
  2272. 0,
  2273. 0
  2274. ]
  2275. },
  2276. "orientation": {
  2277. "type": "double",
  2278. "value": 0
  2279. },
  2280. "scale": {
  2281. "type": "list<double>",
  2282. "value": [
  2283. 1,
  2284. 1
  2285. ]
  2286. },
  2287. "arrow": "arrowTail",
  2288. "arrowType": "circle-black",
  2289. "$linkDecoratorInfo": {
  2290. "type": "map<string,double>",
  2291. "value": {
  2292. "xratio": 1,
  2293. "yoffset": -5
  2294. }
  2295. }
  2296. },
  2297. "272": {
  2298. "segments": {
  2299. "type": "string",
  2300. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  2301. },
  2302. "style": {
  2303. "type": "map<string,string>",
  2304. "value": {
  2305. "stroke": "#000000",
  2306. "fill": "#000000",
  2307. "opacity": 0,
  2308. "stroke-width": 1
  2309. }
  2310. },
  2311. "mapper": {
  2312. "type": "code",
  2313. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2314. },
  2315. "parser": {
  2316. "type": "code",
  2317. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2318. },
  2319. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2320. "position": {
  2321. "type": "list<double>",
  2322. "value": [
  2323. 0,
  2324. 0
  2325. ]
  2326. },
  2327. "orientation": {
  2328. "type": "double",
  2329. "value": 0
  2330. },
  2331. "scale": {
  2332. "type": "list<double>",
  2333. "value": [
  2334. 1,
  2335. 1
  2336. ]
  2337. },
  2338. "arrow": "arrowTail",
  2339. "arrowType": "diamond-black",
  2340. "$linkDecoratorInfo": {
  2341. "type": "map<string,double>",
  2342. "value": {
  2343. "xratio": 1,
  2344. "yoffset": -5
  2345. }
  2346. }
  2347. },
  2348. "273": {
  2349. "segments": {
  2350. "type": "string",
  2351. "value": "m0,0 l20,10 l-20,10 z"
  2352. },
  2353. "style": {
  2354. "type": "map<string,string>",
  2355. "value": {
  2356. "stroke": "#000000",
  2357. "fill": "#000000",
  2358. "opacity": 0,
  2359. "stroke-width": 1
  2360. }
  2361. },
  2362. "mapper": {
  2363. "type": "code",
  2364. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2365. },
  2366. "parser": {
  2367. "type": "code",
  2368. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2369. },
  2370. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2371. "position": {
  2372. "type": "list<double>",
  2373. "value": [
  2374. 0,
  2375. 0
  2376. ]
  2377. },
  2378. "orientation": {
  2379. "type": "double",
  2380. "value": 0
  2381. },
  2382. "scale": {
  2383. "type": "list<double>",
  2384. "value": [
  2385. 1,
  2386. 1
  2387. ]
  2388. },
  2389. "arrow": "arrowTail",
  2390. "arrowType": "triangle-black-large",
  2391. "$linkDecoratorInfo": {
  2392. "type": "map<string,double>",
  2393. "value": {
  2394. "xratio": 1,
  2395. "yoffset": -10
  2396. }
  2397. }
  2398. },
  2399. "274": {
  2400. "segments": {
  2401. "type": "string",
  2402. "value": "m0,0 l10,4 l-10,4 z"
  2403. },
  2404. "style": {
  2405. "type": "map<string,string>",
  2406. "value": {
  2407. "stroke": "#000000",
  2408. "fill": "#000000",
  2409. "opacity": 0,
  2410. "stroke-width": 1
  2411. }
  2412. },
  2413. "mapper": {
  2414. "type": "code",
  2415. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2416. },
  2417. "parser": {
  2418. "type": "code",
  2419. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2420. },
  2421. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2422. "position": {
  2423. "type": "list<double>",
  2424. "value": [
  2425. 0,
  2426. 0
  2427. ]
  2428. },
  2429. "orientation": {
  2430. "type": "double",
  2431. "value": 0
  2432. },
  2433. "scale": {
  2434. "type": "list<double>",
  2435. "value": [
  2436. 1,
  2437. 1
  2438. ]
  2439. },
  2440. "arrow": "arrowTail",
  2441. "arrowType": "triangle-black",
  2442. "$linkDecoratorInfo": {
  2443. "type": "map<string,double>",
  2444. "value": {
  2445. "xratio": 1,
  2446. "yoffset": -4
  2447. }
  2448. }
  2449. },
  2450. "275": {
  2451. "segments": {
  2452. "type": "string",
  2453. "value": "m0,0 l20,8 l-20,8 l6,-8 z"
  2454. },
  2455. "style": {
  2456. "type": "map<string,string>",
  2457. "value": {
  2458. "stroke": "#000000",
  2459. "fill": "#000000",
  2460. "opacity": 0,
  2461. "stroke-width": 1
  2462. }
  2463. },
  2464. "mapper": {
  2465. "type": "code",
  2466. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2467. },
  2468. "parser": {
  2469. "type": "code",
  2470. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2471. },
  2472. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2473. "position": {
  2474. "type": "list<double>",
  2475. "value": [
  2476. 0,
  2477. 0
  2478. ]
  2479. },
  2480. "orientation": {
  2481. "type": "double",
  2482. "value": 0
  2483. },
  2484. "scale": {
  2485. "type": "list<double>",
  2486. "value": [
  2487. 1,
  2488. 1
  2489. ]
  2490. },
  2491. "arrow": "arrowTail",
  2492. "arrowType": "arrow-black-large",
  2493. "$linkDecoratorInfo": {
  2494. "type": "map<string,double>",
  2495. "value": {
  2496. "xratio": 1,
  2497. "yoffset": -8
  2498. }
  2499. }
  2500. },
  2501. "276": {
  2502. "segments": {
  2503. "type": "string",
  2504. "value": "m0,0 l20,10 l-20,10 z"
  2505. },
  2506. "style": {
  2507. "type": "map<string,string>",
  2508. "value": {
  2509. "stroke": "#000000",
  2510. "fill": "#ffffff",
  2511. "opacity": 0,
  2512. "stroke-width": 1
  2513. }
  2514. },
  2515. "mapper": {
  2516. "type": "code",
  2517. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2518. },
  2519. "parser": {
  2520. "type": "code",
  2521. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2522. },
  2523. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2524. "position": {
  2525. "type": "list<double>",
  2526. "value": [
  2527. 0,
  2528. 0
  2529. ]
  2530. },
  2531. "orientation": {
  2532. "type": "double",
  2533. "value": 0
  2534. },
  2535. "scale": {
  2536. "type": "list<double>",
  2537. "value": [
  2538. 1,
  2539. 1
  2540. ]
  2541. },
  2542. "arrow": "arrowTail",
  2543. "arrowType": "triangle-white-large",
  2544. "$linkDecoratorInfo": {
  2545. "type": "map<string,double>",
  2546. "value": {
  2547. "xratio": 1,
  2548. "yoffset": -10
  2549. }
  2550. }
  2551. },
  2552. "277": {
  2553. "segments": {
  2554. "type": "string",
  2555. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  2556. },
  2557. "style": {
  2558. "type": "map<string,string>",
  2559. "value": {
  2560. "stroke": "#000000",
  2561. "fill": "#ffffff",
  2562. "opacity": 0,
  2563. "stroke-width": 1
  2564. }
  2565. },
  2566. "mapper": {
  2567. "type": "code",
  2568. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2569. },
  2570. "parser": {
  2571. "type": "code",
  2572. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2573. },
  2574. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2575. "position": {
  2576. "type": "list<double>",
  2577. "value": [
  2578. 0,
  2579. 0
  2580. ]
  2581. },
  2582. "orientation": {
  2583. "type": "double",
  2584. "value": 0
  2585. },
  2586. "scale": {
  2587. "type": "list<double>",
  2588. "value": [
  2589. 1,
  2590. 1
  2591. ]
  2592. },
  2593. "arrow": "arrowTail",
  2594. "arrowType": "diamond-white",
  2595. "$linkDecoratorInfo": {
  2596. "type": "map<string,double>",
  2597. "value": {
  2598. "xratio": 1,
  2599. "yoffset": -5
  2600. }
  2601. }
  2602. },
  2603. "278": {
  2604. "segments": {
  2605. "type": "string",
  2606. "value": "m0,0 l20,8 l-20,8"
  2607. },
  2608. "style": {
  2609. "type": "map<string,string>",
  2610. "value": {
  2611. "stroke": "#000000",
  2612. "fill": "#000000",
  2613. "fill-opacity": 0,
  2614. "stroke-width": 1,
  2615. "opacity": 0
  2616. }
  2617. },
  2618. "mapper": {
  2619. "type": "code",
  2620. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2621. },
  2622. "parser": {
  2623. "type": "code",
  2624. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2625. },
  2626. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2627. "position": {
  2628. "type": "list<double>",
  2629. "value": [
  2630. 0,
  2631. 0
  2632. ]
  2633. },
  2634. "orientation": {
  2635. "type": "double",
  2636. "value": 0
  2637. },
  2638. "scale": {
  2639. "type": "list<double>",
  2640. "value": [
  2641. 1,
  2642. 1
  2643. ]
  2644. },
  2645. "arrow": "arrowTail",
  2646. "arrowType": "arrow-empty-large",
  2647. "$linkDecoratorInfo": {
  2648. "type": "map<string,double>",
  2649. "value": {
  2650. "xratio": 1,
  2651. "yoffset": -8
  2652. }
  2653. }
  2654. },
  2655. "279": {
  2656. "r": {
  2657. "type": "double",
  2658. "value": 5
  2659. },
  2660. "style": {
  2661. "type": "map<string,string>",
  2662. "value": {
  2663. "stroke": "#000000",
  2664. "fill": "#ffffff",
  2665. "opacity": 0,
  2666. "stroke-width": 1
  2667. }
  2668. },
  2669. "mapper": {
  2670. "type": "code",
  2671. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2672. },
  2673. "parser": {
  2674. "type": "code",
  2675. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2676. },
  2677. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  2678. "position": {
  2679. "type": "list<double>",
  2680. "value": [
  2681. 0,
  2682. 0
  2683. ]
  2684. },
  2685. "orientation": {
  2686. "type": "double",
  2687. "value": 0
  2688. },
  2689. "scale": {
  2690. "type": "list<double>",
  2691. "value": [
  2692. 1,
  2693. 1
  2694. ]
  2695. },
  2696. "arrow": "arrowTail",
  2697. "arrowType": "circle-white",
  2698. "$linkDecoratorInfo": {
  2699. "type": "map<string,double>",
  2700. "value": {
  2701. "xratio": 1,
  2702. "yoffset": -5
  2703. }
  2704. }
  2705. },
  2706. "280": {
  2707. "segments": {
  2708. "type": "string",
  2709. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  2710. },
  2711. "style": {
  2712. "type": "map<string,string>",
  2713. "value": {
  2714. "stroke": "#000000",
  2715. "fill": "#ffffff",
  2716. "opacity": 0,
  2717. "stroke-width": 1
  2718. }
  2719. },
  2720. "mapper": {
  2721. "type": "code",
  2722. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2723. },
  2724. "parser": {
  2725. "type": "code",
  2726. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2727. },
  2728. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2729. "position": {
  2730. "type": "list<double>",
  2731. "value": [
  2732. 0,
  2733. 0
  2734. ]
  2735. },
  2736. "orientation": {
  2737. "type": "double",
  2738. "value": 0
  2739. },
  2740. "scale": {
  2741. "type": "list<double>",
  2742. "value": [
  2743. 1,
  2744. 1
  2745. ]
  2746. },
  2747. "arrow": "arrowTail",
  2748. "arrowType": "diamond-white-large",
  2749. "$linkDecoratorInfo": {
  2750. "type": "map<string,double>",
  2751. "value": {
  2752. "xratio": 1,
  2753. "yoffset": -10
  2754. }
  2755. }
  2756. },
  2757. "281": {
  2758. "segments": {
  2759. "type": "string",
  2760. "value": "m0,0 l10,4 l-10,4"
  2761. },
  2762. "style": {
  2763. "type": "map<string,string>",
  2764. "value": {
  2765. "stroke": "#000000",
  2766. "fill": "#000000",
  2767. "fill-opacity": 0,
  2768. "stroke-width": 1,
  2769. "opacity": 0
  2770. }
  2771. },
  2772. "mapper": {
  2773. "type": "code",
  2774. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2775. },
  2776. "parser": {
  2777. "type": "code",
  2778. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2779. },
  2780. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2781. "position": {
  2782. "type": "list<double>",
  2783. "value": [
  2784. 0,
  2785. 0
  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. "arrow": "arrowTail",
  2800. "arrowType": "arrow-empty",
  2801. "$linkDecoratorInfo": {
  2802. "type": "map<string,double>",
  2803. "value": {
  2804. "xratio": 1,
  2805. "yoffset": -4
  2806. }
  2807. }
  2808. },
  2809. "282": {
  2810. "segments": {
  2811. "type": "string",
  2812. "value": "m0,0 l10,5 l-10,5 z"
  2813. },
  2814. "style": {
  2815. "type": "map<string,string>",
  2816. "value": {
  2817. "stroke": "#000000",
  2818. "fill": "#ffffff",
  2819. "opacity": 0,
  2820. "stroke-width": 1
  2821. }
  2822. },
  2823. "mapper": {
  2824. "type": "code",
  2825. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2826. },
  2827. "parser": {
  2828. "type": "code",
  2829. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2830. },
  2831. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2832. "position": {
  2833. "type": "list<double>",
  2834. "value": [
  2835. 0,
  2836. 0
  2837. ]
  2838. },
  2839. "orientation": {
  2840. "type": "double",
  2841. "value": 0
  2842. },
  2843. "scale": {
  2844. "type": "list<double>",
  2845. "value": [
  2846. 1,
  2847. 1
  2848. ]
  2849. },
  2850. "arrow": "arrowTail",
  2851. "arrowType": "triangle-white",
  2852. "$linkDecoratorInfo": {
  2853. "type": "map<string,double>",
  2854. "value": {
  2855. "xratio": 1,
  2856. "yoffset": -5
  2857. }
  2858. }
  2859. },
  2860. "283": {
  2861. "segments": {
  2862. "type": "string",
  2863. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  2864. },
  2865. "style": {
  2866. "type": "map<string,string>",
  2867. "value": {
  2868. "stroke": "#000000",
  2869. "fill": "#ffffff",
  2870. "opacity": 0,
  2871. "stroke-width": 1
  2872. }
  2873. },
  2874. "mapper": {
  2875. "type": "code",
  2876. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2877. },
  2878. "parser": {
  2879. "type": "code",
  2880. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2881. },
  2882. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2883. "position": {
  2884. "type": "list<double>",
  2885. "value": [
  2886. 0,
  2887. 0
  2888. ]
  2889. },
  2890. "orientation": {
  2891. "type": "double",
  2892. "value": 0
  2893. },
  2894. "scale": {
  2895. "type": "list<double>",
  2896. "value": [
  2897. 1,
  2898. 1
  2899. ]
  2900. },
  2901. "arrow": "arrowHead",
  2902. "arrowType": "diamond-white",
  2903. "$linkDecoratorInfo": {
  2904. "type": "map<string,double>",
  2905. "value": {
  2906. "xratio": -1,
  2907. "yoffset": -5
  2908. }
  2909. }
  2910. },
  2911. "284": {
  2912. "segments": {
  2913. "type": "string",
  2914. "value": "m0,0 l-10,5 l10,5 z"
  2915. },
  2916. "style": {
  2917. "type": "map<string,string>",
  2918. "value": {
  2919. "stroke": "#000000",
  2920. "fill": "#ffffff",
  2921. "opacity": 0,
  2922. "stroke-width": 1
  2923. }
  2924. },
  2925. "mapper": {
  2926. "type": "code",
  2927. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2928. },
  2929. "parser": {
  2930. "type": "code",
  2931. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2932. },
  2933. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2934. "position": {
  2935. "type": "list<double>",
  2936. "value": [
  2937. 0,
  2938. 0
  2939. ]
  2940. },
  2941. "orientation": {
  2942. "type": "double",
  2943. "value": 0
  2944. },
  2945. "scale": {
  2946. "type": "list<double>",
  2947. "value": [
  2948. 1,
  2949. 1
  2950. ]
  2951. },
  2952. "arrow": "arrowHead",
  2953. "arrowType": "triangle-white",
  2954. "$linkDecoratorInfo": {
  2955. "type": "map<string,double>",
  2956. "value": {
  2957. "xratio": -1,
  2958. "yoffset": -5
  2959. }
  2960. }
  2961. },
  2962. "285": {
  2963. "segments": {
  2964. "type": "string",
  2965. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  2966. },
  2967. "style": {
  2968. "type": "map<string,string>",
  2969. "value": {
  2970. "stroke": "#000000",
  2971. "fill": "#000000",
  2972. "opacity": 0,
  2973. "stroke-width": 1
  2974. }
  2975. },
  2976. "mapper": {
  2977. "type": "code",
  2978. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2979. },
  2980. "parser": {
  2981. "type": "code",
  2982. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2983. },
  2984. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2985. "position": {
  2986. "type": "list<double>",
  2987. "value": [
  2988. 0,
  2989. 0
  2990. ]
  2991. },
  2992. "orientation": {
  2993. "type": "double",
  2994. "value": 0
  2995. },
  2996. "scale": {
  2997. "type": "list<double>",
  2998. "value": [
  2999. 1,
  3000. 1
  3001. ]
  3002. },
  3003. "arrow": "arrowHead",
  3004. "arrowType": "diamond-black",
  3005. "$linkDecoratorInfo": {
  3006. "type": "map<string,double>",
  3007. "value": {
  3008. "xratio": -1,
  3009. "yoffset": -5
  3010. }
  3011. }
  3012. },
  3013. "286": {
  3014. "r": {
  3015. "type": "double",
  3016. "value": 10
  3017. },
  3018. "style": {
  3019. "type": "map<string,string>",
  3020. "value": {
  3021. "stroke": "#000000",
  3022. "fill": "#000000",
  3023. "opacity": 0,
  3024. "stroke-width": 1
  3025. }
  3026. },
  3027. "mapper": {
  3028. "type": "code",
  3029. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3030. },
  3031. "parser": {
  3032. "type": "code",
  3033. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3034. },
  3035. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  3036. "position": {
  3037. "type": "list<double>",
  3038. "value": [
  3039. 0,
  3040. 0
  3041. ]
  3042. },
  3043. "orientation": {
  3044. "type": "double",
  3045. "value": 0
  3046. },
  3047. "scale": {
  3048. "type": "list<double>",
  3049. "value": [
  3050. 1,
  3051. 1
  3052. ]
  3053. },
  3054. "arrow": "arrowHead",
  3055. "arrowType": "circle-black-large",
  3056. "$linkDecoratorInfo": {
  3057. "type": "map<string,double>",
  3058. "value": {
  3059. "xratio": -1,
  3060. "yoffset": -10
  3061. }
  3062. }
  3063. },
  3064. "287": {
  3065. "segments": {
  3066. "type": "string",
  3067. "value": "m0,0 l-20,8 l20,8 l-6,-8 z"
  3068. },
  3069. "style": {
  3070. "type": "map<string,string>",
  3071. "value": {
  3072. "stroke": "#000000",
  3073. "fill": "#000000",
  3074. "opacity": 0,
  3075. "stroke-width": 1
  3076. }
  3077. },
  3078. "mapper": {
  3079. "type": "code",
  3080. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3081. },
  3082. "parser": {
  3083. "type": "code",
  3084. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3085. },
  3086. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3087. "position": {
  3088. "type": "list<double>",
  3089. "value": [
  3090. 0,
  3091. 0
  3092. ]
  3093. },
  3094. "orientation": {
  3095. "type": "double",
  3096. "value": 0
  3097. },
  3098. "scale": {
  3099. "type": "list<double>",
  3100. "value": [
  3101. 1,
  3102. 1
  3103. ]
  3104. },
  3105. "arrow": "arrowHead",
  3106. "arrowType": "arrow-black-large",
  3107. "$linkDecoratorInfo": {
  3108. "type": "map<string,double>",
  3109. "value": {
  3110. "xratio": -1,
  3111. "yoffset": -8
  3112. }
  3113. }
  3114. },
  3115. "288": {
  3116. "segments": {
  3117. "type": "string",
  3118. "value": "m0,0 l-10,4 l10,4 l-3,-4 z"
  3119. },
  3120. "style": {
  3121. "type": "map<string,string>",
  3122. "value": {
  3123. "stroke": "#000000",
  3124. "fill": "#000000",
  3125. "opacity": 0,
  3126. "stroke-width": 1
  3127. }
  3128. },
  3129. "mapper": {
  3130. "type": "code",
  3131. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3132. },
  3133. "parser": {
  3134. "type": "code",
  3135. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3136. },
  3137. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3138. "position": {
  3139. "type": "list<double>",
  3140. "value": [
  3141. 0,
  3142. 0
  3143. ]
  3144. },
  3145. "orientation": {
  3146. "type": "double",
  3147. "value": 0
  3148. },
  3149. "scale": {
  3150. "type": "list<double>",
  3151. "value": [
  3152. 1,
  3153. 1
  3154. ]
  3155. },
  3156. "arrow": "arrowHead",
  3157. "arrowType": "arrow-black",
  3158. "$linkDecoratorInfo": {
  3159. "type": "map<string,double>",
  3160. "value": {
  3161. "xratio": -1,
  3162. "yoffset": -4
  3163. }
  3164. }
  3165. },
  3166. "289": {
  3167. "segments": {
  3168. "type": "string",
  3169. "value": "m0,0 l-20,10 l20,10 z"
  3170. },
  3171. "style": {
  3172. "type": "map<string,string>",
  3173. "value": {
  3174. "stroke": "#000000",
  3175. "fill": "#ffffff",
  3176. "opacity": 0,
  3177. "stroke-width": 1
  3178. }
  3179. },
  3180. "mapper": {
  3181. "type": "code",
  3182. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3183. },
  3184. "parser": {
  3185. "type": "code",
  3186. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3187. },
  3188. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3189. "position": {
  3190. "type": "list<double>",
  3191. "value": [
  3192. 0,
  3193. 0
  3194. ]
  3195. },
  3196. "orientation": {
  3197. "type": "double",
  3198. "value": 0
  3199. },
  3200. "scale": {
  3201. "type": "list<double>",
  3202. "value": [
  3203. 1,
  3204. 1
  3205. ]
  3206. },
  3207. "arrow": "arrowHead",
  3208. "arrowType": "triangle-white-large",
  3209. "$linkDecoratorInfo": {
  3210. "type": "map<string,double>",
  3211. "value": {
  3212. "xratio": -1,
  3213. "yoffset": -10
  3214. }
  3215. }
  3216. },
  3217. "290": {
  3218. "segments": {
  3219. "type": "string",
  3220. "value": "m0,0 l-20,10 l20,10 z"
  3221. },
  3222. "style": {
  3223. "type": "map<string,string>",
  3224. "value": {
  3225. "stroke": "#000000",
  3226. "fill": "#000000",
  3227. "opacity": 0,
  3228. "stroke-width": 1
  3229. }
  3230. },
  3231. "mapper": {
  3232. "type": "code",
  3233. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3234. },
  3235. "parser": {
  3236. "type": "code",
  3237. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3238. },
  3239. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3240. "position": {
  3241. "type": "list<double>",
  3242. "value": [
  3243. 0,
  3244. 0
  3245. ]
  3246. },
  3247. "orientation": {
  3248. "type": "double",
  3249. "value": 0
  3250. },
  3251. "scale": {
  3252. "type": "list<double>",
  3253. "value": [
  3254. 1,
  3255. 1
  3256. ]
  3257. },
  3258. "arrow": "arrowHead",
  3259. "arrowType": "triangle-black-large",
  3260. "$linkDecoratorInfo": {
  3261. "type": "map<string,double>",
  3262. "value": {
  3263. "xratio": -1,
  3264. "yoffset": -10
  3265. }
  3266. }
  3267. },
  3268. "291": {
  3269. "r": {
  3270. "type": "double",
  3271. "value": 5
  3272. },
  3273. "style": {
  3274. "type": "map<string,string>",
  3275. "value": {
  3276. "stroke": "#000000",
  3277. "fill": "#000000",
  3278. "opacity": 0,
  3279. "stroke-width": 1
  3280. }
  3281. },
  3282. "mapper": {
  3283. "type": "code",
  3284. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3285. },
  3286. "parser": {
  3287. "type": "code",
  3288. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3289. },
  3290. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  3291. "position": {
  3292. "type": "list<double>",
  3293. "value": [
  3294. 0,
  3295. 0
  3296. ]
  3297. },
  3298. "orientation": {
  3299. "type": "double",
  3300. "value": 0
  3301. },
  3302. "scale": {
  3303. "type": "list<double>",
  3304. "value": [
  3305. 1,
  3306. 1
  3307. ]
  3308. },
  3309. "arrow": "arrowHead",
  3310. "arrowType": "circle-black",
  3311. "$linkDecoratorInfo": {
  3312. "type": "map<string,double>",
  3313. "value": {
  3314. "xratio": -1,
  3315. "yoffset": -5
  3316. }
  3317. }
  3318. },
  3319. "292": {
  3320. "r": {
  3321. "type": "double",
  3322. "value": 5
  3323. },
  3324. "style": {
  3325. "type": "map<string,string>",
  3326. "value": {
  3327. "stroke": "#000000",
  3328. "fill": "#ffffff",
  3329. "opacity": 0,
  3330. "stroke-width": 1
  3331. }
  3332. },
  3333. "mapper": {
  3334. "type": "code",
  3335. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3336. },
  3337. "parser": {
  3338. "type": "code",
  3339. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3340. },
  3341. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  3342. "position": {
  3343. "type": "list<double>",
  3344. "value": [
  3345. 0,
  3346. 0
  3347. ]
  3348. },
  3349. "orientation": {
  3350. "type": "double",
  3351. "value": 0
  3352. },
  3353. "scale": {
  3354. "type": "list<double>",
  3355. "value": [
  3356. 1,
  3357. 1
  3358. ]
  3359. },
  3360. "arrow": "arrowHead",
  3361. "arrowType": "circle-white",
  3362. "$linkDecoratorInfo": {
  3363. "type": "map<string,double>",
  3364. "value": {
  3365. "xratio": -1,
  3366. "yoffset": -5
  3367. }
  3368. }
  3369. },
  3370. "293": {
  3371. "r": {
  3372. "type": "double",
  3373. "value": 10
  3374. },
  3375. "style": {
  3376. "type": "map<string,string>",
  3377. "value": {
  3378. "stroke": "#000000",
  3379. "fill": "#ffffff",
  3380. "opacity": 0,
  3381. "stroke-width": 1
  3382. }
  3383. },
  3384. "mapper": {
  3385. "type": "code",
  3386. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3387. },
  3388. "parser": {
  3389. "type": "code",
  3390. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3391. },
  3392. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  3393. "position": {
  3394. "type": "list<double>",
  3395. "value": [
  3396. 0,
  3397. 0
  3398. ]
  3399. },
  3400. "orientation": {
  3401. "type": "double",
  3402. "value": 0
  3403. },
  3404. "scale": {
  3405. "type": "list<double>",
  3406. "value": [
  3407. 1,
  3408. 1
  3409. ]
  3410. },
  3411. "arrow": "arrowHead",
  3412. "arrowType": "circle-white-large",
  3413. "$linkDecoratorInfo": {
  3414. "type": "map<string,double>",
  3415. "value": {
  3416. "xratio": -1,
  3417. "yoffset": -10
  3418. }
  3419. }
  3420. },
  3421. "294": {
  3422. "segments": {
  3423. "type": "string",
  3424. "value": "m0,0 l-20,8 l20,8"
  3425. },
  3426. "style": {
  3427. "type": "map<string,string>",
  3428. "value": {
  3429. "stroke": "#000000",
  3430. "fill": "#000000",
  3431. "fill-opacity": 0,
  3432. "stroke-width": 1,
  3433. "opacity": 0
  3434. }
  3435. },
  3436. "mapper": {
  3437. "type": "code",
  3438. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3439. },
  3440. "parser": {
  3441. "type": "code",
  3442. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3443. },
  3444. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3445. "position": {
  3446. "type": "list<double>",
  3447. "value": [
  3448. 0,
  3449. 0
  3450. ]
  3451. },
  3452. "orientation": {
  3453. "type": "double",
  3454. "value": 0
  3455. },
  3456. "scale": {
  3457. "type": "list<double>",
  3458. "value": [
  3459. 1,
  3460. 1
  3461. ]
  3462. },
  3463. "arrow": "arrowHead",
  3464. "arrowType": "arrow-empty-large",
  3465. "$linkDecoratorInfo": {
  3466. "type": "map<string,double>",
  3467. "value": {
  3468. "xratio": -1,
  3469. "yoffset": -8
  3470. }
  3471. }
  3472. },
  3473. "295": {
  3474. "segments": {
  3475. "type": "string",
  3476. "value": "m0,0 l-10,4 l10,4"
  3477. },
  3478. "style": {
  3479. "type": "map<string,string>",
  3480. "value": {
  3481. "stroke": "#000000",
  3482. "fill": "#000000",
  3483. "fill-opacity": 0,
  3484. "stroke-width": 1,
  3485. "opacity": 0
  3486. }
  3487. },
  3488. "mapper": {
  3489. "type": "code",
  3490. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3491. },
  3492. "parser": {
  3493. "type": "code",
  3494. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3495. },
  3496. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3497. "position": {
  3498. "type": "list<double>",
  3499. "value": [
  3500. 0,
  3501. 0
  3502. ]
  3503. },
  3504. "orientation": {
  3505. "type": "double",
  3506. "value": 0
  3507. },
  3508. "scale": {
  3509. "type": "list<double>",
  3510. "value": [
  3511. 1,
  3512. 1
  3513. ]
  3514. },
  3515. "arrow": "arrowHead",
  3516. "arrowType": "arrow-empty",
  3517. "$linkDecoratorInfo": {
  3518. "type": "map<string,double>",
  3519. "value": {
  3520. "xratio": -1,
  3521. "yoffset": -4
  3522. }
  3523. }
  3524. },
  3525. "296": {
  3526. "segments": {
  3527. "type": "string",
  3528. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  3529. },
  3530. "style": {
  3531. "type": "map<string,string>",
  3532. "value": {
  3533. "stroke": "#000000",
  3534. "fill": "#000000",
  3535. "opacity": 0,
  3536. "stroke-width": 1
  3537. }
  3538. },
  3539. "mapper": {
  3540. "type": "code",
  3541. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3542. },
  3543. "parser": {
  3544. "type": "code",
  3545. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3546. },
  3547. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3548. "position": {
  3549. "type": "list<double>",
  3550. "value": [
  3551. 0,
  3552. 0
  3553. ]
  3554. },
  3555. "orientation": {
  3556. "type": "double",
  3557. "value": 0
  3558. },
  3559. "scale": {
  3560. "type": "list<double>",
  3561. "value": [
  3562. 1,
  3563. 1
  3564. ]
  3565. },
  3566. "arrow": "arrowHead",
  3567. "arrowType": "diamond-black-large",
  3568. "$linkDecoratorInfo": {
  3569. "type": "map<string,double>",
  3570. "value": {
  3571. "xratio": -1,
  3572. "yoffset": -10
  3573. }
  3574. }
  3575. },
  3576. "297": {
  3577. "segments": {
  3578. "type": "string",
  3579. "value": "m0,0 l-10,4 l10,4 z"
  3580. },
  3581. "style": {
  3582. "type": "map<string,string>",
  3583. "value": {
  3584. "stroke": "#000000",
  3585. "fill": "#000000",
  3586. "opacity": 0,
  3587. "stroke-width": 1
  3588. }
  3589. },
  3590. "mapper": {
  3591. "type": "code",
  3592. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3593. },
  3594. "parser": {
  3595. "type": "code",
  3596. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3597. },
  3598. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3599. "position": {
  3600. "type": "list<double>",
  3601. "value": [
  3602. 0,
  3603. 0
  3604. ]
  3605. },
  3606. "orientation": {
  3607. "type": "double",
  3608. "value": 0
  3609. },
  3610. "scale": {
  3611. "type": "list<double>",
  3612. "value": [
  3613. 1,
  3614. 1
  3615. ]
  3616. },
  3617. "arrow": "arrowHead",
  3618. "arrowType": "triangle-black",
  3619. "$linkDecoratorInfo": {
  3620. "type": "map<string,double>",
  3621. "value": {
  3622. "xratio": -1,
  3623. "yoffset": -4
  3624. }
  3625. }
  3626. },
  3627. "298": {
  3628. "segments": {
  3629. "type": "string",
  3630. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  3631. },
  3632. "style": {
  3633. "type": "map<string,string>",
  3634. "value": {
  3635. "stroke": "#000000",
  3636. "fill": "#ffffff",
  3637. "opacity": 0,
  3638. "stroke-width": 1
  3639. }
  3640. },
  3641. "mapper": {
  3642. "type": "code",
  3643. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3644. },
  3645. "parser": {
  3646. "type": "code",
  3647. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  3648. },
  3649. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3650. "position": {
  3651. "type": "list<double>",
  3652. "value": [
  3653. 0,
  3654. 0
  3655. ]
  3656. },
  3657. "orientation": {
  3658. "type": "double",
  3659. "value": 0
  3660. },
  3661. "scale": {
  3662. "type": "list<double>",
  3663. "value": [
  3664. 1,
  3665. 1
  3666. ]
  3667. },
  3668. "arrow": "arrowHead",
  3669. "arrowType": "diamond-white-large",
  3670. "$linkDecoratorInfo": {
  3671. "type": "map<string,double>",
  3672. "value": {
  3673. "xratio": -1,
  3674. "yoffset": -10
  3675. }
  3676. }
  3677. },
  3678. "__pLabelText": {
  3679. "position": {
  3680. "type": "list<double>",
  3681. "value": [
  3682. 0,
  3683. 0
  3684. ]
  3685. },
  3686. "orientation": {
  3687. "type": "double",
  3688. "value": 0
  3689. },
  3690. "scale": {
  3691. "type": "list<double>",
  3692. "value": [
  3693. 1,
  3694. 1
  3695. ]
  3696. },
  3697. "textContent": {
  3698. "type": "string",
  3699. "value": "#"
  3700. },
  3701. "style": {
  3702. "type": "map<string,string>",
  3703. "value": {
  3704. "stroke": "#6000ff",
  3705. "fill": "#6000ff",
  3706. "font-size": "15px",
  3707. "opacity": "1"
  3708. }
  3709. },
  3710. "mapper": {
  3711. "type": "code",
  3712. "value": "({'textContent':getAttr('__pLabel')})"
  3713. },
  3714. "parser": {
  3715. "type": "code",
  3716. "value": "({'__pLabel':getAttr('textContent')})"
  3717. },
  3718. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  3719. }
  3720. },
  3721. "edges": []
  3722. }
  3723. },
  3724. {
  3725. "name": "$asuri",
  3726. "type": "string",
  3727. "default": "-1"
  3728. },
  3729. {
  3730. "name": "$segments",
  3731. "type": "map<string,list<string>>",
  3732. "default": {}
  3733. }
  3734. ]
  3735. },
  3736. "constraints": [],
  3737. "actions": [],
  3738. "cardinalities": {
  3739. "__pNodeIcon": [],
  3740. "__pparentLink": [],
  3741. "__pancestorLink": []
  3742. },
  3743. "legalConnections": {},
  3744. "connectorTypes": {},
  3745. "types2parentTypes": {
  3746. "__pNodeIcon": [],
  3747. "__pparentLink": [],
  3748. "__pancestorLink": []
  3749. }
  3750. }