R_FlowIncomplete.model 77 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237
  1. {
  2. "csm": {
  3. "nodes": {
  4. "1": {
  5. "typename": {
  6. "type": "string",
  7. "value": "RHSIcon"
  8. },
  9. "position": {
  10. "type": "list<double>",
  11. "value": [
  12. 815,
  13. 235
  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. "7": {
  40. "segments": {
  41. "type": "string",
  42. "value": "m0,0 l450,0 l0,500 l-450,0 l100,-250z"
  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. 0,
  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/RHS/1.instance"
  91. },
  92. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/RHSIcon"
  93. },
  94. "65": {
  95. "typename": {
  96. "type": "string",
  97. "value": "__pTaskIcon"
  98. },
  99. "position": {
  100. "type": "list<double>",
  101. "value": [
  102. 441,
  103. 354.3125
  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. "text": {
  130. "textContent": {
  131. "type": "string",
  132. "value": "__pTaskIcon"
  133. },
  134. "style": {
  135. "type": "map<string,string>",
  136. "value": {
  137. "stroke": "#000000",
  138. "stroke-dasharray": "",
  139. "fill": "#000000",
  140. "fill-opacity": "1",
  141. "font-size": "13px"
  142. }
  143. },
  144. "mapper": {
  145. "type": "code",
  146. "value": ""
  147. },
  148. "parser": {
  149. "type": "code",
  150. "value": ""
  151. },
  152. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  153. "position": {
  154. "type": "list<double>",
  155. "value": [
  156. 10,
  157. 76
  158. ]
  159. },
  160. "orientation": {
  161. "type": "double",
  162. "value": 0
  163. },
  164. "scale": {
  165. "type": "list<double>",
  166. "value": [
  167. 1,
  168. 1
  169. ]
  170. }
  171. },
  172. "rect": {
  173. "width": {
  174. "type": "double",
  175. "value": 75
  176. },
  177. "height": {
  178. "type": "double",
  179. "value": 75
  180. },
  181. "cornerRadius": {
  182. "type": "double",
  183. "value": 15
  184. },
  185. "style": {
  186. "type": "map<string,string>",
  187. "value": {
  188. "stroke": "#000000",
  189. "fill": "#ffffff",
  190. "fill-opacity": 0.75
  191. }
  192. },
  193. "mapper": {
  194. "type": "code",
  195. "value": ""
  196. },
  197. "parser": {
  198. "type": "code",
  199. "value": ""
  200. },
  201. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  202. "position": {
  203. "type": "list<double>",
  204. "value": [
  205. 0,
  206. 0
  207. ]
  208. },
  209. "orientation": {
  210. "type": "double",
  211. "value": 0
  212. },
  213. "scale": {
  214. "type": "list<double>",
  215. "value": [
  216. 1,
  217. 1
  218. ]
  219. }
  220. },
  221. "textBelowRect": {
  222. "distance": {
  223. "type": "double",
  224. "value": 10
  225. },
  226. "alignment": {
  227. "type": "ENUM(\"right\",\"left\",\"center\")",
  228. "value": "center"
  229. },
  230. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Below",
  231. "position": {
  232. "type": "list<double>",
  233. "value": [
  234. 5,
  235. 38
  236. ]
  237. },
  238. "orientation": {
  239. "type": "double",
  240. "value": 0
  241. },
  242. "scale": {
  243. "type": "list<double>",
  244. "value": [
  245. 1,
  246. 1
  247. ]
  248. },
  249. "link-style": {
  250. "type": "map<string,string>",
  251. "value": {
  252. "stroke": "#00ff00",
  253. "stroke-dasharray": "",
  254. "stroke-opacity": 1,
  255. "arrow-start": "none",
  256. "arrow-end": "classic-wide-long"
  257. }
  258. }
  259. },
  260. "__pLabelText": {
  261. "position": {
  262. "type": "list<double>",
  263. "value": [
  264. 0,
  265. 0
  266. ]
  267. },
  268. "orientation": {
  269. "type": "double",
  270. "value": 0
  271. },
  272. "scale": {
  273. "type": "list<double>",
  274. "value": [
  275. 1,
  276. 1
  277. ]
  278. },
  279. "textContent": {
  280. "type": "string",
  281. "value": "0"
  282. },
  283. "style": {
  284. "type": "map<string,string>",
  285. "value": {
  286. "stroke": "#6000ff",
  287. "fill": "#6000ff",
  288. "font-size": "15px",
  289. "opacity": "1"
  290. }
  291. },
  292. "mapper": {
  293. "type": "code",
  294. "value": "({'textContent':getAttr('__pLabel')})"
  295. },
  296. "parser": {
  297. "type": "code",
  298. "value": "({'__pLabel':getAttr('textContent')})"
  299. },
  300. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  301. }
  302. },
  303. "edges": [
  304. {
  305. "src": "text",
  306. "dest": "textBelowRect"
  307. },
  308. {
  309. "src": "textBelowRect",
  310. "dest": "rect"
  311. }
  312. ]
  313. }
  314. },
  315. "$asuri": {
  316. "type": "string",
  317. "value": "/Formalisms/Workflows/Workflows.pattern/__pTask/65.instance"
  318. },
  319. "$type": "/Formalisms/Workflows/Workflows.defaultIcons.pattern/__pTaskIcon"
  320. },
  321. "66": {
  322. "typename": {
  323. "type": "string",
  324. "value": "ForkNodeIcon"
  325. },
  326. "position": {
  327. "type": "list<double>",
  328. "value": [
  329. 427,
  330. 483
  331. ]
  332. },
  333. "orientation": {
  334. "type": "double",
  335. "value": 0
  336. },
  337. "scale": {
  338. "type": "list<double>",
  339. "value": [
  340. 1,
  341. 1
  342. ]
  343. },
  344. "mapper": {
  345. "type": "code",
  346. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  347. },
  348. "parser": {
  349. "type": "code",
  350. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  351. },
  352. "$contents": {
  353. "type": "map<string,*>",
  354. "value": {
  355. "nodes": {
  356. "47": {
  357. "width": {
  358. "type": "double",
  359. "value": 10
  360. },
  361. "height": {
  362. "type": "double",
  363. "value": 100
  364. },
  365. "cornerRadius": {
  366. "type": "double",
  367. "value": 20
  368. },
  369. "style": {
  370. "type": "map<string,string>",
  371. "value": {
  372. "stroke": "#000000",
  373. "stroke-dasharray": "",
  374. "fill": "#899aa7",
  375. "fill-opacity": 0.75,
  376. "font-size": "20px",
  377. "stroke-width": 1,
  378. "arrow-start": "none",
  379. "arrow-end": "none"
  380. }
  381. },
  382. "mapper": {
  383. "type": "code",
  384. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  385. },
  386. "parser": {
  387. "type": "code",
  388. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  389. },
  390. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  391. "position": {
  392. "type": "list<double>",
  393. "value": [
  394. 29,
  395. 20
  396. ]
  397. },
  398. "orientation": {
  399. "type": "double",
  400. "value": 0
  401. },
  402. "scale": {
  403. "type": "list<double>",
  404. "value": [
  405. 1,
  406. 1
  407. ]
  408. }
  409. },
  410. "__pLabelText": {
  411. "position": {
  412. "type": "list<double>",
  413. "value": [
  414. 0,
  415. 0
  416. ]
  417. },
  418. "orientation": {
  419. "type": "double",
  420. "value": 0
  421. },
  422. "scale": {
  423. "type": "list<double>",
  424. "value": [
  425. 1,
  426. 1
  427. ]
  428. },
  429. "textContent": {
  430. "type": "string",
  431. "value": "3"
  432. },
  433. "style": {
  434. "type": "map<string,string>",
  435. "value": {
  436. "stroke": "#6000ff",
  437. "fill": "#6000ff",
  438. "font-size": "15px",
  439. "opacity": "1"
  440. }
  441. },
  442. "mapper": {
  443. "type": "code",
  444. "value": "({'textContent':getAttr('__pLabel')})"
  445. },
  446. "parser": {
  447. "type": "code",
  448. "value": "({'__pLabel':getAttr('textContent')})"
  449. },
  450. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  451. }
  452. },
  453. "edges": []
  454. }
  455. },
  456. "$asuri": {
  457. "type": "string",
  458. "value": "/Formalisms/Workflows/Workflows.pattern/__pForkNode/66.instance"
  459. },
  460. "$type": "/Formalisms/Workflows/Workflows.defaultIcons.pattern/__pForkNodeIcon"
  461. },
  462. "67": {
  463. "typename": {
  464. "type": "string",
  465. "value": "JoinNodeIcon"
  466. },
  467. "position": {
  468. "type": "list<double>",
  469. "value": [
  470. 592.4999998882413,
  471. 321.4141125
  472. ]
  473. },
  474. "orientation": {
  475. "type": "double",
  476. "value": 0
  477. },
  478. "scale": {
  479. "type": "list<double>",
  480. "value": [
  481. 1,
  482. 1
  483. ]
  484. },
  485. "mapper": {
  486. "type": "code",
  487. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  488. },
  489. "parser": {
  490. "type": "code",
  491. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  492. },
  493. "$contents": {
  494. "type": "map<string,*>",
  495. "value": {
  496. "nodes": {
  497. "42": {
  498. "width": {
  499. "type": "double",
  500. "value": 10
  501. },
  502. "height": {
  503. "type": "double",
  504. "value": 100
  505. },
  506. "cornerRadius": {
  507. "type": "double",
  508. "value": 20
  509. },
  510. "style": {
  511. "type": "map<string,string>",
  512. "value": {
  513. "stroke": "#003868",
  514. "stroke-dasharray": "",
  515. "fill": "#d8d9d9",
  516. "fill-opacity": 0.75,
  517. "font-size": "20px",
  518. "stroke-width": 1,
  519. "arrow-start": "none",
  520. "arrow-end": "none"
  521. }
  522. },
  523. "mapper": {
  524. "type": "code",
  525. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  526. },
  527. "parser": {
  528. "type": "code",
  529. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  530. },
  531. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  532. "position": {
  533. "type": "list<double>",
  534. "value": [
  535. 26,
  536. 21
  537. ]
  538. },
  539. "orientation": {
  540. "type": "double",
  541. "value": 0
  542. },
  543. "scale": {
  544. "type": "list<double>",
  545. "value": [
  546. 1,
  547. 1
  548. ]
  549. }
  550. },
  551. "__pLabelText": {
  552. "position": {
  553. "type": "list<double>",
  554. "value": [
  555. 0,
  556. 0
  557. ]
  558. },
  559. "orientation": {
  560. "type": "double",
  561. "value": 0
  562. },
  563. "scale": {
  564. "type": "list<double>",
  565. "value": [
  566. 1,
  567. 1
  568. ]
  569. },
  570. "textContent": {
  571. "type": "string",
  572. "value": "1"
  573. },
  574. "style": {
  575. "type": "map<string,string>",
  576. "value": {
  577. "stroke": "#6000ff",
  578. "fill": "#6000ff",
  579. "font-size": "15px",
  580. "opacity": "1"
  581. }
  582. },
  583. "mapper": {
  584. "type": "code",
  585. "value": "({'textContent':getAttr('__pLabel')})"
  586. },
  587. "parser": {
  588. "type": "code",
  589. "value": "({'__pLabel':getAttr('textContent')})"
  590. },
  591. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  592. }
  593. },
  594. "edges": []
  595. }
  596. },
  597. "$asuri": {
  598. "type": "string",
  599. "value": "/Formalisms/Workflows/Workflows.pattern/__pJoinNode/67.instance"
  600. },
  601. "$type": "/Formalisms/Workflows/Workflows.defaultIcons.pattern/__pJoinNodeIcon"
  602. },
  603. "68": {
  604. "link-style": {
  605. "type": "map<string,string>",
  606. "value": {
  607. "stroke": "#000000",
  608. "stroke-dasharray": "",
  609. "stroke-opacity": 1,
  610. "stroke-width": 2
  611. }
  612. },
  613. "arrowHead": {
  614. "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)",
  615. "value": "custom"
  616. },
  617. "arrowTail": {
  618. "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)",
  619. "value": "arrow-black"
  620. },
  621. "typename": {
  622. "type": "string",
  623. "value": "LinkLink"
  624. },
  625. "position": {
  626. "type": "list<double>",
  627. "value": [
  628. 564.2499999441206,
  629. 394.00390625
  630. ]
  631. },
  632. "orientation": {
  633. "type": "double",
  634. "value": 0
  635. },
  636. "scale": {
  637. "type": "list<double>",
  638. "value": [
  639. 1,
  640. 1
  641. ]
  642. },
  643. "mapper": {
  644. "type": "code",
  645. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  646. },
  647. "parser": {
  648. "type": "code",
  649. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  650. },
  651. "$contents": {
  652. "type": "map<string,*>",
  653. "value": {
  654. "nodes": {
  655. "275": {
  656. "segments": {
  657. "type": "string",
  658. "value": "m0,0 l20,8 l-20,8 l6,-8 z"
  659. },
  660. "style": {
  661. "type": "map<string,string>",
  662. "value": {
  663. "stroke": "#000000",
  664. "fill": "#000000",
  665. "opacity": 1,
  666. "stroke-width": 1
  667. }
  668. },
  669. "mapper": {
  670. "type": "code",
  671. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  672. },
  673. "parser": {
  674. "type": "code",
  675. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  676. },
  677. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  678. "position": {
  679. "type": "list<double>",
  680. "value": [
  681. "0;54.74915295685582,99.99999974548005%",
  682. "0;-8.003906209923514,-0.007134703170760157%"
  683. ]
  684. },
  685. "orientation": {
  686. "type": "double",
  687. "value": "0;-0.004087883801099793"
  688. },
  689. "scale": {
  690. "type": "list<double>",
  691. "value": [
  692. 1,
  693. 1
  694. ]
  695. },
  696. "$linkDecoratorInfo": {
  697. "type": "map<string,double>",
  698. "value": {
  699. "xratio": 1,
  700. "yoffset": -8
  701. }
  702. }
  703. },
  704. "__pLabelText": {
  705. "position": {
  706. "type": "list<double>",
  707. "value": [
  708. 0,
  709. 0
  710. ]
  711. },
  712. "orientation": {
  713. "type": "double",
  714. "value": 0
  715. },
  716. "scale": {
  717. "type": "list<double>",
  718. "value": [
  719. 1,
  720. 1
  721. ]
  722. },
  723. "textContent": {
  724. "type": "string",
  725. "value": "2"
  726. },
  727. "style": {
  728. "type": "map<string,string>",
  729. "value": {
  730. "stroke": "#6000ff",
  731. "fill": "#6000ff",
  732. "font-size": "15px",
  733. "opacity": "1"
  734. }
  735. },
  736. "mapper": {
  737. "type": "code",
  738. "value": "({'textContent':getAttr('__pLabel')})"
  739. },
  740. "parser": {
  741. "type": "code",
  742. "value": "({'__pLabel':getAttr('textContent')})"
  743. },
  744. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  745. }
  746. },
  747. "edges": []
  748. }
  749. },
  750. "$asuri": {
  751. "type": "string",
  752. "value": "/Formalisms/Workflows/Workflows.pattern/__pLink/68.instance"
  753. },
  754. "$segments": {
  755. "type": "map<string,list<string>>",
  756. "value": {
  757. "/Formalisms/Workflows/Workflows.defaultIcons.pattern/__pTaskIcon/65.instance--/Formalisms/Workflows/Workflows.defaultIcons.pattern/__pLinkLink/68.instance": "M509.4999998882413,394.0078125L564.2499999441206,394.00390625",
  758. "/Formalisms/Workflows/Workflows.defaultIcons.pattern/__pLinkLink/68.instance--/Formalisms/Workflows/Workflows.defaultIcons.pattern/__pJoinNodeIcon/67.instance": "M564.3252057139334,394.0039008842916L618.9997236772301,394.0000000197149"
  759. }
  760. },
  761. "$type": "/Formalisms/Workflows/Workflows.defaultIcons.pattern/__pLinkLink"
  762. },
  763. "69": {
  764. "typename": {
  765. "type": "string",
  766. "value": "__pTaskIcon"
  767. },
  768. "position": {
  769. "type": "list<double>",
  770. "value": [
  771. 551,
  772. 508
  773. ]
  774. },
  775. "orientation": {
  776. "type": "double",
  777. "value": 0
  778. },
  779. "scale": {
  780. "type": "list<double>",
  781. "value": [
  782. 1,
  783. 1
  784. ]
  785. },
  786. "mapper": {
  787. "type": "code",
  788. "value": ""
  789. },
  790. "parser": {
  791. "type": "code",
  792. "value": ""
  793. },
  794. "$contents": {
  795. "type": "map<string,*>",
  796. "value": {
  797. "nodes": {
  798. "text": {
  799. "textContent": {
  800. "type": "string",
  801. "value": "__pTaskIcon"
  802. },
  803. "style": {
  804. "type": "map<string,string>",
  805. "value": {
  806. "stroke": "#000000",
  807. "stroke-dasharray": "",
  808. "fill": "#000000",
  809. "fill-opacity": "1",
  810. "font-size": "13px"
  811. }
  812. },
  813. "mapper": {
  814. "type": "code",
  815. "value": ""
  816. },
  817. "parser": {
  818. "type": "code",
  819. "value": ""
  820. },
  821. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  822. "position": {
  823. "type": "list<double>",
  824. "value": [
  825. 10,
  826. 76
  827. ]
  828. },
  829. "orientation": {
  830. "type": "double",
  831. "value": 0
  832. },
  833. "scale": {
  834. "type": "list<double>",
  835. "value": [
  836. 1,
  837. 1
  838. ]
  839. }
  840. },
  841. "rect": {
  842. "width": {
  843. "type": "double",
  844. "value": 75
  845. },
  846. "height": {
  847. "type": "double",
  848. "value": 75
  849. },
  850. "cornerRadius": {
  851. "type": "double",
  852. "value": 15
  853. },
  854. "style": {
  855. "type": "map<string,string>",
  856. "value": {
  857. "stroke": "#000000",
  858. "fill": "#ffffff",
  859. "fill-opacity": 0.75
  860. }
  861. },
  862. "mapper": {
  863. "type": "code",
  864. "value": ""
  865. },
  866. "parser": {
  867. "type": "code",
  868. "value": ""
  869. },
  870. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  871. "position": {
  872. "type": "list<double>",
  873. "value": [
  874. 0,
  875. 0
  876. ]
  877. },
  878. "orientation": {
  879. "type": "double",
  880. "value": 0
  881. },
  882. "scale": {
  883. "type": "list<double>",
  884. "value": [
  885. 1,
  886. 1
  887. ]
  888. }
  889. },
  890. "textBelowRect": {
  891. "distance": {
  892. "type": "double",
  893. "value": 10
  894. },
  895. "alignment": {
  896. "type": "ENUM(\"right\",\"left\",\"center\")",
  897. "value": "center"
  898. },
  899. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Below",
  900. "position": {
  901. "type": "list<double>",
  902. "value": [
  903. 5,
  904. 38
  905. ]
  906. },
  907. "orientation": {
  908. "type": "double",
  909. "value": 0
  910. },
  911. "scale": {
  912. "type": "list<double>",
  913. "value": [
  914. 1,
  915. 1
  916. ]
  917. },
  918. "link-style": {
  919. "type": "map<string,string>",
  920. "value": {
  921. "stroke": "#00ff00",
  922. "stroke-dasharray": "",
  923. "stroke-opacity": 1,
  924. "arrow-start": "none",
  925. "arrow-end": "classic-wide-long"
  926. }
  927. }
  928. },
  929. "__pLabelText": {
  930. "position": {
  931. "type": "list<double>",
  932. "value": [
  933. 0,
  934. 0
  935. ]
  936. },
  937. "orientation": {
  938. "type": "double",
  939. "value": 0
  940. },
  941. "scale": {
  942. "type": "list<double>",
  943. "value": [
  944. 1,
  945. 1
  946. ]
  947. },
  948. "textContent": {
  949. "type": "string",
  950. "value": "4"
  951. },
  952. "style": {
  953. "type": "map<string,string>",
  954. "value": {
  955. "stroke": "#6000ff",
  956. "fill": "#6000ff",
  957. "font-size": "15px",
  958. "opacity": "1"
  959. }
  960. },
  961. "mapper": {
  962. "type": "code",
  963. "value": "({'textContent':getAttr('__pLabel')})"
  964. },
  965. "parser": {
  966. "type": "code",
  967. "value": "({'__pLabel':getAttr('textContent')})"
  968. },
  969. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  970. }
  971. },
  972. "edges": [
  973. {
  974. "src": "text",
  975. "dest": "textBelowRect"
  976. },
  977. {
  978. "src": "textBelowRect",
  979. "dest": "rect"
  980. }
  981. ]
  982. }
  983. },
  984. "$asuri": {
  985. "type": "string",
  986. "value": "/Formalisms/Workflows/Workflows.pattern/__pTask/69.instance"
  987. },
  988. "$type": "/Formalisms/Workflows/Workflows.defaultIcons.pattern/__pTaskIcon"
  989. },
  990. "70": {
  991. "link-style": {
  992. "type": "map<string,string>",
  993. "value": {
  994. "stroke": "#000000",
  995. "stroke-dasharray": "",
  996. "stroke-opacity": 1,
  997. "stroke-width": 2
  998. }
  999. },
  1000. "arrowHead": {
  1001. "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)",
  1002. "value": "custom"
  1003. },
  1004. "arrowTail": {
  1005. "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)",
  1006. "value": "arrow-black"
  1007. },
  1008. "typename": {
  1009. "type": "string",
  1010. "value": "FlowLink"
  1011. },
  1012. "position": {
  1013. "type": "list<double>",
  1014. "value": [
  1015. 509,
  1016. 554
  1017. ]
  1018. },
  1019. "orientation": {
  1020. "type": "double",
  1021. "value": 0
  1022. },
  1023. "scale": {
  1024. "type": "list<double>",
  1025. "value": [
  1026. 1,
  1027. 1
  1028. ]
  1029. },
  1030. "mapper": {
  1031. "type": "code",
  1032. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1033. },
  1034. "parser": {
  1035. "type": "code",
  1036. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1037. },
  1038. "$contents": {
  1039. "type": "map<string,*>",
  1040. "value": {
  1041. "nodes": {
  1042. "267": {
  1043. "segments": {
  1044. "type": "string",
  1045. "value": "m0,0 l10,4 l-10,4 l3,-4 z"
  1046. },
  1047. "style": {
  1048. "type": "map<string,string>",
  1049. "value": {
  1050. "stroke": "#000000",
  1051. "fill": "#000000",
  1052. "opacity": 1,
  1053. "stroke-width": 1
  1054. }
  1055. },
  1056. "mapper": {
  1057. "type": "code",
  1058. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1059. },
  1060. "parser": {
  1061. "type": "code",
  1062. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1063. },
  1064. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1065. "position": {
  1066. "type": "list<double>",
  1067. "value": [
  1068. "0;45.999674149338375,100%",
  1069. "0;-4.000000000000114,-2.471470501128568e-13%"
  1070. ]
  1071. },
  1072. "orientation": {
  1073. "type": "double",
  1074. "value": "0;-1.4160482890574953e-13"
  1075. },
  1076. "scale": {
  1077. "type": "list<double>",
  1078. "value": [
  1079. 1,
  1080. 1
  1081. ]
  1082. },
  1083. "$linkDecoratorInfo": {
  1084. "type": "map<string,double>",
  1085. "value": {
  1086. "xratio": 1,
  1087. "yoffset": -4
  1088. }
  1089. }
  1090. },
  1091. "__pLabelText": {
  1092. "position": {
  1093. "type": "list<double>",
  1094. "value": [
  1095. 0,
  1096. 0
  1097. ]
  1098. },
  1099. "orientation": {
  1100. "type": "double",
  1101. "value": 0
  1102. },
  1103. "scale": {
  1104. "type": "list<double>",
  1105. "value": [
  1106. 1,
  1107. 1
  1108. ]
  1109. },
  1110. "textContent": {
  1111. "type": "string",
  1112. "value": "7"
  1113. },
  1114. "style": {
  1115. "type": "map<string,string>",
  1116. "value": {
  1117. "stroke": "#6000ff",
  1118. "fill": "#6000ff",
  1119. "font-size": "15px",
  1120. "opacity": "1"
  1121. }
  1122. },
  1123. "mapper": {
  1124. "type": "code",
  1125. "value": "({'textContent':getAttr('__pLabel')})"
  1126. },
  1127. "parser": {
  1128. "type": "code",
  1129. "value": "({'__pLabel':getAttr('textContent')})"
  1130. },
  1131. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  1132. }
  1133. },
  1134. "edges": []
  1135. }
  1136. },
  1137. "$asuri": {
  1138. "type": "string",
  1139. "value": "/Formalisms/Workflows/Workflows.pattern/__pFlow/70.instance"
  1140. },
  1141. "$segments": {
  1142. "type": "map<string,list<string>>",
  1143. "value": {
  1144. "/Formalisms/Workflows/Workflows.defaultIcons.pattern/__pForkNodeIcon/66.instance--/Formalisms/Workflows/Workflows.defaultIcons.pattern/__pFlowLink/70.instance": "M463,554L509.00000000000006,554",
  1145. "/Formalisms/Workflows/Workflows.defaultIcons.pattern/__pFlowLink/70.instance--/Formalisms/Workflows/Workflows.defaultIcons.pattern/__pTaskIcon/69.instance": "M509.07648348515903,554L554.9996741493384,553.9999999999999"
  1146. }
  1147. },
  1148. "$type": "/Formalisms/Workflows/Workflows.defaultIcons.pattern/__pFlowLink"
  1149. },
  1150. "71": {
  1151. "typename": {
  1152. "type": "string",
  1153. "value": "__pTaskIcon"
  1154. },
  1155. "position": {
  1156. "type": "list<double>",
  1157. "value": [
  1158. 986,
  1159. 367.1094
  1160. ]
  1161. },
  1162. "orientation": {
  1163. "type": "double",
  1164. "value": 0
  1165. },
  1166. "scale": {
  1167. "type": "list<double>",
  1168. "value": [
  1169. 1,
  1170. 1
  1171. ]
  1172. },
  1173. "mapper": {
  1174. "type": "code",
  1175. "value": ""
  1176. },
  1177. "parser": {
  1178. "type": "code",
  1179. "value": ""
  1180. },
  1181. "$contents": {
  1182. "type": "map<string,*>",
  1183. "value": {
  1184. "nodes": {
  1185. "text": {
  1186. "textContent": {
  1187. "type": "string",
  1188. "value": "__pTaskIcon"
  1189. },
  1190. "style": {
  1191. "type": "map<string,string>",
  1192. "value": {
  1193. "stroke": "#000000",
  1194. "stroke-dasharray": "",
  1195. "fill": "#000000",
  1196. "fill-opacity": "1",
  1197. "font-size": "13px"
  1198. }
  1199. },
  1200. "mapper": {
  1201. "type": "code",
  1202. "value": ""
  1203. },
  1204. "parser": {
  1205. "type": "code",
  1206. "value": ""
  1207. },
  1208. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  1209. "position": {
  1210. "type": "list<double>",
  1211. "value": [
  1212. 10,
  1213. 76
  1214. ]
  1215. },
  1216. "orientation": {
  1217. "type": "double",
  1218. "value": 0
  1219. },
  1220. "scale": {
  1221. "type": "list<double>",
  1222. "value": [
  1223. 1,
  1224. 1
  1225. ]
  1226. }
  1227. },
  1228. "rect": {
  1229. "width": {
  1230. "type": "double",
  1231. "value": 75
  1232. },
  1233. "height": {
  1234. "type": "double",
  1235. "value": 75
  1236. },
  1237. "cornerRadius": {
  1238. "type": "double",
  1239. "value": 15
  1240. },
  1241. "style": {
  1242. "type": "map<string,string>",
  1243. "value": {
  1244. "stroke": "#000000",
  1245. "fill": "#ffffff",
  1246. "fill-opacity": 0.75
  1247. }
  1248. },
  1249. "mapper": {
  1250. "type": "code",
  1251. "value": ""
  1252. },
  1253. "parser": {
  1254. "type": "code",
  1255. "value": ""
  1256. },
  1257. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  1258. "position": {
  1259. "type": "list<double>",
  1260. "value": [
  1261. 0,
  1262. 0
  1263. ]
  1264. },
  1265. "orientation": {
  1266. "type": "double",
  1267. "value": 0
  1268. },
  1269. "scale": {
  1270. "type": "list<double>",
  1271. "value": [
  1272. 1,
  1273. 1
  1274. ]
  1275. }
  1276. },
  1277. "textBelowRect": {
  1278. "distance": {
  1279. "type": "double",
  1280. "value": 10
  1281. },
  1282. "alignment": {
  1283. "type": "ENUM(\"right\",\"left\",\"center\")",
  1284. "value": "center"
  1285. },
  1286. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Below",
  1287. "position": {
  1288. "type": "list<double>",
  1289. "value": [
  1290. 5,
  1291. 38
  1292. ]
  1293. },
  1294. "orientation": {
  1295. "type": "double",
  1296. "value": 0
  1297. },
  1298. "scale": {
  1299. "type": "list<double>",
  1300. "value": [
  1301. 1,
  1302. 1
  1303. ]
  1304. },
  1305. "link-style": {
  1306. "type": "map<string,string>",
  1307. "value": {
  1308. "stroke": "#00ff00",
  1309. "stroke-dasharray": "",
  1310. "stroke-opacity": 1,
  1311. "arrow-start": "none",
  1312. "arrow-end": "classic-wide-long"
  1313. }
  1314. }
  1315. },
  1316. "__pLabelText": {
  1317. "position": {
  1318. "type": "list<double>",
  1319. "value": [
  1320. 0,
  1321. 0
  1322. ]
  1323. },
  1324. "orientation": {
  1325. "type": "double",
  1326. "value": 0
  1327. },
  1328. "scale": {
  1329. "type": "list<double>",
  1330. "value": [
  1331. 1,
  1332. 1
  1333. ]
  1334. },
  1335. "textContent": {
  1336. "type": "string",
  1337. "value": "0"
  1338. },
  1339. "style": {
  1340. "type": "map<string,string>",
  1341. "value": {
  1342. "stroke": "#6000ff",
  1343. "fill": "#6000ff",
  1344. "font-size": "15px",
  1345. "opacity": "1"
  1346. }
  1347. },
  1348. "mapper": {
  1349. "type": "code",
  1350. "value": "({'textContent':getAttr('__pLabel')})"
  1351. },
  1352. "parser": {
  1353. "type": "code",
  1354. "value": "({'__pLabel':getAttr('textContent')})"
  1355. },
  1356. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  1357. }
  1358. },
  1359. "edges": [
  1360. {
  1361. "src": "text",
  1362. "dest": "textBelowRect"
  1363. },
  1364. {
  1365. "src": "textBelowRect",
  1366. "dest": "rect"
  1367. }
  1368. ]
  1369. }
  1370. },
  1371. "$asuri": {
  1372. "type": "string",
  1373. "value": "/Formalisms/Workflows/Workflows.pattern/__pTask/71.instance"
  1374. },
  1375. "$type": "/Formalisms/Workflows/Workflows.defaultIcons.pattern/__pTaskIcon"
  1376. },
  1377. "72": {
  1378. "typename": {
  1379. "type": "string",
  1380. "value": "ForkNodeIcon"
  1381. },
  1382. "position": {
  1383. "type": "list<double>",
  1384. "value": [
  1385. 972,
  1386. 495.7969
  1387. ]
  1388. },
  1389. "orientation": {
  1390. "type": "double",
  1391. "value": 0
  1392. },
  1393. "scale": {
  1394. "type": "list<double>",
  1395. "value": [
  1396. 1,
  1397. 1
  1398. ]
  1399. },
  1400. "mapper": {
  1401. "type": "code",
  1402. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1403. },
  1404. "parser": {
  1405. "type": "code",
  1406. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1407. },
  1408. "$contents": {
  1409. "type": "map<string,*>",
  1410. "value": {
  1411. "nodes": {
  1412. "47": {
  1413. "width": {
  1414. "type": "double",
  1415. "value": 10
  1416. },
  1417. "height": {
  1418. "type": "double",
  1419. "value": 100
  1420. },
  1421. "cornerRadius": {
  1422. "type": "double",
  1423. "value": 20
  1424. },
  1425. "style": {
  1426. "type": "map<string,string>",
  1427. "value": {
  1428. "stroke": "#000000",
  1429. "stroke-dasharray": "",
  1430. "fill": "#899aa7",
  1431. "fill-opacity": 0.75,
  1432. "font-size": "20px",
  1433. "stroke-width": 1,
  1434. "arrow-start": "none",
  1435. "arrow-end": "none"
  1436. }
  1437. },
  1438. "mapper": {
  1439. "type": "code",
  1440. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1441. },
  1442. "parser": {
  1443. "type": "code",
  1444. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1445. },
  1446. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  1447. "position": {
  1448. "type": "list<double>",
  1449. "value": [
  1450. 29,
  1451. 20
  1452. ]
  1453. },
  1454. "orientation": {
  1455. "type": "double",
  1456. "value": 0
  1457. },
  1458. "scale": {
  1459. "type": "list<double>",
  1460. "value": [
  1461. 1,
  1462. 1
  1463. ]
  1464. }
  1465. },
  1466. "__pLabelText": {
  1467. "position": {
  1468. "type": "list<double>",
  1469. "value": [
  1470. 0,
  1471. 0
  1472. ]
  1473. },
  1474. "orientation": {
  1475. "type": "double",
  1476. "value": 0
  1477. },
  1478. "scale": {
  1479. "type": "list<double>",
  1480. "value": [
  1481. 1,
  1482. 1
  1483. ]
  1484. },
  1485. "textContent": {
  1486. "type": "string",
  1487. "value": "3"
  1488. },
  1489. "style": {
  1490. "type": "map<string,string>",
  1491. "value": {
  1492. "stroke": "#6000ff",
  1493. "fill": "#6000ff",
  1494. "font-size": "15px",
  1495. "opacity": "1"
  1496. }
  1497. },
  1498. "mapper": {
  1499. "type": "code",
  1500. "value": "({'textContent':getAttr('__pLabel')})"
  1501. },
  1502. "parser": {
  1503. "type": "code",
  1504. "value": "({'__pLabel':getAttr('textContent')})"
  1505. },
  1506. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  1507. }
  1508. },
  1509. "edges": []
  1510. }
  1511. },
  1512. "$asuri": {
  1513. "type": "string",
  1514. "value": "/Formalisms/Workflows/Workflows.pattern/__pForkNode/72.instance"
  1515. },
  1516. "$type": "/Formalisms/Workflows/Workflows.defaultIcons.pattern/__pForkNodeIcon"
  1517. },
  1518. "73": {
  1519. "typename": {
  1520. "type": "string",
  1521. "value": "JoinNodeIcon"
  1522. },
  1523. "position": {
  1524. "type": "list<double>",
  1525. "value": [
  1526. 1137.4999998882413,
  1527. 334.2110125
  1528. ]
  1529. },
  1530. "orientation": {
  1531. "type": "double",
  1532. "value": 0
  1533. },
  1534. "scale": {
  1535. "type": "list<double>",
  1536. "value": [
  1537. 1,
  1538. 1
  1539. ]
  1540. },
  1541. "mapper": {
  1542. "type": "code",
  1543. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1544. },
  1545. "parser": {
  1546. "type": "code",
  1547. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1548. },
  1549. "$contents": {
  1550. "type": "map<string,*>",
  1551. "value": {
  1552. "nodes": {
  1553. "42": {
  1554. "width": {
  1555. "type": "double",
  1556. "value": 10
  1557. },
  1558. "height": {
  1559. "type": "double",
  1560. "value": 100
  1561. },
  1562. "cornerRadius": {
  1563. "type": "double",
  1564. "value": 20
  1565. },
  1566. "style": {
  1567. "type": "map<string,string>",
  1568. "value": {
  1569. "stroke": "#003868",
  1570. "stroke-dasharray": "",
  1571. "fill": "#d8d9d9",
  1572. "fill-opacity": 0.75,
  1573. "font-size": "20px",
  1574. "stroke-width": 1,
  1575. "arrow-start": "none",
  1576. "arrow-end": "none"
  1577. }
  1578. },
  1579. "mapper": {
  1580. "type": "code",
  1581. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1582. },
  1583. "parser": {
  1584. "type": "code",
  1585. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1586. },
  1587. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  1588. "position": {
  1589. "type": "list<double>",
  1590. "value": [
  1591. 26,
  1592. 21
  1593. ]
  1594. },
  1595. "orientation": {
  1596. "type": "double",
  1597. "value": 0
  1598. },
  1599. "scale": {
  1600. "type": "list<double>",
  1601. "value": [
  1602. 1,
  1603. 1
  1604. ]
  1605. }
  1606. },
  1607. "__pLabelText": {
  1608. "position": {
  1609. "type": "list<double>",
  1610. "value": [
  1611. 0,
  1612. 0
  1613. ]
  1614. },
  1615. "orientation": {
  1616. "type": "double",
  1617. "value": 0
  1618. },
  1619. "scale": {
  1620. "type": "list<double>",
  1621. "value": [
  1622. 1,
  1623. 1
  1624. ]
  1625. },
  1626. "textContent": {
  1627. "type": "string",
  1628. "value": "1"
  1629. },
  1630. "style": {
  1631. "type": "map<string,string>",
  1632. "value": {
  1633. "stroke": "#6000ff",
  1634. "fill": "#6000ff",
  1635. "font-size": "15px",
  1636. "opacity": "1"
  1637. }
  1638. },
  1639. "mapper": {
  1640. "type": "code",
  1641. "value": "({'textContent':getAttr('__pLabel')})"
  1642. },
  1643. "parser": {
  1644. "type": "code",
  1645. "value": "({'__pLabel':getAttr('textContent')})"
  1646. },
  1647. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  1648. }
  1649. },
  1650. "edges": []
  1651. }
  1652. },
  1653. "$asuri": {
  1654. "type": "string",
  1655. "value": "/Formalisms/Workflows/Workflows.pattern/__pJoinNode/73.instance"
  1656. },
  1657. "$type": "/Formalisms/Workflows/Workflows.defaultIcons.pattern/__pJoinNodeIcon"
  1658. },
  1659. "74": {
  1660. "typename": {
  1661. "type": "string",
  1662. "value": "__pTaskIcon"
  1663. },
  1664. "position": {
  1665. "type": "list<double>",
  1666. "value": [
  1667. 1096,
  1668. 520.7969
  1669. ]
  1670. },
  1671. "orientation": {
  1672. "type": "double",
  1673. "value": 0
  1674. },
  1675. "scale": {
  1676. "type": "list<double>",
  1677. "value": [
  1678. 1,
  1679. 1
  1680. ]
  1681. },
  1682. "mapper": {
  1683. "type": "code",
  1684. "value": ""
  1685. },
  1686. "parser": {
  1687. "type": "code",
  1688. "value": ""
  1689. },
  1690. "$contents": {
  1691. "type": "map<string,*>",
  1692. "value": {
  1693. "nodes": {
  1694. "text": {
  1695. "textContent": {
  1696. "type": "string",
  1697. "value": "__pTaskIcon"
  1698. },
  1699. "style": {
  1700. "type": "map<string,string>",
  1701. "value": {
  1702. "stroke": "#000000",
  1703. "stroke-dasharray": "",
  1704. "fill": "#000000",
  1705. "fill-opacity": "1",
  1706. "font-size": "13px"
  1707. }
  1708. },
  1709. "mapper": {
  1710. "type": "code",
  1711. "value": ""
  1712. },
  1713. "parser": {
  1714. "type": "code",
  1715. "value": ""
  1716. },
  1717. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  1718. "position": {
  1719. "type": "list<double>",
  1720. "value": [
  1721. 10,
  1722. 76
  1723. ]
  1724. },
  1725. "orientation": {
  1726. "type": "double",
  1727. "value": 0
  1728. },
  1729. "scale": {
  1730. "type": "list<double>",
  1731. "value": [
  1732. 1,
  1733. 1
  1734. ]
  1735. }
  1736. },
  1737. "rect": {
  1738. "width": {
  1739. "type": "double",
  1740. "value": 75
  1741. },
  1742. "height": {
  1743. "type": "double",
  1744. "value": 75
  1745. },
  1746. "cornerRadius": {
  1747. "type": "double",
  1748. "value": 15
  1749. },
  1750. "style": {
  1751. "type": "map<string,string>",
  1752. "value": {
  1753. "stroke": "#000000",
  1754. "fill": "#ffffff",
  1755. "fill-opacity": 0.75
  1756. }
  1757. },
  1758. "mapper": {
  1759. "type": "code",
  1760. "value": ""
  1761. },
  1762. "parser": {
  1763. "type": "code",
  1764. "value": ""
  1765. },
  1766. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  1767. "position": {
  1768. "type": "list<double>",
  1769. "value": [
  1770. 0,
  1771. 0
  1772. ]
  1773. },
  1774. "orientation": {
  1775. "type": "double",
  1776. "value": 0
  1777. },
  1778. "scale": {
  1779. "type": "list<double>",
  1780. "value": [
  1781. 1,
  1782. 1
  1783. ]
  1784. }
  1785. },
  1786. "textBelowRect": {
  1787. "distance": {
  1788. "type": "double",
  1789. "value": 10
  1790. },
  1791. "alignment": {
  1792. "type": "ENUM(\"right\",\"left\",\"center\")",
  1793. "value": "center"
  1794. },
  1795. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Below",
  1796. "position": {
  1797. "type": "list<double>",
  1798. "value": [
  1799. 5,
  1800. 38
  1801. ]
  1802. },
  1803. "orientation": {
  1804. "type": "double",
  1805. "value": 0
  1806. },
  1807. "scale": {
  1808. "type": "list<double>",
  1809. "value": [
  1810. 1,
  1811. 1
  1812. ]
  1813. },
  1814. "link-style": {
  1815. "type": "map<string,string>",
  1816. "value": {
  1817. "stroke": "#00ff00",
  1818. "stroke-dasharray": "",
  1819. "stroke-opacity": 1,
  1820. "arrow-start": "none",
  1821. "arrow-end": "classic-wide-long"
  1822. }
  1823. }
  1824. },
  1825. "__pLabelText": {
  1826. "position": {
  1827. "type": "list<double>",
  1828. "value": [
  1829. 0,
  1830. 0
  1831. ]
  1832. },
  1833. "orientation": {
  1834. "type": "double",
  1835. "value": 0
  1836. },
  1837. "scale": {
  1838. "type": "list<double>",
  1839. "value": [
  1840. 1,
  1841. 1
  1842. ]
  1843. },
  1844. "textContent": {
  1845. "type": "string",
  1846. "value": "4"
  1847. },
  1848. "style": {
  1849. "type": "map<string,string>",
  1850. "value": {
  1851. "stroke": "#6000ff",
  1852. "fill": "#6000ff",
  1853. "font-size": "15px",
  1854. "opacity": "1"
  1855. }
  1856. },
  1857. "mapper": {
  1858. "type": "code",
  1859. "value": "({'textContent':getAttr('__pLabel')})"
  1860. },
  1861. "parser": {
  1862. "type": "code",
  1863. "value": "({'__pLabel':getAttr('textContent')})"
  1864. },
  1865. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  1866. }
  1867. },
  1868. "edges": [
  1869. {
  1870. "src": "text",
  1871. "dest": "textBelowRect"
  1872. },
  1873. {
  1874. "src": "textBelowRect",
  1875. "dest": "rect"
  1876. }
  1877. ]
  1878. }
  1879. },
  1880. "$asuri": {
  1881. "type": "string",
  1882. "value": "/Formalisms/Workflows/Workflows.pattern/__pTask/74.instance"
  1883. },
  1884. "$type": "/Formalisms/Workflows/Workflows.defaultIcons.pattern/__pTaskIcon"
  1885. },
  1886. "75": {
  1887. "link-style": {
  1888. "type": "map<string,string>",
  1889. "value": {
  1890. "stroke": "#000000",
  1891. "stroke-dasharray": "",
  1892. "stroke-opacity": 1,
  1893. "stroke-width": 2
  1894. }
  1895. },
  1896. "arrowHead": {
  1897. "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)",
  1898. "value": "custom"
  1899. },
  1900. "arrowTail": {
  1901. "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)",
  1902. "value": "arrow-black"
  1903. },
  1904. "typename": {
  1905. "type": "string",
  1906. "value": "FlowLink"
  1907. },
  1908. "position": {
  1909. "type": "list<double>",
  1910. "value": [
  1911. 1054,
  1912. 566.7969
  1913. ]
  1914. },
  1915. "orientation": {
  1916. "type": "double",
  1917. "value": 0
  1918. },
  1919. "scale": {
  1920. "type": "list<double>",
  1921. "value": [
  1922. 1,
  1923. 1
  1924. ]
  1925. },
  1926. "mapper": {
  1927. "type": "code",
  1928. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1929. },
  1930. "parser": {
  1931. "type": "code",
  1932. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1933. },
  1934. "$contents": {
  1935. "type": "map<string,*>",
  1936. "value": {
  1937. "nodes": {
  1938. "267": {
  1939. "segments": {
  1940. "type": "string",
  1941. "value": "m0,0 l10,4 l-10,4 l3,-4 z"
  1942. },
  1943. "style": {
  1944. "type": "map<string,string>",
  1945. "value": {
  1946. "stroke": "#000000",
  1947. "fill": "#000000",
  1948. "opacity": 1,
  1949. "stroke-width": 1
  1950. }
  1951. },
  1952. "mapper": {
  1953. "type": "code",
  1954. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1955. },
  1956. "parser": {
  1957. "type": "code",
  1958. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1959. },
  1960. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1961. "position": {
  1962. "type": "list<double>",
  1963. "value": [
  1964. "0;45.99967414933826,100%",
  1965. "0;-4.000000000000227,-4.942941002257143e-13%"
  1966. ]
  1967. },
  1968. "orientation": {
  1969. "type": "double",
  1970. "value": "0;-2.832096578114994e-13"
  1971. },
  1972. "scale": {
  1973. "type": "list<double>",
  1974. "value": [
  1975. 1,
  1976. 1
  1977. ]
  1978. },
  1979. "$linkDecoratorInfo": {
  1980. "type": "map<string,double>",
  1981. "value": {
  1982. "xratio": 1,
  1983. "yoffset": -4
  1984. }
  1985. }
  1986. },
  1987. "__pLabelText": {
  1988. "position": {
  1989. "type": "list<double>",
  1990. "value": [
  1991. 0,
  1992. 0
  1993. ]
  1994. },
  1995. "orientation": {
  1996. "type": "double",
  1997. "value": 0
  1998. },
  1999. "scale": {
  2000. "type": "list<double>",
  2001. "value": [
  2002. 1,
  2003. 1
  2004. ]
  2005. },
  2006. "textContent": {
  2007. "type": "string",
  2008. "value": "7"
  2009. },
  2010. "style": {
  2011. "type": "map<string,string>",
  2012. "value": {
  2013. "stroke": "#6000ff",
  2014. "fill": "#6000ff",
  2015. "font-size": "15px",
  2016. "opacity": "1"
  2017. }
  2018. },
  2019. "mapper": {
  2020. "type": "code",
  2021. "value": "({'textContent':getAttr('__pLabel')})"
  2022. },
  2023. "parser": {
  2024. "type": "code",
  2025. "value": "({'__pLabel':getAttr('textContent')})"
  2026. },
  2027. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  2028. }
  2029. },
  2030. "edges": []
  2031. }
  2032. },
  2033. "$asuri": {
  2034. "type": "string",
  2035. "value": "/Formalisms/Workflows/Workflows.pattern/__pFlow/75.instance"
  2036. },
  2037. "$segments": {
  2038. "type": "map<string,list<string>>",
  2039. "value": {
  2040. "/Formalisms/Workflows/Workflows.defaultIcons.pattern/__pForkNodeIcon/72.instance--/Formalisms/Workflows/Workflows.defaultIcons.pattern/__pFlowLink/75.instance": "M1008,566.7969L1054,566.7969",
  2041. "/Formalisms/Workflows/Workflows.defaultIcons.pattern/__pFlowLink/75.instance--/Formalisms/Workflows/Workflows.defaultIcons.pattern/__pTaskIcon/74.instance": "M1054.0764834851589,566.7969L1099.9996741493383,566.7968999999998"
  2042. }
  2043. },
  2044. "$type": "/Formalisms/Workflows/Workflows.defaultIcons.pattern/__pFlowLink"
  2045. },
  2046. "76": {
  2047. "link-style": {
  2048. "type": "map<string,string>",
  2049. "value": {
  2050. "stroke": "#000000",
  2051. "stroke-dasharray": "",
  2052. "stroke-opacity": 1,
  2053. "stroke-width": 2
  2054. }
  2055. },
  2056. "arrowHead": {
  2057. "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)",
  2058. "value": "custom"
  2059. },
  2060. "arrowTail": {
  2061. "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)",
  2062. "value": "arrow-black"
  2063. },
  2064. "typename": {
  2065. "type": "string",
  2066. "value": "LinkLink"
  2067. },
  2068. "position": {
  2069. "type": "list<double>",
  2070. "value": [
  2071. 1109.2499999441206,
  2072. 406.80080625
  2073. ]
  2074. },
  2075. "orientation": {
  2076. "type": "double",
  2077. "value": 0
  2078. },
  2079. "scale": {
  2080. "type": "list<double>",
  2081. "value": [
  2082. 1,
  2083. 1
  2084. ]
  2085. },
  2086. "mapper": {
  2087. "type": "code",
  2088. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2089. },
  2090. "parser": {
  2091. "type": "code",
  2092. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2093. },
  2094. "$contents": {
  2095. "type": "map<string,*>",
  2096. "value": {
  2097. "nodes": {
  2098. "275": {
  2099. "segments": {
  2100. "type": "string",
  2101. "value": "m0,0 l20,8 l-20,8 l6,-8 z"
  2102. },
  2103. "style": {
  2104. "type": "map<string,string>",
  2105. "value": {
  2106. "stroke": "#000000",
  2107. "fill": "#000000",
  2108. "opacity": 1,
  2109. "stroke-width": 1
  2110. }
  2111. },
  2112. "mapper": {
  2113. "type": "code",
  2114. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2115. },
  2116. "parser": {
  2117. "type": "code",
  2118. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2119. },
  2120. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2121. "position": {
  2122. "type": "list<double>",
  2123. "value": [
  2124. "0;54.74915295685582,99.99999974548005%",
  2125. "0;-8.003906209923514,-0.007134703170760157%"
  2126. ]
  2127. },
  2128. "orientation": {
  2129. "type": "double",
  2130. "value": "0;-0.004087883801099793"
  2131. },
  2132. "scale": {
  2133. "type": "list<double>",
  2134. "value": [
  2135. 1,
  2136. 1
  2137. ]
  2138. },
  2139. "$linkDecoratorInfo": {
  2140. "type": "map<string,double>",
  2141. "value": {
  2142. "xratio": 1,
  2143. "yoffset": -8
  2144. }
  2145. }
  2146. },
  2147. "__pLabelText": {
  2148. "position": {
  2149. "type": "list<double>",
  2150. "value": [
  2151. 0,
  2152. 0
  2153. ]
  2154. },
  2155. "orientation": {
  2156. "type": "double",
  2157. "value": 0
  2158. },
  2159. "scale": {
  2160. "type": "list<double>",
  2161. "value": [
  2162. 1,
  2163. 1
  2164. ]
  2165. },
  2166. "textContent": {
  2167. "type": "string",
  2168. "value": "2"
  2169. },
  2170. "style": {
  2171. "type": "map<string,string>",
  2172. "value": {
  2173. "stroke": "#6000ff",
  2174. "fill": "#6000ff",
  2175. "font-size": "15px",
  2176. "opacity": "1"
  2177. }
  2178. },
  2179. "mapper": {
  2180. "type": "code",
  2181. "value": "({'textContent':getAttr('__pLabel')})"
  2182. },
  2183. "parser": {
  2184. "type": "code",
  2185. "value": "({'__pLabel':getAttr('textContent')})"
  2186. },
  2187. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  2188. }
  2189. },
  2190. "edges": []
  2191. }
  2192. },
  2193. "$asuri": {
  2194. "type": "string",
  2195. "value": "/Formalisms/Workflows/Workflows.pattern/__pLink/76.instance"
  2196. },
  2197. "$segments": {
  2198. "type": "map<string,list<string>>",
  2199. "value": {
  2200. "/Formalisms/Workflows/Workflows.defaultIcons.pattern/__pTaskIcon/71.instance--/Formalisms/Workflows/Workflows.defaultIcons.pattern/__pLinkLink/76.instance": "M1054.4999998882413,406.8047125L1109.2499999441206,406.80080625",
  2201. "/Formalisms/Workflows/Workflows.defaultIcons.pattern/__pLinkLink/76.instance--/Formalisms/Workflows/Workflows.defaultIcons.pattern/__pJoinNodeIcon/73.instance": "M1109.3252057139334,406.8008008842916L1163.9997236772301,406.7969000197149"
  2202. }
  2203. },
  2204. "$type": "/Formalisms/Workflows/Workflows.defaultIcons.pattern/__pLinkLink"
  2205. },
  2206. "77": {
  2207. "link-style": {
  2208. "type": "map<string,string>",
  2209. "value": {
  2210. "stroke": "#00ff00",
  2211. "stroke-dasharray": "",
  2212. "stroke-opacity": 0.2,
  2213. "stroke-width": 1,
  2214. "arrow-start": "none",
  2215. "arrow-end": "classic-wide-long"
  2216. }
  2217. },
  2218. "typename": {
  2219. "type": "string",
  2220. "value": "PatternContentsLink"
  2221. },
  2222. "position": {
  2223. "type": "list<double>",
  2224. "value": [
  2225. 921.126948858907,
  2226. 323.9012268309307
  2227. ]
  2228. },
  2229. "orientation": {
  2230. "type": "double",
  2231. "value": 0
  2232. },
  2233. "scale": {
  2234. "type": "list<double>",
  2235. "value": [
  2236. 1,
  2237. 1
  2238. ]
  2239. },
  2240. "mapper": {
  2241. "type": "code",
  2242. "value": ""
  2243. },
  2244. "parser": {
  2245. "type": "code",
  2246. "value": ""
  2247. },
  2248. "$contents": {
  2249. "type": "map<string,*>",
  2250. "value": {
  2251. "nodes": {},
  2252. "edges": []
  2253. }
  2254. },
  2255. "$asuri": {
  2256. "type": "string",
  2257. "value": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents/77.instance"
  2258. },
  2259. "$segments": {
  2260. "type": "map<string,list<string>>",
  2261. "value": {
  2262. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/RHSIcon/1.instance--/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/77.instance": "M815,235L921.126948858907,323.9012268309307",
  2263. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/77.instance--/Formalisms/Workflows/Workflows.defaultIcons.pattern/__pTaskIcon/71.instance": "M921.069083311769,323.852753580855L1027.022686543724,412.6087709332554"
  2264. }
  2265. },
  2266. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink"
  2267. },
  2268. "78": {
  2269. "link-style": {
  2270. "type": "map<string,string>",
  2271. "value": {
  2272. "stroke": "#00ff00",
  2273. "stroke-dasharray": "",
  2274. "stroke-opacity": 0.2,
  2275. "stroke-width": 1,
  2276. "arrow-start": "none",
  2277. "arrow-end": "classic-wide-long"
  2278. }
  2279. },
  2280. "typename": {
  2281. "type": "string",
  2282. "value": "PatternContentsLink"
  2283. },
  2284. "position": {
  2285. "type": "list<double>",
  2286. "value": [
  2287. 903.25,
  2288. 395.27345190734866
  2289. ]
  2290. },
  2291. "orientation": {
  2292. "type": "double",
  2293. "value": 0
  2294. },
  2295. "scale": {
  2296. "type": "list<double>",
  2297. "value": [
  2298. 1,
  2299. 1
  2300. ]
  2301. },
  2302. "mapper": {
  2303. "type": "code",
  2304. "value": ""
  2305. },
  2306. "parser": {
  2307. "type": "code",
  2308. "value": ""
  2309. },
  2310. "$contents": {
  2311. "type": "map<string,*>",
  2312. "value": {
  2313. "nodes": {},
  2314. "edges": []
  2315. }
  2316. },
  2317. "$asuri": {
  2318. "type": "string",
  2319. "value": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents/78.instance"
  2320. },
  2321. "$segments": {
  2322. "type": "map<string,list<string>>",
  2323. "value": {
  2324. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/RHSIcon/1.instance--/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/78.instance": "M815,235L903.25,395.27345190734866",
  2325. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/78.instance--/Formalisms/Workflows/Workflows.defaultIcons.pattern/__pForkNodeIcon/72.instance": "M903.2861478880111,395.3391011627675L991.4996424928679,555.546254535353"
  2326. }
  2327. },
  2328. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink"
  2329. },
  2330. "79": {
  2331. "link-style": {
  2332. "type": "map<string,string>",
  2333. "value": {
  2334. "stroke": "#00ff00",
  2335. "stroke-dasharray": "",
  2336. "stroke-opacity": 0.2,
  2337. "stroke-width": 1,
  2338. "arrow-start": "none",
  2339. "arrow-end": "classic-wide-long"
  2340. }
  2341. },
  2342. "typename": {
  2343. "type": "string",
  2344. "value": "PatternContentsLink"
  2345. },
  2346. "position": {
  2347. "type": "list<double>",
  2348. "value": [
  2349. 985.2499999441206,
  2350. 314.7305081573486
  2351. ]
  2352. },
  2353. "orientation": {
  2354. "type": "double",
  2355. "value": 0
  2356. },
  2357. "scale": {
  2358. "type": "list<double>",
  2359. "value": [
  2360. 1,
  2361. 1
  2362. ]
  2363. },
  2364. "mapper": {
  2365. "type": "code",
  2366. "value": ""
  2367. },
  2368. "parser": {
  2369. "type": "code",
  2370. "value": ""
  2371. },
  2372. "$contents": {
  2373. "type": "map<string,*>",
  2374. "value": {
  2375. "nodes": {},
  2376. "edges": []
  2377. }
  2378. },
  2379. "$asuri": {
  2380. "type": "string",
  2381. "value": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents/79.instance"
  2382. },
  2383. "$segments": {
  2384. "type": "map<string,list<string>>",
  2385. "value": {
  2386. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/RHSIcon/1.instance--/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/79.instance": "M815,235L985.2499999441206,314.7305081573486",
  2387. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/79.instance--/Formalisms/Workflows/Workflows.defaultIcons.pattern/__pJoinNodeIcon/73.instance": "M985.3178820224995,314.76229830481236L1155.4993464769136,394.460710312834"
  2388. }
  2389. },
  2390. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink"
  2391. },
  2392. "80": {
  2393. "link-style": {
  2394. "type": "map<string,string>",
  2395. "value": {
  2396. "stroke": "#00ff00",
  2397. "stroke-dasharray": "",
  2398. "stroke-opacity": 0.2,
  2399. "stroke-width": 1,
  2400. "arrow-start": "none",
  2401. "arrow-end": "classic-wide-long"
  2402. }
  2403. },
  2404. "typename": {
  2405. "type": "string",
  2406. "value": "PatternContentsLink"
  2407. },
  2408. "position": {
  2409. "type": "list<double>",
  2410. "value": [
  2411. 976.01171875,
  2412. 400.64845
  2413. ]
  2414. },
  2415. "orientation": {
  2416. "type": "double",
  2417. "value": 0
  2418. },
  2419. "scale": {
  2420. "type": "list<double>",
  2421. "value": [
  2422. 1,
  2423. 1
  2424. ]
  2425. },
  2426. "mapper": {
  2427. "type": "code",
  2428. "value": ""
  2429. },
  2430. "parser": {
  2431. "type": "code",
  2432. "value": ""
  2433. },
  2434. "$contents": {
  2435. "type": "map<string,*>",
  2436. "value": {
  2437. "nodes": {},
  2438. "edges": []
  2439. }
  2440. },
  2441. "$asuri": {
  2442. "type": "string",
  2443. "value": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents/80.instance"
  2444. },
  2445. "$segments": {
  2446. "type": "map<string,list<string>>",
  2447. "value": {
  2448. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/RHSIcon/1.instance--/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/80.instance": "M815,235L976.01171875,400.64845",
  2449. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/80.instance--/Formalisms/Workflows/Workflows.defaultIcons.pattern/__pTaskIcon/74.instance": "M976.0638594980514,400.70209227003863L1137.0230303267413,566.2964811011789"
  2450. }
  2451. },
  2452. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink"
  2453. },
  2454. "85": {
  2455. "typename": {
  2456. "type": "string",
  2457. "value": "LHSIcon"
  2458. },
  2459. "position": {
  2460. "type": "list<double>",
  2461. "value": [
  2462. 365,
  2463. 238
  2464. ]
  2465. },
  2466. "orientation": {
  2467. "type": "double",
  2468. "value": 0
  2469. },
  2470. "scale": {
  2471. "type": "list<double>",
  2472. "value": [
  2473. 1,
  2474. 1
  2475. ]
  2476. },
  2477. "mapper": {
  2478. "type": "code",
  2479. "value": ""
  2480. },
  2481. "parser": {
  2482. "type": "code",
  2483. "value": ""
  2484. },
  2485. "$contents": {
  2486. "type": "map<string,*>",
  2487. "value": {
  2488. "nodes": {
  2489. "4": {
  2490. "segments": {
  2491. "type": "string",
  2492. "value": "m0,0 l350,0 l100,250 l-100,250 l-350,0z"
  2493. },
  2494. "style": {
  2495. "type": "map<string,string>",
  2496. "value": {
  2497. "stroke": "#000000",
  2498. "stroke-dasharray": "",
  2499. "fill": "#ffffff",
  2500. "fill-opacity": 0.75,
  2501. "stroke-width": 2,
  2502. "arrow-start": "none",
  2503. "arrow-end": "none"
  2504. }
  2505. },
  2506. "mapper": {
  2507. "type": "code",
  2508. "value": ""
  2509. },
  2510. "parser": {
  2511. "type": "code",
  2512. "value": ""
  2513. },
  2514. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2515. "position": {
  2516. "type": "list<double>",
  2517. "value": [
  2518. 1,
  2519. 0
  2520. ]
  2521. },
  2522. "orientation": {
  2523. "type": "double",
  2524. "value": 0
  2525. },
  2526. "scale": {
  2527. "type": "list<double>",
  2528. "value": [
  2529. 1,
  2530. 1
  2531. ]
  2532. }
  2533. }
  2534. },
  2535. "edges": []
  2536. }
  2537. },
  2538. "$asuri": {
  2539. "type": "string",
  2540. "value": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/LHS/85.instance"
  2541. },
  2542. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/LHSIcon"
  2543. },
  2544. "86": {
  2545. "link-style": {
  2546. "type": "map<string,string>",
  2547. "value": {
  2548. "stroke": "#00ff00",
  2549. "stroke-dasharray": "",
  2550. "stroke-opacity": 0.2,
  2551. "stroke-width": 1,
  2552. "arrow-start": "none",
  2553. "arrow-end": "classic-wide-long"
  2554. }
  2555. },
  2556. "typename": {
  2557. "type": "string",
  2558. "value": "PatternContentsLink"
  2559. },
  2560. "position": {
  2561. "type": "list<double>",
  2562. "value": [
  2563. 424.38671875,
  2564. 318.90625
  2565. ]
  2566. },
  2567. "orientation": {
  2568. "type": "double",
  2569. "value": 0
  2570. },
  2571. "scale": {
  2572. "type": "list<double>",
  2573. "value": [
  2574. 1,
  2575. 1
  2576. ]
  2577. },
  2578. "mapper": {
  2579. "type": "code",
  2580. "value": ""
  2581. },
  2582. "parser": {
  2583. "type": "code",
  2584. "value": ""
  2585. },
  2586. "$contents": {
  2587. "type": "map<string,*>",
  2588. "value": {
  2589. "nodes": {},
  2590. "edges": []
  2591. }
  2592. },
  2593. "$asuri": {
  2594. "type": "string",
  2595. "value": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents/86.instance"
  2596. },
  2597. "$segments": {
  2598. "type": "map<string,list<string>>",
  2599. "value": {
  2600. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/LHSIcon/85.instance--/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/86.instance": "M366,238L424.38671875,318.90625",
  2601. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/86.instance--/Formalisms/Workflows/Workflows.defaultIcons.pattern/__pTaskIcon/65.instance": "M424.47456197457984,319.0279740160231L482.7730838871195,399.8120100000013"
  2602. }
  2603. },
  2604. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink"
  2605. },
  2606. "87": {
  2607. "link-style": {
  2608. "type": "map<string,string>",
  2609. "value": {
  2610. "stroke": "#00ff00",
  2611. "stroke-dasharray": "",
  2612. "stroke-opacity": 0.2,
  2613. "stroke-width": 1,
  2614. "arrow-start": "none",
  2615. "arrow-end": "classic-wide-long"
  2616. }
  2617. },
  2618. "typename": {
  2619. "type": "string",
  2620. "value": "PatternContentsLink"
  2621. },
  2622. "position": {
  2623. "type": "list<double>",
  2624. "value": [
  2625. 406.25,
  2626. 390.5
  2627. ]
  2628. },
  2629. "orientation": {
  2630. "type": "double",
  2631. "value": 0
  2632. },
  2633. "scale": {
  2634. "type": "list<double>",
  2635. "value": [
  2636. 1,
  2637. 1
  2638. ]
  2639. },
  2640. "mapper": {
  2641. "type": "code",
  2642. "value": ""
  2643. },
  2644. "parser": {
  2645. "type": "code",
  2646. "value": ""
  2647. },
  2648. "$contents": {
  2649. "type": "map<string,*>",
  2650. "value": {
  2651. "nodes": {},
  2652. "edges": []
  2653. }
  2654. },
  2655. "$asuri": {
  2656. "type": "string",
  2657. "value": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents/87.instance"
  2658. },
  2659. "$segments": {
  2660. "type": "map<string,list<string>>",
  2661. "value": {
  2662. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/LHSIcon/85.instance--/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/87.instance": "M366,238L406.25,390.5",
  2663. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/87.instance--/Formalisms/Workflows/Workflows.defaultIcons.pattern/__pForkNodeIcon/66.instance": "M406.26909365015706,390.57234240121636L446.4997810914588,542.9991705949682"
  2664. }
  2665. },
  2666. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink"
  2667. },
  2668. "88": {
  2669. "link-style": {
  2670. "type": "map<string,string>",
  2671. "value": {
  2672. "stroke": "#00ff00",
  2673. "stroke-dasharray": "",
  2674. "stroke-opacity": 0.2,
  2675. "stroke-width": 1,
  2676. "arrow-start": "none",
  2677. "arrow-end": "classic-wide-long"
  2678. }
  2679. },
  2680. "typename": {
  2681. "type": "string",
  2682. "value": "PatternContentsLink"
  2683. },
  2684. "position": {
  2685. "type": "list<double>",
  2686. "value": [
  2687. 488.24999994412065,
  2688. 309.95705625
  2689. ]
  2690. },
  2691. "orientation": {
  2692. "type": "double",
  2693. "value": 0
  2694. },
  2695. "scale": {
  2696. "type": "list<double>",
  2697. "value": [
  2698. 1,
  2699. 1
  2700. ]
  2701. },
  2702. "mapper": {
  2703. "type": "code",
  2704. "value": ""
  2705. },
  2706. "parser": {
  2707. "type": "code",
  2708. "value": ""
  2709. },
  2710. "$contents": {
  2711. "type": "map<string,*>",
  2712. "value": {
  2713. "nodes": {},
  2714. "edges": []
  2715. }
  2716. },
  2717. "$asuri": {
  2718. "type": "string",
  2719. "value": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents/88.instance"
  2720. },
  2721. "$segments": {
  2722. "type": "map<string,list<string>>",
  2723. "value": {
  2724. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/LHSIcon/85.instance--/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/88.instance": "M366,238L488.24999994412065,309.95705625",
  2725. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/88.instance--/Formalisms/Workflows/Workflows.defaultIcons.pattern/__pJoinNodeIcon/67.instance": "M488.31452200438343,309.9950343074382L610.4991762002659,381.91362767249893"
  2726. }
  2727. },
  2728. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink"
  2729. },
  2730. "89": {
  2731. "link-style": {
  2732. "type": "map<string,string>",
  2733. "value": {
  2734. "stroke": "#00ff00",
  2735. "stroke-dasharray": "",
  2736. "stroke-opacity": 0.2,
  2737. "stroke-width": 1,
  2738. "arrow-start": "none",
  2739. "arrow-end": "classic-wide-long"
  2740. }
  2741. },
  2742. "typename": {
  2743. "type": "string",
  2744. "value": "PatternContentsLink"
  2745. },
  2746. "position": {
  2747. "type": "list<double>",
  2748. "value": [
  2749. 479.47438888559867,
  2750. 395.87197163868177
  2751. ]
  2752. },
  2753. "orientation": {
  2754. "type": "double",
  2755. "value": 0
  2756. },
  2757. "scale": {
  2758. "type": "list<double>",
  2759. "value": [
  2760. 1,
  2761. 1
  2762. ]
  2763. },
  2764. "mapper": {
  2765. "type": "code",
  2766. "value": ""
  2767. },
  2768. "parser": {
  2769. "type": "code",
  2770. "value": ""
  2771. },
  2772. "$contents": {
  2773. "type": "map<string,*>",
  2774. "value": {
  2775. "nodes": {},
  2776. "edges": []
  2777. }
  2778. },
  2779. "$asuri": {
  2780. "type": "string",
  2781. "value": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents/89.instance"
  2782. },
  2783. "$segments": {
  2784. "type": "map<string,list<string>>",
  2785. "value": {
  2786. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/LHSIcon/85.instance--/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/89.instance": "M366,238L479.47438888559867,395.87197163868177",
  2787. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/89.instance--/Formalisms/Workflows/Workflows.defaultIcons.pattern/__pTaskIcon/69.instance": "M479.43041824833347,395.8107972074516L592.7730309924882,553.4994344438157"
  2788. }
  2789. },
  2790. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink"
  2791. }
  2792. },
  2793. "edges": [],
  2794. "metamodels": [
  2795. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons",
  2796. "/Formalisms/Workflows/Workflows.defaultIcons.pattern"
  2797. ]
  2798. },
  2799. "asm": {
  2800. "nodes": {
  2801. "1": {
  2802. "Action": {
  2803. "type": "code",
  2804. "value": "gen = getAttr('$atompmId','3')\nhttpReq(\n 'PUT',\n None,\n '/GET/console',\n {'text':'CLIENT_BDAPI :: {\"func\":\"_highlight\"}'})\nhttpReq(\n 'PUT',\n None,\n '/GET/console',\n {'text':'CLIENT_BDAPI :: {\"func\":\"_highlight\",\"args\":{\"asid\":'+gen+',\"timeout\":100000}}'})"
  2805. },
  2806. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/RHS"
  2807. },
  2808. "65": {
  2809. "__pLabel": {
  2810. "type": "string",
  2811. "value": "0"
  2812. },
  2813. "__pPivotIn": {
  2814. "type": "string",
  2815. "value": ""
  2816. },
  2817. "__pPivotOut": {
  2818. "type": "string",
  2819. "value": ""
  2820. },
  2821. "__pMatchSubtypes": {
  2822. "type": "boolean",
  2823. "value": true
  2824. },
  2825. "name": {
  2826. "type": "code",
  2827. "value": "result = True"
  2828. },
  2829. "current": {
  2830. "type": "code",
  2831. "value": "result = True"
  2832. },
  2833. "$type": "/Formalisms/Workflows/Workflows.pattern/__pTask"
  2834. },
  2835. "66": {
  2836. "__pLabel": {
  2837. "type": "string",
  2838. "value": "3"
  2839. },
  2840. "__pPivotIn": {
  2841. "type": "string",
  2842. "value": ""
  2843. },
  2844. "__pPivotOut": {
  2845. "type": "string",
  2846. "value": ""
  2847. },
  2848. "__pMatchSubtypes": {
  2849. "type": "boolean",
  2850. "value": false
  2851. },
  2852. "id": {
  2853. "type": "code",
  2854. "value": "result = True"
  2855. },
  2856. "current": {
  2857. "type": "code",
  2858. "value": "result = True"
  2859. },
  2860. "$type": "/Formalisms/Workflows/Workflows.pattern/__pForkNode"
  2861. },
  2862. "67": {
  2863. "__pLabel": {
  2864. "type": "string",
  2865. "value": "1"
  2866. },
  2867. "__pPivotIn": {
  2868. "type": "string",
  2869. "value": ""
  2870. },
  2871. "__pPivotOut": {
  2872. "type": "string",
  2873. "value": ""
  2874. },
  2875. "__pMatchSubtypes": {
  2876. "type": "boolean",
  2877. "value": false
  2878. },
  2879. "id": {
  2880. "type": "code",
  2881. "value": "result = True"
  2882. },
  2883. "current": {
  2884. "type": "code",
  2885. "value": "result = True"
  2886. },
  2887. "$type": "/Formalisms/Workflows/Workflows.pattern/__pJoinNode"
  2888. },
  2889. "68": {
  2890. "__pLabel": {
  2891. "type": "string",
  2892. "value": "2"
  2893. },
  2894. "__pPivotIn": {
  2895. "type": "string",
  2896. "value": ""
  2897. },
  2898. "__pPivotOut": {
  2899. "type": "string",
  2900. "value": ""
  2901. },
  2902. "__pMatchSubtypes": {
  2903. "type": "boolean",
  2904. "value": false
  2905. },
  2906. "$type": "/Formalisms/Workflows/Workflows.pattern/__pLink"
  2907. },
  2908. "69": {
  2909. "__pLabel": {
  2910. "type": "string",
  2911. "value": "4"
  2912. },
  2913. "__pPivotIn": {
  2914. "type": "string",
  2915. "value": ""
  2916. },
  2917. "__pPivotOut": {
  2918. "type": "string",
  2919. "value": ""
  2920. },
  2921. "__pMatchSubtypes": {
  2922. "type": "boolean",
  2923. "value": true
  2924. },
  2925. "name": {
  2926. "type": "code",
  2927. "value": "result = True"
  2928. },
  2929. "current": {
  2930. "type": "code",
  2931. "value": "result = True"
  2932. },
  2933. "$type": "/Formalisms/Workflows/Workflows.pattern/__pTask"
  2934. },
  2935. "70": {
  2936. "__pLabel": {
  2937. "type": "string",
  2938. "value": "7"
  2939. },
  2940. "__pPivotIn": {
  2941. "type": "string",
  2942. "value": ""
  2943. },
  2944. "__pPivotOut": {
  2945. "type": "string",
  2946. "value": ""
  2947. },
  2948. "__pMatchSubtypes": {
  2949. "type": "boolean",
  2950. "value": false
  2951. },
  2952. "chosen": {
  2953. "type": "code",
  2954. "value": "result = getAttr() == False"
  2955. },
  2956. "$type": "/Formalisms/Workflows/Workflows.pattern/__pFlow"
  2957. },
  2958. "71": {
  2959. "__pLabel": {
  2960. "type": "string",
  2961. "value": "0"
  2962. },
  2963. "__pPivotIn": {
  2964. "type": "string",
  2965. "value": ""
  2966. },
  2967. "__pPivotOut": {
  2968. "type": "string",
  2969. "value": ""
  2970. },
  2971. "__pMatchSubtypes": {
  2972. "type": "boolean"
  2973. },
  2974. "name": {
  2975. "type": "code",
  2976. "value": "result = getAttr()"
  2977. },
  2978. "current": {
  2979. "type": "code",
  2980. "value": "result = getAttr()"
  2981. },
  2982. "$type": "/Formalisms/Workflows/Workflows.pattern/__pTask"
  2983. },
  2984. "72": {
  2985. "__pLabel": {
  2986. "type": "string",
  2987. "value": "3"
  2988. },
  2989. "__pPivotIn": {
  2990. "type": "string",
  2991. "value": ""
  2992. },
  2993. "__pPivotOut": {
  2994. "type": "string",
  2995. "value": ""
  2996. },
  2997. "__pMatchSubtypes": {
  2998. "type": "boolean"
  2999. },
  3000. "id": {
  3001. "type": "code",
  3002. "value": "result = getAttr()"
  3003. },
  3004. "current": {
  3005. "type": "code",
  3006. "value": "result = True"
  3007. },
  3008. "$type": "/Formalisms/Workflows/Workflows.pattern/__pForkNode"
  3009. },
  3010. "73": {
  3011. "__pLabel": {
  3012. "type": "string",
  3013. "value": "1"
  3014. },
  3015. "__pPivotIn": {
  3016. "type": "string",
  3017. "value": ""
  3018. },
  3019. "__pPivotOut": {
  3020. "type": "string",
  3021. "value": ""
  3022. },
  3023. "__pMatchSubtypes": {
  3024. "type": "boolean"
  3025. },
  3026. "id": {
  3027. "type": "code",
  3028. "value": "result = getAttr()"
  3029. },
  3030. "current": {
  3031. "type": "code",
  3032. "value": "result = False"
  3033. },
  3034. "$type": "/Formalisms/Workflows/Workflows.pattern/__pJoinNode"
  3035. },
  3036. "74": {
  3037. "__pLabel": {
  3038. "type": "string",
  3039. "value": "4"
  3040. },
  3041. "__pPivotIn": {
  3042. "type": "string",
  3043. "value": ""
  3044. },
  3045. "__pPivotOut": {
  3046. "type": "string",
  3047. "value": ""
  3048. },
  3049. "__pMatchSubtypes": {
  3050. "type": "boolean"
  3051. },
  3052. "name": {
  3053. "type": "code",
  3054. "value": "result = getAttr()"
  3055. },
  3056. "current": {
  3057. "type": "code",
  3058. "value": "result = getAttr()"
  3059. },
  3060. "$type": "/Formalisms/Workflows/Workflows.pattern/__pTask"
  3061. },
  3062. "75": {
  3063. "__pLabel": {
  3064. "type": "string",
  3065. "value": "7"
  3066. },
  3067. "__pPivotIn": {
  3068. "type": "string",
  3069. "value": ""
  3070. },
  3071. "__pPivotOut": {
  3072. "type": "string",
  3073. "value": ""
  3074. },
  3075. "__pMatchSubtypes": {
  3076. "type": "boolean"
  3077. },
  3078. "chosen": {
  3079. "type": "code",
  3080. "value": "result = getAttr()"
  3081. },
  3082. "$type": "/Formalisms/Workflows/Workflows.pattern/__pFlow"
  3083. },
  3084. "76": {
  3085. "__pLabel": {
  3086. "type": "string",
  3087. "value": "2"
  3088. },
  3089. "__pPivotIn": {
  3090. "type": "string",
  3091. "value": ""
  3092. },
  3093. "__pPivotOut": {
  3094. "type": "string",
  3095. "value": ""
  3096. },
  3097. "__pMatchSubtypes": {
  3098. "type": "boolean"
  3099. },
  3100. "$type": "/Formalisms/Workflows/Workflows.pattern/__pLink"
  3101. },
  3102. "77": {
  3103. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents"
  3104. },
  3105. "78": {
  3106. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents"
  3107. },
  3108. "79": {
  3109. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents"
  3110. },
  3111. "80": {
  3112. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents"
  3113. },
  3114. "85": {
  3115. "Condition": {
  3116. "type": "code",
  3117. "value": "result = (getAttr('id','1') == getAttr('id','3')) and (getAttr('current','1') == True or getAttr('current','3') == True) "
  3118. },
  3119. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/LHS"
  3120. },
  3121. "86": {
  3122. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents"
  3123. },
  3124. "87": {
  3125. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents"
  3126. },
  3127. "88": {
  3128. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents"
  3129. },
  3130. "89": {
  3131. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents"
  3132. }
  3133. },
  3134. "edges": [
  3135. {
  3136. "src": "65",
  3137. "dest": "68"
  3138. },
  3139. {
  3140. "src": "68",
  3141. "dest": "67"
  3142. },
  3143. {
  3144. "src": "66",
  3145. "dest": "70"
  3146. },
  3147. {
  3148. "src": "70",
  3149. "dest": "69"
  3150. },
  3151. {
  3152. "src": "72",
  3153. "dest": "75"
  3154. },
  3155. {
  3156. "src": "75",
  3157. "dest": "74"
  3158. },
  3159. {
  3160. "src": "71",
  3161. "dest": "76"
  3162. },
  3163. {
  3164. "src": "76",
  3165. "dest": "73"
  3166. },
  3167. {
  3168. "src": "1",
  3169. "dest": "77"
  3170. },
  3171. {
  3172. "src": "77",
  3173. "dest": "71"
  3174. },
  3175. {
  3176. "src": "1",
  3177. "dest": "78"
  3178. },
  3179. {
  3180. "src": "78",
  3181. "dest": "72"
  3182. },
  3183. {
  3184. "src": "1",
  3185. "dest": "79"
  3186. },
  3187. {
  3188. "src": "79",
  3189. "dest": "73"
  3190. },
  3191. {
  3192. "src": "1",
  3193. "dest": "80"
  3194. },
  3195. {
  3196. "src": "80",
  3197. "dest": "74"
  3198. },
  3199. {
  3200. "src": "85",
  3201. "dest": "86"
  3202. },
  3203. {
  3204. "src": "86",
  3205. "dest": "65"
  3206. },
  3207. {
  3208. "src": "85",
  3209. "dest": "87"
  3210. },
  3211. {
  3212. "src": "87",
  3213. "dest": "66"
  3214. },
  3215. {
  3216. "src": "85",
  3217. "dest": "88"
  3218. },
  3219. {
  3220. "src": "88",
  3221. "dest": "67"
  3222. },
  3223. {
  3224. "src": "85",
  3225. "dest": "89"
  3226. },
  3227. {
  3228. "src": "89",
  3229. "dest": "69"
  3230. }
  3231. ],
  3232. "metamodels": [
  3233. "/Formalisms/__Transformations__/TransformationRule/TransformationRule",
  3234. "/Formalisms/Workflows/Workflows.pattern"
  3235. ]
  3236. }
  3237. }