R_deleteCar.model 61 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394
  1. {
  2. "csm": {
  3. "nodes": {
  4. "0": {
  5. "typename": {
  6. "type": "string",
  7. "value": "LHSIcon"
  8. },
  9. "position": {
  10. "type": "list<double>",
  11. "value": [
  12. 332,
  13. 215
  14. ]
  15. },
  16. "orientation": {
  17. "type": "double",
  18. "value": 0
  19. },
  20. "scale": {
  21. "type": "list<double>",
  22. "value": [
  23. 1,
  24. 1
  25. ]
  26. },
  27. "mapper": {
  28. "type": "code",
  29. "value": ""
  30. },
  31. "parser": {
  32. "type": "code",
  33. "value": ""
  34. },
  35. "$contents": {
  36. "type": "map<string,*>",
  37. "value": {
  38. "nodes": {
  39. "4": {
  40. "segments": {
  41. "type": "string",
  42. "value": "m0,0 l350,0 l100,250 l-100,250 l-350,0z"
  43. },
  44. "style": {
  45. "type": "map<string,string>",
  46. "value": {
  47. "stroke": "#000000",
  48. "stroke-dasharray": "",
  49. "fill": "#ffffff",
  50. "fill-opacity": 0.75,
  51. "stroke-width": 2,
  52. "arrow-start": "none",
  53. "arrow-end": "none"
  54. }
  55. },
  56. "mapper": {
  57. "type": "code",
  58. "value": ""
  59. },
  60. "parser": {
  61. "type": "code",
  62. "value": ""
  63. },
  64. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  65. "position": {
  66. "type": "list<double>",
  67. "value": [
  68. 1,
  69. 0
  70. ]
  71. },
  72. "orientation": {
  73. "type": "double",
  74. "value": 0
  75. },
  76. "scale": {
  77. "type": "list<double>",
  78. "value": [
  79. 1,
  80. 1
  81. ]
  82. }
  83. }
  84. },
  85. "edges": []
  86. }
  87. },
  88. "$asuri": {
  89. "type": "string",
  90. "value": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/LHS/0.instance"
  91. },
  92. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/LHSIcon"
  93. },
  94. "1": {
  95. "typename": {
  96. "type": "string",
  97. "value": "RHSIcon"
  98. },
  99. "position": {
  100. "type": "list<double>",
  101. "value": [
  102. 734,
  103. 213
  104. ]
  105. },
  106. "orientation": {
  107. "type": "double",
  108. "value": 0
  109. },
  110. "scale": {
  111. "type": "list<double>",
  112. "value": [
  113. 1,
  114. 1
  115. ]
  116. },
  117. "mapper": {
  118. "type": "code",
  119. "value": ""
  120. },
  121. "parser": {
  122. "type": "code",
  123. "value": ""
  124. },
  125. "$contents": {
  126. "type": "map<string,*>",
  127. "value": {
  128. "nodes": {
  129. "7": {
  130. "segments": {
  131. "type": "string",
  132. "value": "m0,0 l450,0 l0,500 l-450,0 l100,-250z"
  133. },
  134. "style": {
  135. "type": "map<string,string>",
  136. "value": {
  137. "stroke": "#000000",
  138. "stroke-dasharray": "",
  139. "fill": "#ffffff",
  140. "fill-opacity": 0.75,
  141. "stroke-width": 2,
  142. "arrow-start": "none",
  143. "arrow-end": "none"
  144. }
  145. },
  146. "mapper": {
  147. "type": "code",
  148. "value": ""
  149. },
  150. "parser": {
  151. "type": "code",
  152. "value": ""
  153. },
  154. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  155. "position": {
  156. "type": "list<double>",
  157. "value": [
  158. 0,
  159. 0
  160. ]
  161. },
  162. "orientation": {
  163. "type": "double",
  164. "value": 0
  165. },
  166. "scale": {
  167. "type": "list<double>",
  168. "value": [
  169. 1,
  170. 1
  171. ]
  172. }
  173. }
  174. },
  175. "edges": []
  176. }
  177. },
  178. "$asuri": {
  179. "type": "string",
  180. "value": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/RHS/1.instance"
  181. },
  182. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/RHSIcon"
  183. },
  184. "23": {
  185. "typename": {
  186. "type": "string",
  187. "value": "UnitTrackIcon"
  188. },
  189. "position": {
  190. "type": "list<double>",
  191. "value": [
  192. 506,
  193. 426
  194. ]
  195. },
  196. "orientation": {
  197. "type": "double",
  198. "value": 0
  199. },
  200. "scale": {
  201. "type": "list<double>",
  202. "value": [
  203. 1,
  204. 1
  205. ]
  206. },
  207. "mapper": {
  208. "type": "code",
  209. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  210. },
  211. "parser": {
  212. "type": "code",
  213. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  214. },
  215. "$contents": {
  216. "type": "map<string,*>",
  217. "value": {
  218. "nodes": {
  219. "4": {
  220. "src": {
  221. "type": "string",
  222. "value": "/Formalisms/Race/icons/unittrack.png"
  223. },
  224. "width": {
  225. "type": "double",
  226. "value": 75
  227. },
  228. "height": {
  229. "type": "double",
  230. "value": 100
  231. },
  232. "style": {
  233. "type": "map<string,string>",
  234. "value": {
  235. "stroke": "#000000",
  236. "stroke-dasharray": "",
  237. "fill": "#ffffff",
  238. "fill-opacity": 1,
  239. "font-size": "20px",
  240. "stroke-width": 1,
  241. "arrow-start": "none",
  242. "arrow-end": "none"
  243. }
  244. },
  245. "mapper": {
  246. "type": "code",
  247. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  248. },
  249. "parser": {
  250. "type": "code",
  251. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  252. },
  253. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Image",
  254. "position": {
  255. "type": "list<double>",
  256. "value": [
  257. 2,
  258. 2
  259. ]
  260. },
  261. "orientation": {
  262. "type": "double",
  263. "value": 0
  264. },
  265. "scale": {
  266. "type": "list<double>",
  267. "value": [
  268. 1,
  269. 1
  270. ]
  271. }
  272. },
  273. "__pLabelText": {
  274. "position": {
  275. "type": "list<double>",
  276. "value": [
  277. 0,
  278. 0
  279. ]
  280. },
  281. "orientation": {
  282. "type": "double",
  283. "value": 0
  284. },
  285. "scale": {
  286. "type": "list<double>",
  287. "value": [
  288. 1,
  289. 1
  290. ]
  291. },
  292. "textContent": {
  293. "type": "string",
  294. "value": "0"
  295. },
  296. "style": {
  297. "type": "map<string,string>",
  298. "value": {
  299. "stroke": "#6000ff",
  300. "fill": "#6000ff",
  301. "font-size": "15px",
  302. "opacity": "1"
  303. }
  304. },
  305. "mapper": {
  306. "type": "code",
  307. "value": "({'textContent':getAttr('__pLabel')})"
  308. },
  309. "parser": {
  310. "type": "code",
  311. "value": "({'__pLabel':getAttr('textContent')})"
  312. },
  313. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  314. }
  315. },
  316. "edges": []
  317. }
  318. },
  319. "$asuri": {
  320. "type": "string",
  321. "value": "/Formalisms/Race/Race.pattern/__pUnitTrack/23.instance"
  322. },
  323. "$type": "/Formalisms/Race/Race.defaultIcons.pattern/__pUnitTrackIcon"
  324. },
  325. "24": {
  326. "typename": {
  327. "type": "string",
  328. "value": "CarIcon"
  329. },
  330. "position": {
  331. "type": "list<double>",
  332. "value": [
  333. 510,
  334. 458
  335. ]
  336. },
  337. "orientation": {
  338. "type": "double",
  339. "value": 0
  340. },
  341. "scale": {
  342. "type": "list<double>",
  343. "value": [
  344. 1,
  345. 1
  346. ]
  347. },
  348. "mapper": {
  349. "type": "code",
  350. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  351. },
  352. "parser": {
  353. "type": "code",
  354. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  355. },
  356. "$contents": {
  357. "type": "map<string,*>",
  358. "value": {
  359. "nodes": {
  360. "6": {
  361. "src": {
  362. "type": "string",
  363. "value": "/Formalisms/Race/icons/car.png"
  364. },
  365. "width": {
  366. "type": "double",
  367. "value": 50
  368. },
  369. "height": {
  370. "type": "double",
  371. "value": 25
  372. },
  373. "style": {
  374. "type": "map<string,string>",
  375. "value": {
  376. "stroke": "#000000",
  377. "stroke-dasharray": "",
  378. "fill": "#ffffff",
  379. "fill-opacity": 1,
  380. "font-size": "20px",
  381. "stroke-width": 1,
  382. "arrow-start": "none",
  383. "arrow-end": "none"
  384. }
  385. },
  386. "mapper": {
  387. "type": "code",
  388. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  389. },
  390. "parser": {
  391. "type": "code",
  392. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  393. },
  394. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Image",
  395. "position": {
  396. "type": "list<double>",
  397. "value": [
  398. 2,
  399. 3
  400. ]
  401. },
  402. "orientation": {
  403. "type": "double",
  404. "value": 0
  405. },
  406. "scale": {
  407. "type": "list<double>",
  408. "value": [
  409. 1,
  410. 1
  411. ]
  412. }
  413. },
  414. "__pLabelText": {
  415. "position": {
  416. "type": "list<double>",
  417. "value": [
  418. 0,
  419. 0
  420. ]
  421. },
  422. "orientation": {
  423. "type": "double",
  424. "value": 0
  425. },
  426. "scale": {
  427. "type": "list<double>",
  428. "value": [
  429. 1,
  430. 1
  431. ]
  432. },
  433. "textContent": {
  434. "type": "string",
  435. "value": "1"
  436. },
  437. "style": {
  438. "type": "map<string,string>",
  439. "value": {
  440. "stroke": "#6000ff",
  441. "fill": "#6000ff",
  442. "font-size": "15px",
  443. "opacity": "1"
  444. }
  445. },
  446. "mapper": {
  447. "type": "code",
  448. "value": "({'textContent':getAttr('__pLabel')})"
  449. },
  450. "parser": {
  451. "type": "code",
  452. "value": "({'__pLabel':getAttr('textContent')})"
  453. },
  454. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  455. }
  456. },
  457. "edges": []
  458. }
  459. },
  460. "$asuri": {
  461. "type": "string",
  462. "value": "/Formalisms/Race/Race.pattern/__pCar/24.instance"
  463. },
  464. "$type": "/Formalisms/Race/Race.defaultIcons.pattern/__pCarIcon"
  465. },
  466. "25": {
  467. "link-style": {
  468. "type": "map<string,string>",
  469. "value": {
  470. "stroke": "#000000",
  471. "stroke-dasharray": "",
  472. "stroke-opacity": 1,
  473. "stroke-width": 0
  474. }
  475. },
  476. "arrowHead": {
  477. "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)",
  478. "value": "custom"
  479. },
  480. "arrowTail": {
  481. "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)",
  482. "value": "arrow-black"
  483. },
  484. "typename": {
  485. "type": "string",
  486. "value": "onTrackLink"
  487. },
  488. "position": {
  489. "type": "list<double>",
  490. "value": [
  491. 521.0833329522939,
  492. 449.1277771935173
  493. ]
  494. },
  495. "orientation": {
  496. "type": "double",
  497. "value": 0
  498. },
  499. "scale": {
  500. "type": "list<double>",
  501. "value": [
  502. 1,
  503. 1
  504. ]
  505. },
  506. "mapper": {
  507. "type": "code",
  508. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  509. },
  510. "parser": {
  511. "type": "code",
  512. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  513. },
  514. "$contents": {
  515. "type": "map<string,*>",
  516. "value": {
  517. "nodes": {
  518. "267": {
  519. "segments": {
  520. "type": "string",
  521. "value": "m0,0 l10,4 l-10,4 l3,-4 z"
  522. },
  523. "style": {
  524. "type": "map<string,string>",
  525. "value": {
  526. "stroke": "#000000",
  527. "fill": "#000000",
  528. "opacity": 0,
  529. "stroke-width": 1
  530. }
  531. },
  532. "mapper": {
  533. "type": "code",
  534. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  535. },
  536. "parser": {
  537. "type": "code",
  538. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  539. },
  540. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  541. "position": {
  542. "type": "list<double>",
  543. "value": [
  544. "0;18.26680117412468,54.626778054692394%",
  545. "0;20.686679017526615,83.76105968386132%"
  546. ]
  547. },
  548. "orientation": {
  549. "type": "double",
  550. "value": "0;56.88865803962786"
  551. },
  552. "scale": {
  553. "type": "list<double>",
  554. "value": [
  555. 1,
  556. 1
  557. ]
  558. },
  559. "arrow": "arrowTail",
  560. "arrowType": "arrow-black",
  561. "$linkDecoratorInfo": {
  562. "type": "map<string,double>",
  563. "value": {
  564. "xratio": 1,
  565. "yoffset": -4
  566. }
  567. }
  568. },
  569. "268": {
  570. "segments": {
  571. "type": "string",
  572. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  573. },
  574. "style": {
  575. "type": "map<string,string>",
  576. "value": {
  577. "stroke": "#000000",
  578. "fill": "#000000",
  579. "opacity": 0,
  580. "stroke-width": 1
  581. }
  582. },
  583. "mapper": {
  584. "type": "code",
  585. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  586. },
  587. "parser": {
  588. "type": "code",
  589. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  590. },
  591. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  592. "position": {
  593. "type": "list<double>",
  594. "value": [
  595. "0;23.292464755156402,54.626778054692394%",
  596. "0;17.40907233424508,83.76105968386132%"
  597. ]
  598. },
  599. "orientation": {
  600. "type": "double",
  601. "value": "0;56.88865803962786"
  602. },
  603. "scale": {
  604. "type": "list<double>",
  605. "value": [
  606. 1,
  607. 1
  608. ]
  609. },
  610. "arrow": "arrowTail",
  611. "arrowType": "diamond-black-large",
  612. "$linkDecoratorInfo": {
  613. "type": "map<string,double>",
  614. "value": {
  615. "xratio": 1,
  616. "yoffset": -10
  617. }
  618. }
  619. },
  620. "269": {
  621. "r": {
  622. "type": "double",
  623. "value": 10
  624. },
  625. "style": {
  626. "type": "map<string,string>",
  627. "value": {
  628. "stroke": "#000000",
  629. "fill": "#000000",
  630. "opacity": 0,
  631. "stroke-width": 1
  632. }
  633. },
  634. "mapper": {
  635. "type": "code",
  636. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  637. },
  638. "parser": {
  639. "type": "code",
  640. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  641. },
  642. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  643. "position": {
  644. "type": "list<double>",
  645. "value": [
  646. "0;23.292464755156402,54.626778054692394%",
  647. "0;17.40907233424508,83.76105968386132%"
  648. ]
  649. },
  650. "orientation": {
  651. "type": "double",
  652. "value": "0;56.88865803962786"
  653. },
  654. "scale": {
  655. "type": "list<double>",
  656. "value": [
  657. 1,
  658. 1
  659. ]
  660. },
  661. "arrow": "arrowTail",
  662. "arrowType": "circle-black-large",
  663. "$linkDecoratorInfo": {
  664. "type": "map<string,double>",
  665. "value": {
  666. "xratio": 1,
  667. "yoffset": -10
  668. }
  669. }
  670. },
  671. "270": {
  672. "r": {
  673. "type": "double",
  674. "value": 10
  675. },
  676. "style": {
  677. "type": "map<string,string>",
  678. "value": {
  679. "stroke": "#000000",
  680. "fill": "#ffffff",
  681. "opacity": 0,
  682. "stroke-width": 1
  683. }
  684. },
  685. "mapper": {
  686. "type": "code",
  687. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  688. },
  689. "parser": {
  690. "type": "code",
  691. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  692. },
  693. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  694. "position": {
  695. "type": "list<double>",
  696. "value": [
  697. "0;23.292464755156402,54.626778054692394%",
  698. "0;17.40907233424508,83.76105968386132%"
  699. ]
  700. },
  701. "orientation": {
  702. "type": "double",
  703. "value": "0;56.88865803962786"
  704. },
  705. "scale": {
  706. "type": "list<double>",
  707. "value": [
  708. 1,
  709. 1
  710. ]
  711. },
  712. "arrow": "arrowTail",
  713. "arrowType": "circle-white-large",
  714. "$linkDecoratorInfo": {
  715. "type": "map<string,double>",
  716. "value": {
  717. "xratio": 1,
  718. "yoffset": -10
  719. }
  720. }
  721. },
  722. "271": {
  723. "r": {
  724. "type": "double",
  725. "value": 5
  726. },
  727. "style": {
  728. "type": "map<string,string>",
  729. "value": {
  730. "stroke": "#000000",
  731. "fill": "#000000",
  732. "opacity": 0,
  733. "stroke-width": 1
  734. }
  735. },
  736. "mapper": {
  737. "type": "code",
  738. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  739. },
  740. "parser": {
  741. "type": "code",
  742. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  743. },
  744. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  745. "position": {
  746. "type": "list<double>",
  747. "value": [
  748. "0;19.10441177096334,54.626778054692394%",
  749. "0;20.14041123697973,83.76105968386132%"
  750. ]
  751. },
  752. "orientation": {
  753. "type": "double",
  754. "value": "0;56.88865803962786"
  755. },
  756. "scale": {
  757. "type": "list<double>",
  758. "value": [
  759. 1,
  760. 1
  761. ]
  762. },
  763. "arrow": "arrowTail",
  764. "arrowType": "circle-black",
  765. "$linkDecoratorInfo": {
  766. "type": "map<string,double>",
  767. "value": {
  768. "xratio": 1,
  769. "yoffset": -5
  770. }
  771. }
  772. },
  773. "272": {
  774. "segments": {
  775. "type": "string",
  776. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  777. },
  778. "style": {
  779. "type": "map<string,string>",
  780. "value": {
  781. "stroke": "#000000",
  782. "fill": "#000000",
  783. "opacity": 0,
  784. "stroke-width": 1
  785. }
  786. },
  787. "mapper": {
  788. "type": "code",
  789. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  790. },
  791. "parser": {
  792. "type": "code",
  793. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  794. },
  795. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  796. "position": {
  797. "type": "list<double>",
  798. "value": [
  799. "0;19.10441177096334,54.626778054692394%",
  800. "0;20.14041123697973,83.76105968386132%"
  801. ]
  802. },
  803. "orientation": {
  804. "type": "double",
  805. "value": "0;56.88865803962786"
  806. },
  807. "scale": {
  808. "type": "list<double>",
  809. "value": [
  810. 1,
  811. 1
  812. ]
  813. },
  814. "arrow": "arrowTail",
  815. "arrowType": "diamond-black",
  816. "$linkDecoratorInfo": {
  817. "type": "map<string,double>",
  818. "value": {
  819. "xratio": 1,
  820. "yoffset": -5
  821. }
  822. }
  823. },
  824. "273": {
  825. "segments": {
  826. "type": "string",
  827. "value": "m0,0 l20,10 l-20,10 z"
  828. },
  829. "style": {
  830. "type": "map<string,string>",
  831. "value": {
  832. "stroke": "#000000",
  833. "fill": "#000000",
  834. "opacity": 0,
  835. "stroke-width": 1
  836. }
  837. },
  838. "mapper": {
  839. "type": "code",
  840. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  841. },
  842. "parser": {
  843. "type": "code",
  844. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  845. },
  846. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  847. "position": {
  848. "type": "list<double>",
  849. "value": [
  850. "0;23.292464755156402,54.626778054692394%",
  851. "0;17.40907233424508,83.76105968386132%"
  852. ]
  853. },
  854. "orientation": {
  855. "type": "double",
  856. "value": "0;56.88865803962786"
  857. },
  858. "scale": {
  859. "type": "list<double>",
  860. "value": [
  861. 1,
  862. 1
  863. ]
  864. },
  865. "arrow": "arrowTail",
  866. "arrowType": "triangle-black-large",
  867. "$linkDecoratorInfo": {
  868. "type": "map<string,double>",
  869. "value": {
  870. "xratio": 1,
  871. "yoffset": -10
  872. }
  873. }
  874. },
  875. "274": {
  876. "segments": {
  877. "type": "string",
  878. "value": "m0,0 l10,4 l-10,4 z"
  879. },
  880. "style": {
  881. "type": "map<string,string>",
  882. "value": {
  883. "stroke": "#000000",
  884. "fill": "#000000",
  885. "opacity": 0,
  886. "stroke-width": 1
  887. }
  888. },
  889. "mapper": {
  890. "type": "code",
  891. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  892. },
  893. "parser": {
  894. "type": "code",
  895. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  896. },
  897. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  898. "position": {
  899. "type": "list<double>",
  900. "value": [
  901. "0;18.26680117412468,54.626778054692394%",
  902. "0;20.686679017526615,83.76105968386132%"
  903. ]
  904. },
  905. "orientation": {
  906. "type": "double",
  907. "value": "0;56.88865803962786"
  908. },
  909. "scale": {
  910. "type": "list<double>",
  911. "value": [
  912. 1,
  913. 1
  914. ]
  915. },
  916. "arrow": "arrowTail",
  917. "arrowType": "triangle-black",
  918. "$linkDecoratorInfo": {
  919. "type": "map<string,double>",
  920. "value": {
  921. "xratio": 1,
  922. "yoffset": -4
  923. }
  924. }
  925. },
  926. "275": {
  927. "segments": {
  928. "type": "string",
  929. "value": "m0,0 l20,8 l-20,8 l6,-8 z"
  930. },
  931. "style": {
  932. "type": "map<string,string>",
  933. "value": {
  934. "stroke": "#000000",
  935. "fill": "#000000",
  936. "opacity": 0,
  937. "stroke-width": 1
  938. }
  939. },
  940. "mapper": {
  941. "type": "code",
  942. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  943. },
  944. "parser": {
  945. "type": "code",
  946. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  947. },
  948. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  949. "position": {
  950. "type": "list<double>",
  951. "value": [
  952. "0;21.6172435614792,54.626778054692394%",
  953. "0;18.501607895338907,83.76105968386132%"
  954. ]
  955. },
  956. "orientation": {
  957. "type": "double",
  958. "value": "0;56.88865803962786"
  959. },
  960. "scale": {
  961. "type": "list<double>",
  962. "value": [
  963. 1,
  964. 1
  965. ]
  966. },
  967. "arrow": "arrowTail",
  968. "arrowType": "arrow-black-large",
  969. "$linkDecoratorInfo": {
  970. "type": "map<string,double>",
  971. "value": {
  972. "xratio": 1,
  973. "yoffset": -8
  974. }
  975. }
  976. },
  977. "276": {
  978. "segments": {
  979. "type": "string",
  980. "value": "m0,0 l20,10 l-20,10 z"
  981. },
  982. "style": {
  983. "type": "map<string,string>",
  984. "value": {
  985. "stroke": "#000000",
  986. "fill": "#ffffff",
  987. "opacity": 0,
  988. "stroke-width": 1
  989. }
  990. },
  991. "mapper": {
  992. "type": "code",
  993. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  994. },
  995. "parser": {
  996. "type": "code",
  997. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  998. },
  999. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1000. "position": {
  1001. "type": "list<double>",
  1002. "value": [
  1003. "0;23.292464755156402,54.626778054692394%",
  1004. "0;17.40907233424508,83.76105968386132%"
  1005. ]
  1006. },
  1007. "orientation": {
  1008. "type": "double",
  1009. "value": "0;56.88865803962786"
  1010. },
  1011. "scale": {
  1012. "type": "list<double>",
  1013. "value": [
  1014. 1,
  1015. 1
  1016. ]
  1017. },
  1018. "arrow": "arrowTail",
  1019. "arrowType": "triangle-white-large",
  1020. "$linkDecoratorInfo": {
  1021. "type": "map<string,double>",
  1022. "value": {
  1023. "xratio": 1,
  1024. "yoffset": -10
  1025. }
  1026. }
  1027. },
  1028. "277": {
  1029. "segments": {
  1030. "type": "string",
  1031. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  1032. },
  1033. "style": {
  1034. "type": "map<string,string>",
  1035. "value": {
  1036. "stroke": "#000000",
  1037. "fill": "#ffffff",
  1038. "opacity": 0,
  1039. "stroke-width": 1
  1040. }
  1041. },
  1042. "mapper": {
  1043. "type": "code",
  1044. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1045. },
  1046. "parser": {
  1047. "type": "code",
  1048. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1049. },
  1050. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1051. "position": {
  1052. "type": "list<double>",
  1053. "value": [
  1054. "0;19.10441177096334,54.626778054692394%",
  1055. "0;20.14041123697973,83.76105968386132%"
  1056. ]
  1057. },
  1058. "orientation": {
  1059. "type": "double",
  1060. "value": "0;56.88865803962786"
  1061. },
  1062. "scale": {
  1063. "type": "list<double>",
  1064. "value": [
  1065. 1,
  1066. 1
  1067. ]
  1068. },
  1069. "arrow": "arrowTail",
  1070. "arrowType": "diamond-white",
  1071. "$linkDecoratorInfo": {
  1072. "type": "map<string,double>",
  1073. "value": {
  1074. "xratio": 1,
  1075. "yoffset": -5
  1076. }
  1077. }
  1078. },
  1079. "278": {
  1080. "segments": {
  1081. "type": "string",
  1082. "value": "m0,0 l20,8 l-20,8"
  1083. },
  1084. "style": {
  1085. "type": "map<string,string>",
  1086. "value": {
  1087. "stroke": "#000000",
  1088. "fill": "#000000",
  1089. "fill-opacity": 0,
  1090. "stroke-width": 1,
  1091. "opacity": 0
  1092. }
  1093. },
  1094. "mapper": {
  1095. "type": "code",
  1096. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1097. },
  1098. "parser": {
  1099. "type": "code",
  1100. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1101. },
  1102. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1103. "position": {
  1104. "type": "list<double>",
  1105. "value": [
  1106. "0;21.6172435614792,54.626778054692394%",
  1107. "0;18.501607895338907,83.76105968386132%"
  1108. ]
  1109. },
  1110. "orientation": {
  1111. "type": "double",
  1112. "value": "0;56.88865803962786"
  1113. },
  1114. "scale": {
  1115. "type": "list<double>",
  1116. "value": [
  1117. 1,
  1118. 1
  1119. ]
  1120. },
  1121. "arrow": "arrowTail",
  1122. "arrowType": "arrow-empty-large",
  1123. "$linkDecoratorInfo": {
  1124. "type": "map<string,double>",
  1125. "value": {
  1126. "xratio": 1,
  1127. "yoffset": -8
  1128. }
  1129. }
  1130. },
  1131. "279": {
  1132. "r": {
  1133. "type": "double",
  1134. "value": 5
  1135. },
  1136. "style": {
  1137. "type": "map<string,string>",
  1138. "value": {
  1139. "stroke": "#000000",
  1140. "fill": "#ffffff",
  1141. "opacity": 0,
  1142. "stroke-width": 1
  1143. }
  1144. },
  1145. "mapper": {
  1146. "type": "code",
  1147. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1148. },
  1149. "parser": {
  1150. "type": "code",
  1151. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1152. },
  1153. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  1154. "position": {
  1155. "type": "list<double>",
  1156. "value": [
  1157. "0;19.10441177096334,54.626778054692394%",
  1158. "0;20.14041123697973,83.76105968386132%"
  1159. ]
  1160. },
  1161. "orientation": {
  1162. "type": "double",
  1163. "value": "0;56.88865803962786"
  1164. },
  1165. "scale": {
  1166. "type": "list<double>",
  1167. "value": [
  1168. 1,
  1169. 1
  1170. ]
  1171. },
  1172. "arrow": "arrowTail",
  1173. "arrowType": "circle-white",
  1174. "$linkDecoratorInfo": {
  1175. "type": "map<string,double>",
  1176. "value": {
  1177. "xratio": 1,
  1178. "yoffset": -5
  1179. }
  1180. }
  1181. },
  1182. "280": {
  1183. "segments": {
  1184. "type": "string",
  1185. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  1186. },
  1187. "style": {
  1188. "type": "map<string,string>",
  1189. "value": {
  1190. "stroke": "#000000",
  1191. "fill": "#ffffff",
  1192. "opacity": 0,
  1193. "stroke-width": 1
  1194. }
  1195. },
  1196. "mapper": {
  1197. "type": "code",
  1198. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1199. },
  1200. "parser": {
  1201. "type": "code",
  1202. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1203. },
  1204. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1205. "position": {
  1206. "type": "list<double>",
  1207. "value": [
  1208. "0;23.292464755156402,54.626778054692394%",
  1209. "0;17.40907233424508,83.76105968386132%"
  1210. ]
  1211. },
  1212. "orientation": {
  1213. "type": "double",
  1214. "value": "0;56.88865803962786"
  1215. },
  1216. "scale": {
  1217. "type": "list<double>",
  1218. "value": [
  1219. 1,
  1220. 1
  1221. ]
  1222. },
  1223. "arrow": "arrowTail",
  1224. "arrowType": "diamond-white-large",
  1225. "$linkDecoratorInfo": {
  1226. "type": "map<string,double>",
  1227. "value": {
  1228. "xratio": 1,
  1229. "yoffset": -10
  1230. }
  1231. }
  1232. },
  1233. "281": {
  1234. "segments": {
  1235. "type": "string",
  1236. "value": "m0,0 l10,4 l-10,4"
  1237. },
  1238. "style": {
  1239. "type": "map<string,string>",
  1240. "value": {
  1241. "stroke": "#000000",
  1242. "fill": "#000000",
  1243. "fill-opacity": 0,
  1244. "stroke-width": 1,
  1245. "opacity": 0
  1246. }
  1247. },
  1248. "mapper": {
  1249. "type": "code",
  1250. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1251. },
  1252. "parser": {
  1253. "type": "code",
  1254. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1255. },
  1256. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1257. "position": {
  1258. "type": "list<double>",
  1259. "value": [
  1260. "0;18.26680117412468,54.626778054692394%",
  1261. "0;20.686679017526615,83.76105968386132%"
  1262. ]
  1263. },
  1264. "orientation": {
  1265. "type": "double",
  1266. "value": "0;56.88865803962786"
  1267. },
  1268. "scale": {
  1269. "type": "list<double>",
  1270. "value": [
  1271. 1,
  1272. 1
  1273. ]
  1274. },
  1275. "arrow": "arrowTail",
  1276. "arrowType": "arrow-empty",
  1277. "$linkDecoratorInfo": {
  1278. "type": "map<string,double>",
  1279. "value": {
  1280. "xratio": 1,
  1281. "yoffset": -4
  1282. }
  1283. }
  1284. },
  1285. "282": {
  1286. "segments": {
  1287. "type": "string",
  1288. "value": "m0,0 l10,5 l-10,5 z"
  1289. },
  1290. "style": {
  1291. "type": "map<string,string>",
  1292. "value": {
  1293. "stroke": "#000000",
  1294. "fill": "#ffffff",
  1295. "opacity": 0,
  1296. "stroke-width": 1
  1297. }
  1298. },
  1299. "mapper": {
  1300. "type": "code",
  1301. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1302. },
  1303. "parser": {
  1304. "type": "code",
  1305. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1306. },
  1307. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1308. "position": {
  1309. "type": "list<double>",
  1310. "value": [
  1311. "0;19.10441177096334,54.626778054692394%",
  1312. "0;20.14041123697973,83.76105968386132%"
  1313. ]
  1314. },
  1315. "orientation": {
  1316. "type": "double",
  1317. "value": "0;56.88865803962786"
  1318. },
  1319. "scale": {
  1320. "type": "list<double>",
  1321. "value": [
  1322. 1,
  1323. 1
  1324. ]
  1325. },
  1326. "arrow": "arrowTail",
  1327. "arrowType": "triangle-white",
  1328. "$linkDecoratorInfo": {
  1329. "type": "map<string,double>",
  1330. "value": {
  1331. "xratio": 1,
  1332. "yoffset": -5
  1333. }
  1334. }
  1335. },
  1336. "283": {
  1337. "segments": {
  1338. "type": "string",
  1339. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  1340. },
  1341. "style": {
  1342. "type": "map<string,string>",
  1343. "value": {
  1344. "stroke": "#000000",
  1345. "fill": "#ffffff",
  1346. "opacity": 0,
  1347. "stroke-width": 1
  1348. }
  1349. },
  1350. "mapper": {
  1351. "type": "code",
  1352. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1353. },
  1354. "parser": {
  1355. "type": "code",
  1356. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1357. },
  1358. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1359. "position": {
  1360. "type": "list<double>",
  1361. "value": [
  1362. "0;-10.895279968100795,0%",
  1363. "0;-25.85911609625191,0%"
  1364. ]
  1365. },
  1366. "orientation": {
  1367. "type": "double",
  1368. "value": "0;56.888658039628055"
  1369. },
  1370. "scale": {
  1371. "type": "list<double>",
  1372. "value": [
  1373. 1,
  1374. 1
  1375. ]
  1376. },
  1377. "arrow": "arrowHead",
  1378. "arrowType": "diamond-white",
  1379. "$linkDecoratorInfo": {
  1380. "type": "map<string,double>",
  1381. "value": {
  1382. "xratio": -1,
  1383. "yoffset": -5
  1384. }
  1385. }
  1386. },
  1387. "284": {
  1388. "segments": {
  1389. "type": "string",
  1390. "value": "m0,0 l-10,5 l10,5 z"
  1391. },
  1392. "style": {
  1393. "type": "map<string,string>",
  1394. "value": {
  1395. "stroke": "#000000",
  1396. "fill": "#ffffff",
  1397. "opacity": 0,
  1398. "stroke-width": 1
  1399. }
  1400. },
  1401. "mapper": {
  1402. "type": "code",
  1403. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1404. },
  1405. "parser": {
  1406. "type": "code",
  1407. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1408. },
  1409. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1410. "position": {
  1411. "type": "list<double>",
  1412. "value": [
  1413. "0;-10.895279968100795,0%",
  1414. "0;-25.85911609625191,0%"
  1415. ]
  1416. },
  1417. "orientation": {
  1418. "type": "double",
  1419. "value": "0;56.888658039628055"
  1420. },
  1421. "scale": {
  1422. "type": "list<double>",
  1423. "value": [
  1424. 1,
  1425. 1
  1426. ]
  1427. },
  1428. "arrow": "arrowHead",
  1429. "arrowType": "triangle-white",
  1430. "$linkDecoratorInfo": {
  1431. "type": "map<string,double>",
  1432. "value": {
  1433. "xratio": -1,
  1434. "yoffset": -5
  1435. }
  1436. }
  1437. },
  1438. "285": {
  1439. "segments": {
  1440. "type": "string",
  1441. "value": "m0,0 l5,5 l-5,5 l-5,-5 z"
  1442. },
  1443. "style": {
  1444. "type": "map<string,string>",
  1445. "value": {
  1446. "stroke": "#000000",
  1447. "fill": "#000000",
  1448. "opacity": 0,
  1449. "stroke-width": 1
  1450. }
  1451. },
  1452. "mapper": {
  1453. "type": "code",
  1454. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1455. },
  1456. "parser": {
  1457. "type": "code",
  1458. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1459. },
  1460. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1461. "position": {
  1462. "type": "list<double>",
  1463. "value": [
  1464. "0;-10.895279968100795,0%",
  1465. "0;-25.85911609625191,0%"
  1466. ]
  1467. },
  1468. "orientation": {
  1469. "type": "double",
  1470. "value": "0;56.888658039628055"
  1471. },
  1472. "scale": {
  1473. "type": "list<double>",
  1474. "value": [
  1475. 1,
  1476. 1
  1477. ]
  1478. },
  1479. "arrow": "arrowHead",
  1480. "arrowType": "diamond-black",
  1481. "$linkDecoratorInfo": {
  1482. "type": "map<string,double>",
  1483. "value": {
  1484. "xratio": -1,
  1485. "yoffset": -5
  1486. }
  1487. }
  1488. },
  1489. "286": {
  1490. "r": {
  1491. "type": "double",
  1492. "value": 10
  1493. },
  1494. "style": {
  1495. "type": "map<string,string>",
  1496. "value": {
  1497. "stroke": "#000000",
  1498. "fill": "#000000",
  1499. "opacity": 0,
  1500. "stroke-width": 1
  1501. }
  1502. },
  1503. "mapper": {
  1504. "type": "code",
  1505. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1506. },
  1507. "parser": {
  1508. "type": "code",
  1509. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1510. },
  1511. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  1512. "position": {
  1513. "type": "list<double>",
  1514. "value": [
  1515. "0;-6.707226983907731,0%",
  1516. "0;-28.590454998986502,0%"
  1517. ]
  1518. },
  1519. "orientation": {
  1520. "type": "double",
  1521. "value": "0;56.888658039628055"
  1522. },
  1523. "scale": {
  1524. "type": "list<double>",
  1525. "value": [
  1526. 1,
  1527. 1
  1528. ]
  1529. },
  1530. "arrow": "arrowHead",
  1531. "arrowType": "circle-black-large",
  1532. "$linkDecoratorInfo": {
  1533. "type": "map<string,double>",
  1534. "value": {
  1535. "xratio": -1,
  1536. "yoffset": -10
  1537. }
  1538. }
  1539. },
  1540. "287": {
  1541. "segments": {
  1542. "type": "string",
  1543. "value": "m0,0 l-20,8 l20,8 l-6,-8 z"
  1544. },
  1545. "style": {
  1546. "type": "map<string,string>",
  1547. "value": {
  1548. "stroke": "#000000",
  1549. "fill": "#000000",
  1550. "opacity": 0,
  1551. "stroke-width": 1
  1552. }
  1553. },
  1554. "mapper": {
  1555. "type": "code",
  1556. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1557. },
  1558. "parser": {
  1559. "type": "code",
  1560. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1561. },
  1562. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1563. "position": {
  1564. "type": "list<double>",
  1565. "value": [
  1566. "0;-8.382448177584934,0%",
  1567. "0;-27.497919437892676,0%"
  1568. ]
  1569. },
  1570. "orientation": {
  1571. "type": "double",
  1572. "value": "0;56.888658039628055"
  1573. },
  1574. "scale": {
  1575. "type": "list<double>",
  1576. "value": [
  1577. 1,
  1578. 1
  1579. ]
  1580. },
  1581. "arrow": "arrowHead",
  1582. "arrowType": "arrow-black-large",
  1583. "$linkDecoratorInfo": {
  1584. "type": "map<string,double>",
  1585. "value": {
  1586. "xratio": -1,
  1587. "yoffset": -8
  1588. }
  1589. }
  1590. },
  1591. "288": {
  1592. "segments": {
  1593. "type": "string",
  1594. "value": "m0,0 l-10,4 l10,4 l-3,-4 z"
  1595. },
  1596. "style": {
  1597. "type": "map<string,string>",
  1598. "value": {
  1599. "stroke": "#000000",
  1600. "fill": "#000000",
  1601. "opacity": 0,
  1602. "stroke-width": 1
  1603. }
  1604. },
  1605. "mapper": {
  1606. "type": "code",
  1607. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1608. },
  1609. "parser": {
  1610. "type": "code",
  1611. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1612. },
  1613. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1614. "position": {
  1615. "type": "list<double>",
  1616. "value": [
  1617. "0;-11.732890564939453,0%",
  1618. "0;-25.312848315705025,0%"
  1619. ]
  1620. },
  1621. "orientation": {
  1622. "type": "double",
  1623. "value": "0;56.888658039628055"
  1624. },
  1625. "scale": {
  1626. "type": "list<double>",
  1627. "value": [
  1628. 1,
  1629. 1
  1630. ]
  1631. },
  1632. "arrow": "arrowHead",
  1633. "arrowType": "arrow-black",
  1634. "$linkDecoratorInfo": {
  1635. "type": "map<string,double>",
  1636. "value": {
  1637. "xratio": -1,
  1638. "yoffset": -4
  1639. }
  1640. }
  1641. },
  1642. "289": {
  1643. "segments": {
  1644. "type": "string",
  1645. "value": "m0,0 l-20,10 l20,10 z"
  1646. },
  1647. "style": {
  1648. "type": "map<string,string>",
  1649. "value": {
  1650. "stroke": "#000000",
  1651. "fill": "#ffffff",
  1652. "opacity": 0,
  1653. "stroke-width": 1
  1654. }
  1655. },
  1656. "mapper": {
  1657. "type": "code",
  1658. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1659. },
  1660. "parser": {
  1661. "type": "code",
  1662. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1663. },
  1664. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1665. "position": {
  1666. "type": "list<double>",
  1667. "value": [
  1668. "0;-6.707226983907731,0%",
  1669. "0;-28.590454998986502,0%"
  1670. ]
  1671. },
  1672. "orientation": {
  1673. "type": "double",
  1674. "value": "0;56.888658039628055"
  1675. },
  1676. "scale": {
  1677. "type": "list<double>",
  1678. "value": [
  1679. 1,
  1680. 1
  1681. ]
  1682. },
  1683. "arrow": "arrowHead",
  1684. "arrowType": "triangle-white-large",
  1685. "$linkDecoratorInfo": {
  1686. "type": "map<string,double>",
  1687. "value": {
  1688. "xratio": -1,
  1689. "yoffset": -10
  1690. }
  1691. }
  1692. },
  1693. "290": {
  1694. "segments": {
  1695. "type": "string",
  1696. "value": "m0,0 l-20,10 l20,10 z"
  1697. },
  1698. "style": {
  1699. "type": "map<string,string>",
  1700. "value": {
  1701. "stroke": "#000000",
  1702. "fill": "#000000",
  1703. "opacity": 0,
  1704. "stroke-width": 1
  1705. }
  1706. },
  1707. "mapper": {
  1708. "type": "code",
  1709. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1710. },
  1711. "parser": {
  1712. "type": "code",
  1713. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1714. },
  1715. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1716. "position": {
  1717. "type": "list<double>",
  1718. "value": [
  1719. "0;-6.707226983907731,0%",
  1720. "0;-28.590454998986502,0%"
  1721. ]
  1722. },
  1723. "orientation": {
  1724. "type": "double",
  1725. "value": "0;56.888658039628055"
  1726. },
  1727. "scale": {
  1728. "type": "list<double>",
  1729. "value": [
  1730. 1,
  1731. 1
  1732. ]
  1733. },
  1734. "arrow": "arrowHead",
  1735. "arrowType": "triangle-black-large",
  1736. "$linkDecoratorInfo": {
  1737. "type": "map<string,double>",
  1738. "value": {
  1739. "xratio": -1,
  1740. "yoffset": -10
  1741. }
  1742. }
  1743. },
  1744. "291": {
  1745. "r": {
  1746. "type": "double",
  1747. "value": 5
  1748. },
  1749. "style": {
  1750. "type": "map<string,string>",
  1751. "value": {
  1752. "stroke": "#000000",
  1753. "fill": "#000000",
  1754. "opacity": 0,
  1755. "stroke-width": 1
  1756. }
  1757. },
  1758. "mapper": {
  1759. "type": "code",
  1760. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1761. },
  1762. "parser": {
  1763. "type": "code",
  1764. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1765. },
  1766. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  1767. "position": {
  1768. "type": "list<double>",
  1769. "value": [
  1770. "0;-10.895279968100795,0%",
  1771. "0;-25.85911609625191,0%"
  1772. ]
  1773. },
  1774. "orientation": {
  1775. "type": "double",
  1776. "value": "0;56.888658039628055"
  1777. },
  1778. "scale": {
  1779. "type": "list<double>",
  1780. "value": [
  1781. 1,
  1782. 1
  1783. ]
  1784. },
  1785. "arrow": "arrowHead",
  1786. "arrowType": "circle-black",
  1787. "$linkDecoratorInfo": {
  1788. "type": "map<string,double>",
  1789. "value": {
  1790. "xratio": -1,
  1791. "yoffset": -5
  1792. }
  1793. }
  1794. },
  1795. "292": {
  1796. "r": {
  1797. "type": "double",
  1798. "value": 5
  1799. },
  1800. "style": {
  1801. "type": "map<string,string>",
  1802. "value": {
  1803. "stroke": "#000000",
  1804. "fill": "#ffffff",
  1805. "opacity": 0,
  1806. "stroke-width": 1
  1807. }
  1808. },
  1809. "mapper": {
  1810. "type": "code",
  1811. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1812. },
  1813. "parser": {
  1814. "type": "code",
  1815. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1816. },
  1817. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  1818. "position": {
  1819. "type": "list<double>",
  1820. "value": [
  1821. "0;-10.895279968100795,0%",
  1822. "0;-25.85911609625191,0%"
  1823. ]
  1824. },
  1825. "orientation": {
  1826. "type": "double",
  1827. "value": "0;56.888658039628055"
  1828. },
  1829. "scale": {
  1830. "type": "list<double>",
  1831. "value": [
  1832. 1,
  1833. 1
  1834. ]
  1835. },
  1836. "arrow": "arrowHead",
  1837. "arrowType": "circle-white",
  1838. "$linkDecoratorInfo": {
  1839. "type": "map<string,double>",
  1840. "value": {
  1841. "xratio": -1,
  1842. "yoffset": -5
  1843. }
  1844. }
  1845. },
  1846. "293": {
  1847. "r": {
  1848. "type": "double",
  1849. "value": 10
  1850. },
  1851. "style": {
  1852. "type": "map<string,string>",
  1853. "value": {
  1854. "stroke": "#000000",
  1855. "fill": "#ffffff",
  1856. "opacity": 0,
  1857. "stroke-width": 1
  1858. }
  1859. },
  1860. "mapper": {
  1861. "type": "code",
  1862. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1863. },
  1864. "parser": {
  1865. "type": "code",
  1866. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1867. },
  1868. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Circle",
  1869. "position": {
  1870. "type": "list<double>",
  1871. "value": [
  1872. "0;-6.707226983907731,0%",
  1873. "0;-28.590454998986502,0%"
  1874. ]
  1875. },
  1876. "orientation": {
  1877. "type": "double",
  1878. "value": "0;56.888658039628055"
  1879. },
  1880. "scale": {
  1881. "type": "list<double>",
  1882. "value": [
  1883. 1,
  1884. 1
  1885. ]
  1886. },
  1887. "arrow": "arrowHead",
  1888. "arrowType": "circle-white-large",
  1889. "$linkDecoratorInfo": {
  1890. "type": "map<string,double>",
  1891. "value": {
  1892. "xratio": -1,
  1893. "yoffset": -10
  1894. }
  1895. }
  1896. },
  1897. "294": {
  1898. "segments": {
  1899. "type": "string",
  1900. "value": "m0,0 l-20,8 l20,8"
  1901. },
  1902. "style": {
  1903. "type": "map<string,string>",
  1904. "value": {
  1905. "stroke": "#000000",
  1906. "fill": "#000000",
  1907. "fill-opacity": 0,
  1908. "stroke-width": 1,
  1909. "opacity": 0
  1910. }
  1911. },
  1912. "mapper": {
  1913. "type": "code",
  1914. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1915. },
  1916. "parser": {
  1917. "type": "code",
  1918. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1919. },
  1920. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1921. "position": {
  1922. "type": "list<double>",
  1923. "value": [
  1924. "0;-8.382448177584934,0%",
  1925. "0;-27.497919437892676,0%"
  1926. ]
  1927. },
  1928. "orientation": {
  1929. "type": "double",
  1930. "value": "0;56.888658039628055"
  1931. },
  1932. "scale": {
  1933. "type": "list<double>",
  1934. "value": [
  1935. 1,
  1936. 1
  1937. ]
  1938. },
  1939. "arrow": "arrowHead",
  1940. "arrowType": "arrow-empty-large",
  1941. "$linkDecoratorInfo": {
  1942. "type": "map<string,double>",
  1943. "value": {
  1944. "xratio": -1,
  1945. "yoffset": -8
  1946. }
  1947. }
  1948. },
  1949. "295": {
  1950. "segments": {
  1951. "type": "string",
  1952. "value": "m0,0 l-10,4 l10,4"
  1953. },
  1954. "style": {
  1955. "type": "map<string,string>",
  1956. "value": {
  1957. "stroke": "#000000",
  1958. "fill": "#000000",
  1959. "fill-opacity": 0,
  1960. "stroke-width": 1,
  1961. "opacity": 0
  1962. }
  1963. },
  1964. "mapper": {
  1965. "type": "code",
  1966. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1967. },
  1968. "parser": {
  1969. "type": "code",
  1970. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1971. },
  1972. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1973. "position": {
  1974. "type": "list<double>",
  1975. "value": [
  1976. "0;-11.732890564939453,0%",
  1977. "0;-25.312848315705025,0%"
  1978. ]
  1979. },
  1980. "orientation": {
  1981. "type": "double",
  1982. "value": "0;56.888658039628055"
  1983. },
  1984. "scale": {
  1985. "type": "list<double>",
  1986. "value": [
  1987. 1,
  1988. 1
  1989. ]
  1990. },
  1991. "arrow": "arrowHead",
  1992. "arrowType": "arrow-empty",
  1993. "$linkDecoratorInfo": {
  1994. "type": "map<string,double>",
  1995. "value": {
  1996. "xratio": -1,
  1997. "yoffset": -4
  1998. }
  1999. }
  2000. },
  2001. "296": {
  2002. "segments": {
  2003. "type": "string",
  2004. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  2005. },
  2006. "style": {
  2007. "type": "map<string,string>",
  2008. "value": {
  2009. "stroke": "#000000",
  2010. "fill": "#000000",
  2011. "opacity": 0,
  2012. "stroke-width": 1
  2013. }
  2014. },
  2015. "mapper": {
  2016. "type": "code",
  2017. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2018. },
  2019. "parser": {
  2020. "type": "code",
  2021. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2022. },
  2023. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2024. "position": {
  2025. "type": "list<double>",
  2026. "value": [
  2027. "0;-6.707226983907731,0%",
  2028. "0;-28.590454998986502,0%"
  2029. ]
  2030. },
  2031. "orientation": {
  2032. "type": "double",
  2033. "value": "0;56.888658039628055"
  2034. },
  2035. "scale": {
  2036. "type": "list<double>",
  2037. "value": [
  2038. 1,
  2039. 1
  2040. ]
  2041. },
  2042. "arrow": "arrowHead",
  2043. "arrowType": "diamond-black-large",
  2044. "$linkDecoratorInfo": {
  2045. "type": "map<string,double>",
  2046. "value": {
  2047. "xratio": -1,
  2048. "yoffset": -10
  2049. }
  2050. }
  2051. },
  2052. "297": {
  2053. "segments": {
  2054. "type": "string",
  2055. "value": "m0,0 l-10,4 l10,4 z"
  2056. },
  2057. "style": {
  2058. "type": "map<string,string>",
  2059. "value": {
  2060. "stroke": "#000000",
  2061. "fill": "#000000",
  2062. "opacity": 0,
  2063. "stroke-width": 1
  2064. }
  2065. },
  2066. "mapper": {
  2067. "type": "code",
  2068. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2069. },
  2070. "parser": {
  2071. "type": "code",
  2072. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2073. },
  2074. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2075. "position": {
  2076. "type": "list<double>",
  2077. "value": [
  2078. "0;-11.732890564939453,0%",
  2079. "0;-25.312848315705025,0%"
  2080. ]
  2081. },
  2082. "orientation": {
  2083. "type": "double",
  2084. "value": "0;56.888658039628055"
  2085. },
  2086. "scale": {
  2087. "type": "list<double>",
  2088. "value": [
  2089. 1,
  2090. 1
  2091. ]
  2092. },
  2093. "arrow": "arrowHead",
  2094. "arrowType": "triangle-black",
  2095. "$linkDecoratorInfo": {
  2096. "type": "map<string,double>",
  2097. "value": {
  2098. "xratio": -1,
  2099. "yoffset": -4
  2100. }
  2101. }
  2102. },
  2103. "298": {
  2104. "segments": {
  2105. "type": "string",
  2106. "value": "m0,0 l10,10 l-10,10 l-10,-10 z"
  2107. },
  2108. "style": {
  2109. "type": "map<string,string>",
  2110. "value": {
  2111. "stroke": "#000000",
  2112. "fill": "#ffffff",
  2113. "opacity": 0,
  2114. "stroke-width": 1
  2115. }
  2116. },
  2117. "mapper": {
  2118. "type": "code",
  2119. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2120. },
  2121. "parser": {
  2122. "type": "code",
  2123. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2124. },
  2125. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2126. "position": {
  2127. "type": "list<double>",
  2128. "value": [
  2129. "0;-6.707226983907731,0%",
  2130. "0;-28.590454998986502,0%"
  2131. ]
  2132. },
  2133. "orientation": {
  2134. "type": "double",
  2135. "value": "0;56.888658039628055"
  2136. },
  2137. "scale": {
  2138. "type": "list<double>",
  2139. "value": [
  2140. 1,
  2141. 1
  2142. ]
  2143. },
  2144. "arrow": "arrowHead",
  2145. "arrowType": "diamond-white-large",
  2146. "$linkDecoratorInfo": {
  2147. "type": "map<string,double>",
  2148. "value": {
  2149. "xratio": -1,
  2150. "yoffset": -10
  2151. }
  2152. }
  2153. },
  2154. "__pLabelText": {
  2155. "position": {
  2156. "type": "list<double>",
  2157. "value": [
  2158. 0,
  2159. 0
  2160. ]
  2161. },
  2162. "orientation": {
  2163. "type": "double",
  2164. "value": 0
  2165. },
  2166. "scale": {
  2167. "type": "list<double>",
  2168. "value": [
  2169. 1,
  2170. 1
  2171. ]
  2172. },
  2173. "textContent": {
  2174. "type": "string",
  2175. "value": "2"
  2176. },
  2177. "style": {
  2178. "type": "map<string,string>",
  2179. "value": {
  2180. "stroke": "#6000ff",
  2181. "fill": "#6000ff",
  2182. "font-size": "15px",
  2183. "opacity": "1"
  2184. }
  2185. },
  2186. "mapper": {
  2187. "type": "code",
  2188. "value": "({'textContent':getAttr('__pLabel')})"
  2189. },
  2190. "parser": {
  2191. "type": "code",
  2192. "value": "({'__pLabel':getAttr('textContent')})"
  2193. },
  2194. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  2195. }
  2196. },
  2197. "edges": []
  2198. }
  2199. },
  2200. "$asuri": {
  2201. "type": "string",
  2202. "value": "/Formalisms/Race/Race.pattern/__ponTrack/25.instance"
  2203. },
  2204. "$segments": {
  2205. "type": "map<string,list<string>>",
  2206. "value": {
  2207. "/Formalisms/Race/Race.defaultIcons.pattern/__pUnitTrackIcon/23.instance--/Formalisms/Race/Race.defaultIcons.pattern/__ponTrackLink/25.instance": "M506,426L521.0833329522939,449.1277771935173",
  2208. "/Formalisms/Race/Race.defaultIcons.pattern/__ponTrackLink/25.instance--/Formalisms/Race/Race.defaultIcons.pattern/__pCarIcon/24.instance": "M521.0415122985764,449.0636521911505L535.9996917390641,471.99952733323164"
  2209. }
  2210. },
  2211. "$type": "/Formalisms/Race/Race.defaultIcons.pattern/__ponTrackLink"
  2212. },
  2213. "26": {
  2214. "link-style": {
  2215. "type": "map<string,string>",
  2216. "value": {
  2217. "stroke": "#00ff00",
  2218. "stroke-dasharray": "",
  2219. "stroke-opacity": 0.2,
  2220. "stroke-width": 1,
  2221. "arrow-start": "none",
  2222. "arrow-end": "classic-wide-long"
  2223. }
  2224. },
  2225. "typename": {
  2226. "type": "string",
  2227. "value": "PatternContentsLink"
  2228. },
  2229. "position": {
  2230. "type": "list<double>",
  2231. "value": [
  2232. 438.75,
  2233. 346
  2234. ]
  2235. },
  2236. "orientation": {
  2237. "type": "double",
  2238. "value": 0
  2239. },
  2240. "scale": {
  2241. "type": "list<double>",
  2242. "value": [
  2243. 1,
  2244. 1
  2245. ]
  2246. },
  2247. "mapper": {
  2248. "type": "code",
  2249. "value": ""
  2250. },
  2251. "parser": {
  2252. "type": "code",
  2253. "value": ""
  2254. },
  2255. "$contents": {
  2256. "type": "map<string,*>",
  2257. "value": {
  2258. "nodes": {},
  2259. "edges": []
  2260. }
  2261. },
  2262. "$asuri": {
  2263. "type": "string",
  2264. "value": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents/26.instance"
  2265. },
  2266. "$segments": {
  2267. "type": "map<string,list<string>>",
  2268. "value": {
  2269. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/LHSIcon/0.instance--/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/26.instance": "M333,215L438.75,346",
  2270. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/26.instance--/Formalisms/Race/Race.defaultIcons.pattern/__pUnitTrackIcon/23.instance": "M438.79704121354445,346.0582732763529L544.4994944815678,476.9993737785851"
  2271. }
  2272. },
  2273. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink"
  2274. }
  2275. },
  2276. "edges": [],
  2277. "metamodels": [
  2278. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons",
  2279. "/Formalisms/Race/Race.defaultIcons.pattern"
  2280. ]
  2281. },
  2282. "asm": {
  2283. "nodes": {
  2284. "0": {
  2285. "Condition": {
  2286. "type": "code",
  2287. "value": "result = True"
  2288. },
  2289. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/LHS"
  2290. },
  2291. "1": {
  2292. "Action": {
  2293. "type": "code",
  2294. "value": ""
  2295. },
  2296. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/RHS"
  2297. },
  2298. "23": {
  2299. "__pLabel": {
  2300. "type": "string",
  2301. "value": "0"
  2302. },
  2303. "__pPivotIn": {
  2304. "type": "string",
  2305. "value": ""
  2306. },
  2307. "__pPivotOut": {
  2308. "type": "string",
  2309. "value": ""
  2310. },
  2311. "__pMatchSubtypes": {
  2312. "type": "boolean",
  2313. "value": false
  2314. },
  2315. "position": {
  2316. "type": "code",
  2317. "value": "result = True"
  2318. },
  2319. "$type": "/Formalisms/Race/Race.pattern/__pUnitTrack"
  2320. },
  2321. "24": {
  2322. "__pLabel": {
  2323. "type": "string",
  2324. "value": "1"
  2325. },
  2326. "__pPivotIn": {
  2327. "type": "string",
  2328. "value": ""
  2329. },
  2330. "__pPivotOut": {
  2331. "type": "string",
  2332. "value": ""
  2333. },
  2334. "__pMatchSubtypes": {
  2335. "type": "boolean",
  2336. "value": false
  2337. },
  2338. "name": {
  2339. "type": "code",
  2340. "value": "result = True"
  2341. },
  2342. "position": {
  2343. "type": "code",
  2344. "value": "result = True"
  2345. },
  2346. "$type": "/Formalisms/Race/Race.pattern/__pCar"
  2347. },
  2348. "25": {
  2349. "__pLabel": {
  2350. "type": "string",
  2351. "value": "2"
  2352. },
  2353. "__pPivotIn": {
  2354. "type": "string",
  2355. "value": ""
  2356. },
  2357. "__pPivotOut": {
  2358. "type": "string",
  2359. "value": ""
  2360. },
  2361. "__pMatchSubtypes": {
  2362. "type": "boolean",
  2363. "value": false
  2364. },
  2365. "$type": "/Formalisms/Race/Race.pattern/__ponTrack"
  2366. },
  2367. "26": {
  2368. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents"
  2369. }
  2370. },
  2371. "edges": [
  2372. {
  2373. "src": "23",
  2374. "dest": "25"
  2375. },
  2376. {
  2377. "src": "25",
  2378. "dest": "24"
  2379. },
  2380. {
  2381. "src": "0",
  2382. "dest": "26"
  2383. },
  2384. {
  2385. "src": "26",
  2386. "dest": "23"
  2387. }
  2388. ],
  2389. "metamodels": [
  2390. "/Formalisms/__Transformations__/TransformationRule/TransformationRule",
  2391. "/Formalisms/Race/Race.pattern"
  2392. ]
  2393. }
  2394. }