LY_SC_UnitTest_OperatorDiv.scriptcanvas 180 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099
  1. {
  2. "Type": "JsonSerialization",
  3. "Version": 1,
  4. "ClassName": "ScriptCanvasData",
  5. "ClassData": {
  6. "m_scriptCanvas": {
  7. "Id": {
  8. "id": 1164356061857
  9. },
  10. "Name": "scriptcanvas/unittests/ly_sc_unittest_operatoradd.scriptcanvas",
  11. "Components": {
  12. "Component_[17409414499611697377]": {
  13. "$type": "EditorGraphVariableManagerComponent",
  14. "Id": 17409414499611697377,
  15. "m_variableData": {
  16. "m_nameVariableMap": [
  17. {
  18. "Key": {
  19. "m_id": "{0343B7B4-EC1F-44A6-9A9C-BBEF72A7F036}"
  20. },
  21. "Value": {
  22. "Datum": {
  23. "isOverloadedStorage": false,
  24. "scriptCanvasType": {
  25. "m_type": 8
  26. },
  27. "isNullPointer": false,
  28. "$type": "Vector3",
  29. "value": [
  30. 1.0,
  31. 1.0,
  32. 1.0
  33. ],
  34. "label": "Vector3"
  35. },
  36. "VariableId": {
  37. "m_id": "{0343B7B4-EC1F-44A6-9A9C-BBEF72A7F036}"
  38. },
  39. "VariableName": "Ones"
  40. }
  41. },
  42. {
  43. "Key": {
  44. "m_id": "{3AB32B2F-B18D-4374-85A8-7EEFB080C678}"
  45. },
  46. "Value": {
  47. "Datum": {
  48. "isOverloadedStorage": false,
  49. "scriptCanvasType": {
  50. "m_type": 3
  51. },
  52. "isNullPointer": false,
  53. "$type": "double",
  54. "value": 3.0,
  55. "label": "Three"
  56. },
  57. "VariableId": {
  58. "m_id": "{3AB32B2F-B18D-4374-85A8-7EEFB080C678}"
  59. },
  60. "VariableName": "Three"
  61. }
  62. },
  63. {
  64. "Key": {
  65. "m_id": "{45CF5068-A340-4832-880D-1BEF83473BCC}"
  66. },
  67. "Value": {
  68. "Datum": {
  69. "isOverloadedStorage": false,
  70. "scriptCanvasType": {
  71. "m_type": 9
  72. },
  73. "isNullPointer": false,
  74. "$type": "Vector2",
  75. "value": [
  76. 200.0,
  77. 200.0
  78. ]
  79. },
  80. "VariableId": {
  81. "m_id": "{45CF5068-A340-4832-880D-1BEF83473BCC}"
  82. },
  83. "VariableName": "vec2"
  84. }
  85. },
  86. {
  87. "Key": {
  88. "m_id": "{7A690F4B-286D-4201-9C04-71C952BCE327}"
  89. },
  90. "Value": {
  91. "Datum": {
  92. "isOverloadedStorage": false,
  93. "scriptCanvasType": {
  94. "m_type": 8
  95. },
  96. "isNullPointer": false,
  97. "$type": "Vector3",
  98. "value": [
  99. 100.0,
  100. 200.0,
  101. 300.0
  102. ]
  103. },
  104. "VariableId": {
  105. "m_id": "{7A690F4B-286D-4201-9C04-71C952BCE327}"
  106. },
  107. "VariableName": "vec3"
  108. }
  109. },
  110. {
  111. "Key": {
  112. "m_id": "{7E876596-0804-4B12-8652-3B1C7D0387F5}"
  113. },
  114. "Value": {
  115. "Datum": {
  116. "isOverloadedStorage": false,
  117. "scriptCanvasType": {
  118. "m_type": 5
  119. },
  120. "isNullPointer": false,
  121. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  122. "value": "world!",
  123. "label": "String"
  124. },
  125. "VariableId": {
  126. "m_id": "{7E876596-0804-4B12-8652-3B1C7D0387F5}"
  127. },
  128. "VariableName": "world!"
  129. }
  130. },
  131. {
  132. "Key": {
  133. "m_id": "{A709EADF-A7F1-4703-BFDD-853FC5B0E924}"
  134. },
  135. "Value": {
  136. "Datum": {
  137. "isOverloadedStorage": false,
  138. "scriptCanvasType": {
  139. "m_type": 5
  140. },
  141. "isNullPointer": false,
  142. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  143. "value": "Hello, world!",
  144. "label": "Hello, world!"
  145. },
  146. "VariableId": {
  147. "m_id": "{A709EADF-A7F1-4703-BFDD-853FC5B0E924}"
  148. },
  149. "VariableName": "Hello, world!"
  150. }
  151. },
  152. {
  153. "Key": {
  154. "m_id": "{B73E8B7F-08AF-45BD-B4C2-A447DC9A5192}"
  155. },
  156. "Value": {
  157. "Datum": {
  158. "isOverloadedStorage": false,
  159. "scriptCanvasType": {
  160. "m_type": 5
  161. },
  162. "isNullPointer": false,
  163. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  164. "value": "Hello, ",
  165. "label": "String"
  166. },
  167. "VariableId": {
  168. "m_id": "{B73E8B7F-08AF-45BD-B4C2-A447DC9A5192}"
  169. },
  170. "VariableName": "Hello, "
  171. }
  172. },
  173. {
  174. "Key": {
  175. "m_id": "{B8EB2D8E-2292-42C3-9694-15D365B53949}"
  176. },
  177. "Value": {
  178. "Datum": {
  179. "isOverloadedStorage": false,
  180. "scriptCanvasType": {
  181. "m_type": 8
  182. },
  183. "isNullPointer": false,
  184. "$type": "Vector3",
  185. "value": [
  186. 2.0,
  187. 2.0,
  188. 2.0
  189. ]
  190. },
  191. "VariableId": {
  192. "m_id": "{B8EB2D8E-2292-42C3-9694-15D365B53949}"
  193. }
  194. }
  195. },
  196. {
  197. "Key": {
  198. "m_id": "{E0076D7E-786A-4CDF-B6B7-34C8A7F116FE}"
  199. },
  200. "Value": {
  201. "Datum": {
  202. "isOverloadedStorage": false,
  203. "scriptCanvasType": {
  204. "m_type": 3
  205. },
  206. "isNullPointer": false,
  207. "$type": "double",
  208. "value": 2.0,
  209. "label": "Two"
  210. },
  211. "VariableId": {
  212. "m_id": "{E0076D7E-786A-4CDF-B6B7-34C8A7F116FE}"
  213. },
  214. "VariableName": "Two"
  215. }
  216. },
  217. {
  218. "Key": {
  219. "m_id": "{FAAD986B-E187-41C5-A9B3-F8732F6570E3}"
  220. },
  221. "Value": {
  222. "Datum": {
  223. "isOverloadedStorage": false,
  224. "scriptCanvasType": {
  225. "m_type": 10
  226. },
  227. "isNullPointer": false,
  228. "$type": "Vector4",
  229. "value": [
  230. 200.0,
  231. 300.0,
  232. 400.0,
  233. 500.0
  234. ]
  235. },
  236. "VariableId": {
  237. "m_id": "{FAAD986B-E187-41C5-A9B3-F8732F6570E3}"
  238. },
  239. "VariableName": "vec4"
  240. }
  241. },
  242. {
  243. "Key": {
  244. "m_id": "{FCD90ACD-882A-4EF8-83DB-21849C345B1B}"
  245. },
  246. "Value": {
  247. "Datum": {
  248. "isOverloadedStorage": false,
  249. "scriptCanvasType": {
  250. "m_type": 3
  251. },
  252. "isNullPointer": false,
  253. "$type": "double",
  254. "value": 1.0,
  255. "label": "Number"
  256. },
  257. "VariableId": {
  258. "m_id": "{FCD90ACD-882A-4EF8-83DB-21849C345B1B}"
  259. },
  260. "VariableName": "One"
  261. }
  262. }
  263. ]
  264. }
  265. },
  266. "Component_[208813563851134691]": {
  267. "$type": "EditorGraph",
  268. "Id": 208813563851134691,
  269. "m_graphData": {
  270. "m_nodes": [
  271. {
  272. "Id": {
  273. "id": 20487413926561
  274. },
  275. "Name": "SC-Node(OperatorDiv)",
  276. "Components": {
  277. "Component_[1006573301241565267]": {
  278. "$type": "OperatorDiv",
  279. "Id": 1006573301241565267,
  280. "Slots": [
  281. {
  282. "id": {
  283. "m_id": "{D8B7C3B3-40C6-4C52-B832-23FDCAF81936}"
  284. },
  285. "contracts": [
  286. {
  287. "$type": "SlotTypeContract"
  288. }
  289. ],
  290. "slotName": "In",
  291. "Descriptor": {
  292. "ConnectionType": 1,
  293. "SlotType": 1
  294. }
  295. },
  296. {
  297. "id": {
  298. "m_id": "{239B05FD-12A7-46D8-996C-80008AA16EA6}"
  299. },
  300. "contracts": [
  301. {
  302. "$type": "SlotTypeContract"
  303. }
  304. ],
  305. "slotName": "Out",
  306. "Descriptor": {
  307. "ConnectionType": 2,
  308. "SlotType": 1
  309. }
  310. },
  311. {
  312. "id": {
  313. "m_id": "{041D2536-27B7-412D-A501-18A910BB8EED}"
  314. },
  315. "DynamicTypeOverride": 3,
  316. "contracts": [
  317. {
  318. "$type": "SlotTypeContract"
  319. },
  320. {
  321. "$type": "MathOperatorContract",
  322. "OperatorType": "Divide",
  323. "NativeTypes": [
  324. {
  325. "m_type": 3
  326. },
  327. {
  328. "m_type": 8
  329. },
  330. {
  331. "m_type": 9
  332. },
  333. {
  334. "m_type": 10
  335. }
  336. ]
  337. }
  338. ],
  339. "slotName": "Vector4 1",
  340. "toolTip": "An operand to use in performing the specified Operation",
  341. "DisplayDataType": {
  342. "m_type": 10
  343. },
  344. "DisplayGroup": {
  345. "Value": 1114760223
  346. },
  347. "Descriptor": {
  348. "ConnectionType": 1,
  349. "SlotType": 2
  350. },
  351. "DynamicGroup": {
  352. "Value": 1114760223
  353. },
  354. "DataType": 1,
  355. "IsReference": true,
  356. "VariableReference": {
  357. "m_id": "{FAAD986B-E187-41C5-A9B3-F8732F6570E3}"
  358. }
  359. },
  360. {
  361. "id": {
  362. "m_id": "{DF5D2BF9-EA42-4DA9-9685-41FE5FED0F2F}"
  363. },
  364. "DynamicTypeOverride": 3,
  365. "contracts": [
  366. {
  367. "$type": "SlotTypeContract"
  368. },
  369. {
  370. "$type": "MathOperatorContract",
  371. "OperatorType": "Divide",
  372. "NativeTypes": [
  373. {
  374. "m_type": 3
  375. },
  376. {
  377. "m_type": 8
  378. },
  379. {
  380. "m_type": 9
  381. },
  382. {
  383. "m_type": 10
  384. }
  385. ]
  386. }
  387. ],
  388. "slotName": "Result",
  389. "toolTip": "The result of the specified operation",
  390. "DisplayDataType": {
  391. "m_type": 10
  392. },
  393. "DisplayGroup": {
  394. "Value": 1114760223
  395. },
  396. "Descriptor": {
  397. "ConnectionType": 2,
  398. "SlotType": 2
  399. },
  400. "DynamicGroup": {
  401. "Value": 1114760223
  402. },
  403. "DataType": 1
  404. },
  405. {
  406. "id": {
  407. "m_id": "{6AA36B8D-8249-48C0-AD96-8F381D82EE3C}"
  408. },
  409. "DynamicTypeOverride": 3,
  410. "contracts": [
  411. {
  412. "$type": "SlotTypeContract"
  413. },
  414. {
  415. "$type": "MathOperatorContract",
  416. "OperatorType": "Divide",
  417. "NativeTypes": [
  418. {
  419. "m_type": 3
  420. },
  421. {
  422. "m_type": 8
  423. },
  424. {
  425. "m_type": 9
  426. },
  427. {
  428. "m_type": 10
  429. }
  430. ]
  431. }
  432. ],
  433. "slotName": "Vector4 2",
  434. "toolTip": "An operand to use in performing the specified Operation",
  435. "DisplayDataType": {
  436. "m_type": 10
  437. },
  438. "DisplayGroup": {
  439. "Value": 1114760223
  440. },
  441. "Descriptor": {
  442. "ConnectionType": 1,
  443. "SlotType": 2
  444. },
  445. "DynamicGroup": {
  446. "Value": 1114760223
  447. },
  448. "DataType": 1
  449. }
  450. ],
  451. "Datums": [
  452. {
  453. "isOverloadedStorage": false,
  454. "scriptCanvasType": {
  455. "m_type": 10
  456. },
  457. "isNullPointer": false,
  458. "$type": "Vector4",
  459. "value": [
  460. 0.0,
  461. 0.0,
  462. 0.0,
  463. 0.0
  464. ],
  465. "label": "Vector4 1"
  466. },
  467. {
  468. "isOverloadedStorage": false,
  469. "scriptCanvasType": {
  470. "m_type": 10
  471. },
  472. "isNullPointer": false,
  473. "$type": "Vector4",
  474. "value": [
  475. 200.0,
  476. 300.0,
  477. 400.0,
  478. 500.0
  479. ],
  480. "label": "Vector4 2"
  481. }
  482. ]
  483. }
  484. }
  485. },
  486. {
  487. "Id": {
  488. "id": 1185830898337
  489. },
  490. "Name": "SC Node(GetVariable)",
  491. "Components": {
  492. "Component_[13406480433074765207]": {
  493. "$type": "GetVariableNode",
  494. "Id": 13406480433074765207,
  495. "Slots": [
  496. {
  497. "id": {
  498. "m_id": "{1BD063B0-4261-493F-83FD-6FE9F6079DE0}"
  499. },
  500. "contracts": [
  501. {
  502. "$type": "SlotTypeContract"
  503. }
  504. ],
  505. "slotName": "In",
  506. "toolTip": "When signaled sends the property referenced by this node to a Data Output slot",
  507. "Descriptor": {
  508. "ConnectionType": 1,
  509. "SlotType": 1
  510. }
  511. },
  512. {
  513. "id": {
  514. "m_id": "{144D13E0-3DA3-4ECD-BAA8-2BAD5162B0D0}"
  515. },
  516. "contracts": [
  517. {
  518. "$type": "SlotTypeContract"
  519. }
  520. ],
  521. "slotName": "Out",
  522. "toolTip": "Signaled after the referenced property has been pushed to the Data Output slot",
  523. "Descriptor": {
  524. "ConnectionType": 2,
  525. "SlotType": 1
  526. }
  527. },
  528. {
  529. "id": {
  530. "m_id": "{11BAE3AD-2942-4B3B-9222-65AC043869DD}"
  531. },
  532. "contracts": [
  533. {
  534. "$type": "SlotTypeContract"
  535. }
  536. ],
  537. "slotName": "Number",
  538. "DisplayDataType": {
  539. "m_type": 3
  540. },
  541. "Descriptor": {
  542. "ConnectionType": 2,
  543. "SlotType": 2
  544. }
  545. }
  546. ],
  547. "m_variableId": {
  548. "m_id": "{FCD90ACD-882A-4EF8-83DB-21849C345B1B}"
  549. },
  550. "m_variableDataOutSlotId": {
  551. "m_id": "{11BAE3AD-2942-4B3B-9222-65AC043869DD}"
  552. }
  553. }
  554. }
  555. },
  556. {
  557. "Id": {
  558. "id": 1181535931041
  559. },
  560. "Name": "SC-Node(OperatorDiv)",
  561. "Components": {
  562. "Component_[16671523985828039555]": {
  563. "$type": "OperatorDiv",
  564. "Id": 16671523985828039555,
  565. "Slots": [
  566. {
  567. "id": {
  568. "m_id": "{3509781E-19F1-4EC5-A585-95223D9D9C82}"
  569. },
  570. "contracts": [
  571. {
  572. "$type": "SlotTypeContract"
  573. }
  574. ],
  575. "slotName": "In",
  576. "Descriptor": {
  577. "ConnectionType": 1,
  578. "SlotType": 1
  579. }
  580. },
  581. {
  582. "id": {
  583. "m_id": "{F0DEE82C-C16D-4BE3-A7BB-388725C81697}"
  584. },
  585. "contracts": [
  586. {
  587. "$type": "SlotTypeContract"
  588. }
  589. ],
  590. "slotName": "Out",
  591. "Descriptor": {
  592. "ConnectionType": 2,
  593. "SlotType": 1
  594. }
  595. },
  596. {
  597. "id": {
  598. "m_id": "{30CF30E8-0389-401D-A204-A0106B6ED25F}"
  599. },
  600. "DynamicTypeOverride": 3,
  601. "contracts": [
  602. {
  603. "$type": "SlotTypeContract"
  604. },
  605. null,
  606. {
  607. "$type": "MathOperatorContract",
  608. "OperatorType": "Divide",
  609. "NativeTypes": [
  610. {
  611. "m_type": 3
  612. }
  613. ]
  614. }
  615. ],
  616. "slotName": "Number",
  617. "toolTip": "An operand to use in performing the specified Operation",
  618. "DisplayDataType": {
  619. "m_type": 3
  620. },
  621. "DisplayGroup": {
  622. "Value": 1114760223
  623. },
  624. "Descriptor": {
  625. "ConnectionType": 1,
  626. "SlotType": 2
  627. },
  628. "DynamicGroup": {
  629. "Value": 1114760223
  630. }
  631. },
  632. {
  633. "id": {
  634. "m_id": "{6417D1C5-7F41-4534-AA70-DA679F1B0829}"
  635. },
  636. "DynamicTypeOverride": 3,
  637. "contracts": [
  638. {
  639. "$type": "SlotTypeContract"
  640. },
  641. null,
  642. {
  643. "$type": "MathOperatorContract",
  644. "OperatorType": "Divide",
  645. "NativeTypes": [
  646. {
  647. "m_type": 3
  648. }
  649. ]
  650. }
  651. ],
  652. "slotName": "Number",
  653. "toolTip": "An operand to use in performing the specified Operation",
  654. "DisplayDataType": {
  655. "m_type": 3
  656. },
  657. "DisplayGroup": {
  658. "Value": 1114760223
  659. },
  660. "Descriptor": {
  661. "ConnectionType": 1,
  662. "SlotType": 2
  663. },
  664. "DynamicGroup": {
  665. "Value": 1114760223
  666. }
  667. },
  668. {
  669. "id": {
  670. "m_id": "{CE095361-77CA-41D9-A662-54485C02CF32}"
  671. },
  672. "DynamicTypeOverride": 3,
  673. "contracts": [
  674. {
  675. "$type": "SlotTypeContract"
  676. },
  677. {
  678. "$type": "MathOperatorContract",
  679. "OperatorType": "Divide",
  680. "NativeTypes": [
  681. {
  682. "m_type": 3
  683. }
  684. ]
  685. }
  686. ],
  687. "slotName": "Result",
  688. "toolTip": "The result of the specified operation",
  689. "DisplayDataType": {
  690. "m_type": 3
  691. },
  692. "DisplayGroup": {
  693. "Value": 1114760223
  694. },
  695. "Descriptor": {
  696. "ConnectionType": 2,
  697. "SlotType": 2
  698. },
  699. "DynamicGroup": {
  700. "Value": 1114760223
  701. }
  702. },
  703. {
  704. "id": {
  705. "m_id": "{23CD8643-78E1-4A4A-8A31-B5262000CBEB}"
  706. },
  707. "DynamicTypeOverride": 3,
  708. "contracts": [
  709. {
  710. "$type": "SlotTypeContract"
  711. },
  712. null,
  713. {
  714. "$type": "MathOperatorContract",
  715. "OperatorType": "Divide",
  716. "NativeTypes": [
  717. {
  718. "m_type": 3
  719. }
  720. ]
  721. }
  722. ],
  723. "slotName": "Number",
  724. "toolTip": "An operand to use in performing the specified Operation",
  725. "DisplayDataType": {
  726. "m_type": 3
  727. },
  728. "DisplayGroup": {
  729. "Value": 1114760223
  730. },
  731. "Descriptor": {
  732. "ConnectionType": 1,
  733. "SlotType": 2
  734. },
  735. "DynamicGroup": {
  736. "Value": 1114760223
  737. }
  738. },
  739. {
  740. "id": {
  741. "m_id": "{61903658-2876-4DA0-B349-90AAEBDED77A}"
  742. },
  743. "DynamicTypeOverride": 3,
  744. "contracts": [
  745. {
  746. "$type": "SlotTypeContract"
  747. },
  748. null,
  749. {
  750. "$type": "MathOperatorContract",
  751. "OperatorType": "Divide",
  752. "NativeTypes": [
  753. {
  754. "m_type": 3
  755. }
  756. ]
  757. }
  758. ],
  759. "slotName": "Number",
  760. "toolTip": "An operand to use in performing the specified Operation",
  761. "DisplayDataType": {
  762. "m_type": 3
  763. },
  764. "DisplayGroup": {
  765. "Value": 1114760223
  766. },
  767. "Descriptor": {
  768. "ConnectionType": 1,
  769. "SlotType": 2
  770. },
  771. "DynamicGroup": {
  772. "Value": 1114760223
  773. }
  774. },
  775. {
  776. "id": {
  777. "m_id": "{0B787A03-FB02-45E5-A8F2-A63A3CDDD955}"
  778. },
  779. "DynamicTypeOverride": 3,
  780. "contracts": [
  781. {
  782. "$type": "SlotTypeContract"
  783. },
  784. null,
  785. {
  786. "$type": "MathOperatorContract",
  787. "OperatorType": "Divide",
  788. "NativeTypes": [
  789. {
  790. "m_type": 3
  791. }
  792. ]
  793. }
  794. ],
  795. "slotName": "Number",
  796. "toolTip": "An operand to use in performing the specified Operation",
  797. "DisplayDataType": {
  798. "m_type": 3
  799. },
  800. "DisplayGroup": {
  801. "Value": 1114760223
  802. },
  803. "Descriptor": {
  804. "ConnectionType": 1,
  805. "SlotType": 2
  806. },
  807. "DynamicGroup": {
  808. "Value": 1114760223
  809. }
  810. },
  811. {
  812. "id": {
  813. "m_id": "{5EC21B44-F852-4C9D-BCA3-33A3850ACDF0}"
  814. },
  815. "DynamicTypeOverride": 3,
  816. "contracts": [
  817. {
  818. "$type": "SlotTypeContract"
  819. },
  820. null,
  821. {
  822. "$type": "MathOperatorContract",
  823. "OperatorType": "Divide",
  824. "NativeTypes": [
  825. {
  826. "m_type": 3
  827. }
  828. ]
  829. }
  830. ],
  831. "slotName": "Number",
  832. "toolTip": "An operand to use in performing the specified Operation",
  833. "DisplayDataType": {
  834. "m_type": 3
  835. },
  836. "DisplayGroup": {
  837. "Value": 1114760223
  838. },
  839. "Descriptor": {
  840. "ConnectionType": 1,
  841. "SlotType": 2
  842. },
  843. "DynamicGroup": {
  844. "Value": 1114760223
  845. }
  846. }
  847. ],
  848. "Datums": [
  849. {
  850. "isOverloadedStorage": false,
  851. "scriptCanvasType": {
  852. "m_type": 3
  853. },
  854. "isNullPointer": false,
  855. "$type": "double",
  856. "value": 10000000000.0,
  857. "label": "Number"
  858. },
  859. {
  860. "isOverloadedStorage": false,
  861. "scriptCanvasType": {
  862. "m_type": 3
  863. },
  864. "isNullPointer": false,
  865. "$type": "double",
  866. "value": 100000.0,
  867. "label": "Number"
  868. },
  869. {
  870. "isOverloadedStorage": false,
  871. "scriptCanvasType": {
  872. "m_type": 3
  873. },
  874. "isNullPointer": false,
  875. "$type": "double",
  876. "value": 1000.0,
  877. "label": "Number"
  878. },
  879. {
  880. "isOverloadedStorage": false,
  881. "scriptCanvasType": {
  882. "m_type": 3
  883. },
  884. "isNullPointer": false,
  885. "$type": "double",
  886. "value": 10.0,
  887. "label": "Number"
  888. },
  889. {
  890. "isOverloadedStorage": false,
  891. "scriptCanvasType": {
  892. "m_type": 3
  893. },
  894. "isNullPointer": false,
  895. "$type": "double",
  896. "value": 10.0,
  897. "label": "Number"
  898. },
  899. {
  900. "isOverloadedStorage": false,
  901. "scriptCanvasType": {
  902. "m_type": 3
  903. },
  904. "isNullPointer": false,
  905. "$type": "double",
  906. "value": 1.0,
  907. "label": "Number"
  908. }
  909. ]
  910. }
  911. }
  912. },
  913. {
  914. "Id": {
  915. "id": 1177240963745
  916. },
  917. "Name": "SC-Node(Start)",
  918. "Components": {
  919. "Component_[16815389459213621466]": {
  920. "$type": "Start",
  921. "Id": 16815389459213621466,
  922. "Slots": [
  923. {
  924. "id": {
  925. "m_id": "{CC5808F3-2F02-47F1-AB85-15A91B5FE983}"
  926. },
  927. "contracts": [
  928. {
  929. "$type": "SlotTypeContract"
  930. }
  931. ],
  932. "slotName": "Out",
  933. "toolTip": "Signaled when the entity that owns this graph is fully activated.",
  934. "Descriptor": {
  935. "ConnectionType": 2,
  936. "SlotType": 1
  937. }
  938. }
  939. ]
  940. }
  941. }
  942. },
  943. {
  944. "Id": {
  945. "id": 12253961620129
  946. },
  947. "Name": "SC-Node(OperatorDiv)",
  948. "Components": {
  949. "Component_[1966738725591410238]": {
  950. "$type": "OperatorDiv",
  951. "Id": 1966738725591410238,
  952. "Slots": [
  953. {
  954. "id": {
  955. "m_id": "{92975D74-E00E-4025-875D-3E3DCAEEB1E0}"
  956. },
  957. "contracts": [
  958. {
  959. "$type": "SlotTypeContract"
  960. }
  961. ],
  962. "slotName": "In",
  963. "Descriptor": {
  964. "ConnectionType": 1,
  965. "SlotType": 1
  966. }
  967. },
  968. {
  969. "id": {
  970. "m_id": "{BC7784B5-393B-4675-941B-0F1AC4798EFF}"
  971. },
  972. "contracts": [
  973. {
  974. "$type": "SlotTypeContract"
  975. }
  976. ],
  977. "slotName": "Out",
  978. "Descriptor": {
  979. "ConnectionType": 2,
  980. "SlotType": 1
  981. }
  982. },
  983. {
  984. "id": {
  985. "m_id": "{12804C53-537D-4DC6-98C6-9319835948CC}"
  986. },
  987. "DynamicTypeOverride": 3,
  988. "contracts": [
  989. {
  990. "$type": "SlotTypeContract"
  991. },
  992. {
  993. "$type": "MathOperatorContract",
  994. "OperatorType": "Divide",
  995. "NativeTypes": [
  996. {
  997. "m_type": 3
  998. },
  999. {
  1000. "m_type": 8
  1001. },
  1002. {
  1003. "m_type": 9
  1004. },
  1005. {
  1006. "m_type": 10
  1007. }
  1008. ]
  1009. }
  1010. ],
  1011. "slotName": "Vector3 1",
  1012. "toolTip": "An operand to use in performing the specified Operation",
  1013. "DisplayDataType": {
  1014. "m_type": 8
  1015. },
  1016. "DisplayGroup": {
  1017. "Value": 1114760223
  1018. },
  1019. "Descriptor": {
  1020. "ConnectionType": 1,
  1021. "SlotType": 2
  1022. },
  1023. "DynamicGroup": {
  1024. "Value": 1114760223
  1025. },
  1026. "DataType": 1,
  1027. "IsReference": true,
  1028. "VariableReference": {
  1029. "m_id": "{7A690F4B-286D-4201-9C04-71C952BCE327}"
  1030. }
  1031. },
  1032. {
  1033. "id": {
  1034. "m_id": "{AB3B3678-0FE9-40AD-860E-F7F79AE56EA7}"
  1035. },
  1036. "DynamicTypeOverride": 3,
  1037. "contracts": [
  1038. {
  1039. "$type": "SlotTypeContract"
  1040. },
  1041. {
  1042. "$type": "MathOperatorContract",
  1043. "OperatorType": "Divide",
  1044. "NativeTypes": [
  1045. {
  1046. "m_type": 3
  1047. },
  1048. {
  1049. "m_type": 8
  1050. },
  1051. {
  1052. "m_type": 9
  1053. },
  1054. {
  1055. "m_type": 10
  1056. }
  1057. ]
  1058. }
  1059. ],
  1060. "slotName": "Result",
  1061. "toolTip": "The result of the specified operation",
  1062. "DisplayDataType": {
  1063. "m_type": 8
  1064. },
  1065. "DisplayGroup": {
  1066. "Value": 1114760223
  1067. },
  1068. "Descriptor": {
  1069. "ConnectionType": 2,
  1070. "SlotType": 2
  1071. },
  1072. "DynamicGroup": {
  1073. "Value": 1114760223
  1074. },
  1075. "DataType": 1
  1076. },
  1077. {
  1078. "id": {
  1079. "m_id": "{E0B0BE8D-A403-4098-869D-F71DA64B9D06}"
  1080. },
  1081. "DynamicTypeOverride": 3,
  1082. "contracts": [
  1083. {
  1084. "$type": "SlotTypeContract"
  1085. },
  1086. {
  1087. "$type": "MathOperatorContract",
  1088. "OperatorType": "Divide",
  1089. "NativeTypes": [
  1090. {
  1091. "m_type": 3
  1092. },
  1093. {
  1094. "m_type": 8
  1095. },
  1096. {
  1097. "m_type": 9
  1098. },
  1099. {
  1100. "m_type": 10
  1101. }
  1102. ]
  1103. }
  1104. ],
  1105. "slotName": "Vector3 2",
  1106. "toolTip": "An operand to use in performing the specified Operation",
  1107. "DisplayDataType": {
  1108. "m_type": 8
  1109. },
  1110. "DisplayGroup": {
  1111. "Value": 1114760223
  1112. },
  1113. "Descriptor": {
  1114. "ConnectionType": 1,
  1115. "SlotType": 2
  1116. },
  1117. "DynamicGroup": {
  1118. "Value": 1114760223
  1119. },
  1120. "DataType": 1
  1121. }
  1122. ],
  1123. "Datums": [
  1124. {
  1125. "isOverloadedStorage": false,
  1126. "scriptCanvasType": {
  1127. "m_type": 8
  1128. },
  1129. "isNullPointer": false,
  1130. "$type": "Vector3",
  1131. "value": [
  1132. 1000.0,
  1133. 1000.0,
  1134. 1000.0
  1135. ],
  1136. "label": "Vector3 1"
  1137. },
  1138. {
  1139. "isOverloadedStorage": false,
  1140. "scriptCanvasType": {
  1141. "m_type": 8
  1142. },
  1143. "isNullPointer": false,
  1144. "$type": "Vector3",
  1145. "value": [
  1146. 100.0,
  1147. 200.0,
  1148. 300.0
  1149. ],
  1150. "label": "Vector3 2"
  1151. }
  1152. ]
  1153. }
  1154. }
  1155. },
  1156. {
  1157. "Id": {
  1158. "id": 1172945996449
  1159. },
  1160. "Name": "SC-Node(Mark Complete)",
  1161. "Components": {
  1162. "Component_[2334497669986108458]": {
  1163. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  1164. "Id": 2334497669986108458,
  1165. "Slots": [
  1166. {
  1167. "isVisibile": false,
  1168. "id": {
  1169. "m_id": "{605C970E-E760-44C7-AE93-06CE1C92DE77}"
  1170. },
  1171. "contracts": [
  1172. {
  1173. "$type": "SlotTypeContract"
  1174. },
  1175. null
  1176. ],
  1177. "slotName": "EntityID: 0",
  1178. "Descriptor": {
  1179. "ConnectionType": 1,
  1180. "SlotType": 2
  1181. }
  1182. },
  1183. {
  1184. "id": {
  1185. "m_id": "{8433B8B2-E73B-488D-9758-FFE3F6519C8A}"
  1186. },
  1187. "contracts": [
  1188. {
  1189. "$type": "SlotTypeContract"
  1190. },
  1191. null
  1192. ],
  1193. "slotName": "Report",
  1194. "toolTip": "additional notes for the test report",
  1195. "Descriptor": {
  1196. "ConnectionType": 1,
  1197. "SlotType": 2
  1198. }
  1199. },
  1200. {
  1201. "id": {
  1202. "m_id": "{76D0BB2A-077E-4ED4-AC30-A58947DD542A}"
  1203. },
  1204. "contracts": [
  1205. {
  1206. "$type": "SlotTypeContract"
  1207. }
  1208. ],
  1209. "slotName": "In",
  1210. "Descriptor": {
  1211. "ConnectionType": 1,
  1212. "SlotType": 1
  1213. }
  1214. },
  1215. {
  1216. "id": {
  1217. "m_id": "{652315E2-83FD-4953-AC94-CA8DE02D0CBD}"
  1218. },
  1219. "contracts": [
  1220. {
  1221. "$type": "SlotTypeContract"
  1222. }
  1223. ],
  1224. "slotName": "Out",
  1225. "Descriptor": {
  1226. "ConnectionType": 2,
  1227. "SlotType": 1
  1228. }
  1229. }
  1230. ],
  1231. "Datums": [
  1232. {
  1233. "isOverloadedStorage": false,
  1234. "scriptCanvasType": {
  1235. "m_type": 1
  1236. },
  1237. "isNullPointer": false,
  1238. "$type": "EntityId",
  1239. "value": {
  1240. "id": 4276206253
  1241. }
  1242. },
  1243. {
  1244. "isOverloadedStorage": false,
  1245. "scriptCanvasType": {
  1246. "m_type": 5
  1247. },
  1248. "isNullPointer": false,
  1249. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  1250. "value": "",
  1251. "label": "Report"
  1252. }
  1253. ],
  1254. "methodType": 2,
  1255. "methodName": "Mark Complete",
  1256. "className": "Unit Testing",
  1257. "resultSlotIDs": [
  1258. {}
  1259. ],
  1260. "prettyClassName": "Unit Testing"
  1261. }
  1262. }
  1263. },
  1264. {
  1265. "Id": {
  1266. "id": 42365977332385
  1267. },
  1268. "Name": "SC-Node(Expect Equal)",
  1269. "Components": {
  1270. "Component_[2520468692768798387]": {
  1271. "$type": "MethodOverloaded",
  1272. "Id": 2520468692768798387,
  1273. "Slots": [
  1274. {
  1275. "id": {
  1276. "m_id": "{8EC2822B-8FAF-492F-939B-08C54EB4D2D5}"
  1277. },
  1278. "contracts": [
  1279. {
  1280. "$type": "SlotTypeContract"
  1281. },
  1282. null
  1283. ],
  1284. "slotName": "EntityID: 0",
  1285. "DisplayDataType": {
  1286. "m_type": 1
  1287. },
  1288. "Descriptor": {
  1289. "ConnectionType": 1,
  1290. "SlotType": 2
  1291. }
  1292. },
  1293. {
  1294. "IsOverload": true,
  1295. "id": {
  1296. "m_id": "{DF9EDA3D-8330-474C-AC48-0CC4874EFA2B}"
  1297. },
  1298. "DynamicTypeOverride": 3,
  1299. "contracts": [
  1300. {
  1301. "$type": "SlotTypeContract"
  1302. },
  1303. null
  1304. ],
  1305. "slotName": "Candidate",
  1306. "toolTip": "left of ==",
  1307. "DisplayDataType": {
  1308. "m_type": 9
  1309. },
  1310. "Descriptor": {
  1311. "ConnectionType": 1,
  1312. "SlotType": 2
  1313. }
  1314. },
  1315. {
  1316. "IsOverload": true,
  1317. "id": {
  1318. "m_id": "{19C06FA8-549A-4335-A820-431B6F62BED5}"
  1319. },
  1320. "DynamicTypeOverride": 3,
  1321. "contracts": [
  1322. {
  1323. "$type": "SlotTypeContract"
  1324. },
  1325. null
  1326. ],
  1327. "slotName": "Reference",
  1328. "toolTip": "right of ==",
  1329. "DisplayDataType": {
  1330. "m_type": 9
  1331. },
  1332. "Descriptor": {
  1333. "ConnectionType": 1,
  1334. "SlotType": 2
  1335. }
  1336. },
  1337. {
  1338. "id": {
  1339. "m_id": "{106BD14D-AA0B-474E-A877-630A7E0EF6C8}"
  1340. },
  1341. "contracts": [
  1342. {
  1343. "$type": "SlotTypeContract"
  1344. },
  1345. null
  1346. ],
  1347. "slotName": "Report",
  1348. "toolTip": "additional notes for the test report",
  1349. "DisplayDataType": {
  1350. "m_type": 5
  1351. },
  1352. "Descriptor": {
  1353. "ConnectionType": 1,
  1354. "SlotType": 2
  1355. }
  1356. },
  1357. {
  1358. "id": {
  1359. "m_id": "{160CE816-09E1-4DF2-B0EC-35BF1181AD12}"
  1360. },
  1361. "contracts": [
  1362. {
  1363. "$type": "SlotTypeContract"
  1364. }
  1365. ],
  1366. "slotName": "In",
  1367. "Descriptor": {
  1368. "ConnectionType": 1,
  1369. "SlotType": 1
  1370. }
  1371. },
  1372. {
  1373. "id": {
  1374. "m_id": "{EE17CE3D-BD0E-4994-975D-2103C3CF8E30}"
  1375. },
  1376. "contracts": [
  1377. {
  1378. "$type": "SlotTypeContract"
  1379. }
  1380. ],
  1381. "slotName": "Out",
  1382. "Descriptor": {
  1383. "ConnectionType": 2,
  1384. "SlotType": 1
  1385. }
  1386. }
  1387. ],
  1388. "Datums": [
  1389. {
  1390. "isOverloadedStorage": false,
  1391. "scriptCanvasType": {
  1392. "m_type": 1
  1393. },
  1394. "isNullPointer": false,
  1395. "$type": "EntityId",
  1396. "value": {
  1397. "id": 4276206253
  1398. },
  1399. "label": "EntityID: 0"
  1400. },
  1401. {
  1402. "isOverloadedStorage": false,
  1403. "scriptCanvasType": {
  1404. "m_type": 9
  1405. },
  1406. "isNullPointer": false,
  1407. "$type": "Vector2",
  1408. "value": [
  1409. 0.0,
  1410. 0.0
  1411. ],
  1412. "label": "Candidate"
  1413. },
  1414. {
  1415. "isOverloadedStorage": false,
  1416. "scriptCanvasType": {
  1417. "m_type": 9
  1418. },
  1419. "isNullPointer": false,
  1420. "$type": "Vector2",
  1421. "value": [
  1422. 1.0,
  1423. 1.0
  1424. ],
  1425. "label": "Reference"
  1426. },
  1427. {
  1428. "isOverloadedStorage": false,
  1429. "scriptCanvasType": {
  1430. "m_type": 5
  1431. },
  1432. "isNullPointer": false,
  1433. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  1434. "value": "",
  1435. "label": "Report"
  1436. }
  1437. ],
  1438. "methodType": 2,
  1439. "methodName": "Expect Equal",
  1440. "className": "Unit Testing",
  1441. "resultSlotIDs": [
  1442. {}
  1443. ],
  1444. "prettyClassName": "Unit Testing",
  1445. "orderedInputSlotIds": [
  1446. {
  1447. "m_id": "{8EC2822B-8FAF-492F-939B-08C54EB4D2D5}"
  1448. },
  1449. {
  1450. "m_id": "{DF9EDA3D-8330-474C-AC48-0CC4874EFA2B}"
  1451. },
  1452. {
  1453. "m_id": "{19C06FA8-549A-4335-A820-431B6F62BED5}"
  1454. },
  1455. {
  1456. "m_id": "{106BD14D-AA0B-474E-A877-630A7E0EF6C8}"
  1457. }
  1458. ]
  1459. }
  1460. }
  1461. },
  1462. {
  1463. "Id": {
  1464. "id": 31740228242081
  1465. },
  1466. "Name": "SC-Node(Expect Equal)",
  1467. "Components": {
  1468. "Component_[2520468692768798387]": {
  1469. "$type": "MethodOverloaded",
  1470. "Id": 2520468692768798387,
  1471. "Slots": [
  1472. {
  1473. "id": {
  1474. "m_id": "{8EC2822B-8FAF-492F-939B-08C54EB4D2D5}"
  1475. },
  1476. "contracts": [
  1477. {
  1478. "$type": "SlotTypeContract"
  1479. },
  1480. null
  1481. ],
  1482. "slotName": "EntityID: 0",
  1483. "DisplayDataType": {
  1484. "m_type": 1
  1485. },
  1486. "Descriptor": {
  1487. "ConnectionType": 1,
  1488. "SlotType": 2
  1489. }
  1490. },
  1491. {
  1492. "IsOverload": true,
  1493. "id": {
  1494. "m_id": "{DF9EDA3D-8330-474C-AC48-0CC4874EFA2B}"
  1495. },
  1496. "DynamicTypeOverride": 3,
  1497. "contracts": [
  1498. {
  1499. "$type": "SlotTypeContract"
  1500. },
  1501. null
  1502. ],
  1503. "slotName": "Candidate",
  1504. "toolTip": "left of ==",
  1505. "DisplayDataType": {
  1506. "m_type": 8
  1507. },
  1508. "Descriptor": {
  1509. "ConnectionType": 1,
  1510. "SlotType": 2
  1511. }
  1512. },
  1513. {
  1514. "IsOverload": true,
  1515. "id": {
  1516. "m_id": "{19C06FA8-549A-4335-A820-431B6F62BED5}"
  1517. },
  1518. "DynamicTypeOverride": 3,
  1519. "contracts": [
  1520. {
  1521. "$type": "SlotTypeContract"
  1522. },
  1523. null
  1524. ],
  1525. "slotName": "Reference",
  1526. "toolTip": "right of ==",
  1527. "DisplayDataType": {
  1528. "m_type": 8
  1529. },
  1530. "Descriptor": {
  1531. "ConnectionType": 1,
  1532. "SlotType": 2
  1533. }
  1534. },
  1535. {
  1536. "id": {
  1537. "m_id": "{106BD14D-AA0B-474E-A877-630A7E0EF6C8}"
  1538. },
  1539. "contracts": [
  1540. {
  1541. "$type": "SlotTypeContract"
  1542. },
  1543. null
  1544. ],
  1545. "slotName": "Report",
  1546. "toolTip": "additional notes for the test report",
  1547. "DisplayDataType": {
  1548. "m_type": 5
  1549. },
  1550. "Descriptor": {
  1551. "ConnectionType": 1,
  1552. "SlotType": 2
  1553. }
  1554. },
  1555. {
  1556. "id": {
  1557. "m_id": "{160CE816-09E1-4DF2-B0EC-35BF1181AD12}"
  1558. },
  1559. "contracts": [
  1560. {
  1561. "$type": "SlotTypeContract"
  1562. }
  1563. ],
  1564. "slotName": "In",
  1565. "Descriptor": {
  1566. "ConnectionType": 1,
  1567. "SlotType": 1
  1568. }
  1569. },
  1570. {
  1571. "id": {
  1572. "m_id": "{EE17CE3D-BD0E-4994-975D-2103C3CF8E30}"
  1573. },
  1574. "contracts": [
  1575. {
  1576. "$type": "SlotTypeContract"
  1577. }
  1578. ],
  1579. "slotName": "Out",
  1580. "Descriptor": {
  1581. "ConnectionType": 2,
  1582. "SlotType": 1
  1583. }
  1584. }
  1585. ],
  1586. "Datums": [
  1587. {
  1588. "isOverloadedStorage": false,
  1589. "scriptCanvasType": {
  1590. "m_type": 1
  1591. },
  1592. "isNullPointer": false,
  1593. "$type": "EntityId",
  1594. "value": {
  1595. "id": 4276206253
  1596. },
  1597. "label": "EntityID: 0"
  1598. },
  1599. {
  1600. "isOverloadedStorage": false,
  1601. "scriptCanvasType": {
  1602. "m_type": 8
  1603. },
  1604. "isNullPointer": false,
  1605. "$type": "Vector3",
  1606. "value": [
  1607. 0.0,
  1608. 0.0,
  1609. 0.0
  1610. ],
  1611. "label": "Candidate"
  1612. },
  1613. {
  1614. "isOverloadedStorage": false,
  1615. "scriptCanvasType": {
  1616. "m_type": 8
  1617. },
  1618. "isNullPointer": false,
  1619. "$type": "Vector3",
  1620. "value": [
  1621. 1.0,
  1622. 1.0,
  1623. 1.0
  1624. ],
  1625. "label": "Reference"
  1626. },
  1627. {
  1628. "isOverloadedStorage": false,
  1629. "scriptCanvasType": {
  1630. "m_type": 5
  1631. },
  1632. "isNullPointer": false,
  1633. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  1634. "value": "",
  1635. "label": "Report"
  1636. }
  1637. ],
  1638. "methodType": 2,
  1639. "methodName": "Expect Equal",
  1640. "className": "Unit Testing",
  1641. "resultSlotIDs": [
  1642. {}
  1643. ],
  1644. "prettyClassName": "Unit Testing",
  1645. "orderedInputSlotIds": [
  1646. {
  1647. "m_id": "{8EC2822B-8FAF-492F-939B-08C54EB4D2D5}"
  1648. },
  1649. {
  1650. "m_id": "{DF9EDA3D-8330-474C-AC48-0CC4874EFA2B}"
  1651. },
  1652. {
  1653. "m_id": "{19C06FA8-549A-4335-A820-431B6F62BED5}"
  1654. },
  1655. {
  1656. "m_id": "{106BD14D-AA0B-474E-A877-630A7E0EF6C8}"
  1657. }
  1658. ]
  1659. }
  1660. }
  1661. },
  1662. {
  1663. "Id": {
  1664. "id": 37014448081569
  1665. },
  1666. "Name": "SC-Node(Expect Equal)",
  1667. "Components": {
  1668. "Component_[2520468692768798387]": {
  1669. "$type": "MethodOverloaded",
  1670. "Id": 2520468692768798387,
  1671. "Slots": [
  1672. {
  1673. "id": {
  1674. "m_id": "{8EC2822B-8FAF-492F-939B-08C54EB4D2D5}"
  1675. },
  1676. "contracts": [
  1677. {
  1678. "$type": "SlotTypeContract"
  1679. },
  1680. null
  1681. ],
  1682. "slotName": "EntityID: 0",
  1683. "DisplayDataType": {
  1684. "m_type": 1
  1685. },
  1686. "Descriptor": {
  1687. "ConnectionType": 1,
  1688. "SlotType": 2
  1689. }
  1690. },
  1691. {
  1692. "IsOverload": true,
  1693. "id": {
  1694. "m_id": "{DF9EDA3D-8330-474C-AC48-0CC4874EFA2B}"
  1695. },
  1696. "DynamicTypeOverride": 3,
  1697. "contracts": [
  1698. {
  1699. "$type": "SlotTypeContract"
  1700. },
  1701. null
  1702. ],
  1703. "slotName": "Candidate",
  1704. "toolTip": "left of ==",
  1705. "DisplayDataType": {
  1706. "m_type": 10
  1707. },
  1708. "Descriptor": {
  1709. "ConnectionType": 1,
  1710. "SlotType": 2
  1711. }
  1712. },
  1713. {
  1714. "IsOverload": true,
  1715. "id": {
  1716. "m_id": "{19C06FA8-549A-4335-A820-431B6F62BED5}"
  1717. },
  1718. "DynamicTypeOverride": 3,
  1719. "contracts": [
  1720. {
  1721. "$type": "SlotTypeContract"
  1722. },
  1723. null
  1724. ],
  1725. "slotName": "Reference",
  1726. "toolTip": "right of ==",
  1727. "DisplayDataType": {
  1728. "m_type": 10
  1729. },
  1730. "Descriptor": {
  1731. "ConnectionType": 1,
  1732. "SlotType": 2
  1733. }
  1734. },
  1735. {
  1736. "id": {
  1737. "m_id": "{106BD14D-AA0B-474E-A877-630A7E0EF6C8}"
  1738. },
  1739. "contracts": [
  1740. {
  1741. "$type": "SlotTypeContract"
  1742. },
  1743. null
  1744. ],
  1745. "slotName": "Report",
  1746. "toolTip": "additional notes for the test report",
  1747. "DisplayDataType": {
  1748. "m_type": 5
  1749. },
  1750. "Descriptor": {
  1751. "ConnectionType": 1,
  1752. "SlotType": 2
  1753. }
  1754. },
  1755. {
  1756. "id": {
  1757. "m_id": "{160CE816-09E1-4DF2-B0EC-35BF1181AD12}"
  1758. },
  1759. "contracts": [
  1760. {
  1761. "$type": "SlotTypeContract"
  1762. }
  1763. ],
  1764. "slotName": "In",
  1765. "Descriptor": {
  1766. "ConnectionType": 1,
  1767. "SlotType": 1
  1768. }
  1769. },
  1770. {
  1771. "id": {
  1772. "m_id": "{EE17CE3D-BD0E-4994-975D-2103C3CF8E30}"
  1773. },
  1774. "contracts": [
  1775. {
  1776. "$type": "SlotTypeContract"
  1777. }
  1778. ],
  1779. "slotName": "Out",
  1780. "Descriptor": {
  1781. "ConnectionType": 2,
  1782. "SlotType": 1
  1783. }
  1784. }
  1785. ],
  1786. "Datums": [
  1787. {
  1788. "isOverloadedStorage": false,
  1789. "scriptCanvasType": {
  1790. "m_type": 1
  1791. },
  1792. "isNullPointer": false,
  1793. "$type": "EntityId",
  1794. "value": {
  1795. "id": 4276206253
  1796. },
  1797. "label": "EntityID: 0"
  1798. },
  1799. {
  1800. "isOverloadedStorage": false,
  1801. "scriptCanvasType": {
  1802. "m_type": 10
  1803. },
  1804. "isNullPointer": false,
  1805. "$type": "Vector4",
  1806. "value": [
  1807. 0.0,
  1808. 0.0,
  1809. 0.0,
  1810. 0.0
  1811. ],
  1812. "label": "Candidate"
  1813. },
  1814. {
  1815. "isOverloadedStorage": false,
  1816. "scriptCanvasType": {
  1817. "m_type": 10
  1818. },
  1819. "isNullPointer": false,
  1820. "$type": "Vector4",
  1821. "value": [
  1822. 1.0,
  1823. 1.0,
  1824. 1.0,
  1825. 1.0
  1826. ],
  1827. "label": "Reference"
  1828. },
  1829. {
  1830. "isOverloadedStorage": false,
  1831. "scriptCanvasType": {
  1832. "m_type": 5
  1833. },
  1834. "isNullPointer": false,
  1835. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  1836. "value": "",
  1837. "label": "Report"
  1838. }
  1839. ],
  1840. "methodType": 2,
  1841. "methodName": "Expect Equal",
  1842. "className": "Unit Testing",
  1843. "resultSlotIDs": [
  1844. {}
  1845. ],
  1846. "prettyClassName": "Unit Testing",
  1847. "orderedInputSlotIds": [
  1848. {
  1849. "m_id": "{8EC2822B-8FAF-492F-939B-08C54EB4D2D5}"
  1850. },
  1851. {
  1852. "m_id": "{DF9EDA3D-8330-474C-AC48-0CC4874EFA2B}"
  1853. },
  1854. {
  1855. "m_id": "{19C06FA8-549A-4335-A820-431B6F62BED5}"
  1856. },
  1857. {
  1858. "m_id": "{106BD14D-AA0B-474E-A877-630A7E0EF6C8}"
  1859. }
  1860. ]
  1861. }
  1862. }
  1863. },
  1864. {
  1865. "Id": {
  1866. "id": 1168651029153
  1867. },
  1868. "Name": "SC-Node(Expect Equal)",
  1869. "Components": {
  1870. "Component_[2520468692768798387]": {
  1871. "$type": "MethodOverloaded",
  1872. "Id": 2520468692768798387,
  1873. "Slots": [
  1874. {
  1875. "id": {
  1876. "m_id": "{8EC2822B-8FAF-492F-939B-08C54EB4D2D5}"
  1877. },
  1878. "contracts": [
  1879. {
  1880. "$type": "SlotTypeContract"
  1881. },
  1882. null
  1883. ],
  1884. "slotName": "EntityID: 0",
  1885. "DisplayDataType": {
  1886. "m_type": 1
  1887. },
  1888. "Descriptor": {
  1889. "ConnectionType": 1,
  1890. "SlotType": 2
  1891. }
  1892. },
  1893. {
  1894. "IsOverload": true,
  1895. "id": {
  1896. "m_id": "{DF9EDA3D-8330-474C-AC48-0CC4874EFA2B}"
  1897. },
  1898. "DynamicTypeOverride": 3,
  1899. "contracts": [
  1900. {
  1901. "$type": "SlotTypeContract"
  1902. },
  1903. null
  1904. ],
  1905. "slotName": "Candidate",
  1906. "toolTip": "left of ==",
  1907. "DisplayDataType": {
  1908. "m_type": 3
  1909. },
  1910. "Descriptor": {
  1911. "ConnectionType": 1,
  1912. "SlotType": 2
  1913. }
  1914. },
  1915. {
  1916. "IsOverload": true,
  1917. "id": {
  1918. "m_id": "{19C06FA8-549A-4335-A820-431B6F62BED5}"
  1919. },
  1920. "DynamicTypeOverride": 3,
  1921. "contracts": [
  1922. {
  1923. "$type": "SlotTypeContract"
  1924. },
  1925. null
  1926. ],
  1927. "slotName": "Reference",
  1928. "toolTip": "right of ==",
  1929. "DisplayDataType": {
  1930. "m_type": 3
  1931. },
  1932. "Descriptor": {
  1933. "ConnectionType": 1,
  1934. "SlotType": 2
  1935. }
  1936. },
  1937. {
  1938. "id": {
  1939. "m_id": "{106BD14D-AA0B-474E-A877-630A7E0EF6C8}"
  1940. },
  1941. "contracts": [
  1942. {
  1943. "$type": "SlotTypeContract"
  1944. },
  1945. null
  1946. ],
  1947. "slotName": "Report",
  1948. "toolTip": "additional notes for the test report",
  1949. "DisplayDataType": {
  1950. "m_type": 5
  1951. },
  1952. "Descriptor": {
  1953. "ConnectionType": 1,
  1954. "SlotType": 2
  1955. }
  1956. },
  1957. {
  1958. "id": {
  1959. "m_id": "{160CE816-09E1-4DF2-B0EC-35BF1181AD12}"
  1960. },
  1961. "contracts": [
  1962. {
  1963. "$type": "SlotTypeContract"
  1964. }
  1965. ],
  1966. "slotName": "In",
  1967. "Descriptor": {
  1968. "ConnectionType": 1,
  1969. "SlotType": 1
  1970. }
  1971. },
  1972. {
  1973. "id": {
  1974. "m_id": "{EE17CE3D-BD0E-4994-975D-2103C3CF8E30}"
  1975. },
  1976. "contracts": [
  1977. {
  1978. "$type": "SlotTypeContract"
  1979. }
  1980. ],
  1981. "slotName": "Out",
  1982. "Descriptor": {
  1983. "ConnectionType": 2,
  1984. "SlotType": 1
  1985. }
  1986. }
  1987. ],
  1988. "Datums": [
  1989. {
  1990. "isOverloadedStorage": false,
  1991. "scriptCanvasType": {
  1992. "m_type": 1
  1993. },
  1994. "isNullPointer": false,
  1995. "$type": "EntityId",
  1996. "value": {
  1997. "id": 4276206253
  1998. },
  1999. "label": "EntityID: 0"
  2000. },
  2001. {
  2002. "isOverloadedStorage": false,
  2003. "scriptCanvasType": {
  2004. "m_type": 3
  2005. },
  2006. "isNullPointer": false,
  2007. "$type": "double",
  2008. "value": 0.0,
  2009. "label": "Candidate"
  2010. },
  2011. {
  2012. "isOverloadedStorage": false,
  2013. "scriptCanvasType": {
  2014. "m_type": 3
  2015. },
  2016. "isNullPointer": false,
  2017. "$type": "double",
  2018. "value": 0.0,
  2019. "label": "Reference"
  2020. },
  2021. {
  2022. "isOverloadedStorage": false,
  2023. "scriptCanvasType": {
  2024. "m_type": 5
  2025. },
  2026. "isNullPointer": false,
  2027. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  2028. "value": "",
  2029. "label": "Report"
  2030. }
  2031. ],
  2032. "methodType": 2,
  2033. "methodName": "Expect Equal",
  2034. "className": "Unit Testing",
  2035. "resultSlotIDs": [
  2036. {}
  2037. ],
  2038. "prettyClassName": "Unit Testing",
  2039. "orderedInputSlotIds": [
  2040. {
  2041. "m_id": "{8EC2822B-8FAF-492F-939B-08C54EB4D2D5}"
  2042. },
  2043. {
  2044. "m_id": "{DF9EDA3D-8330-474C-AC48-0CC4874EFA2B}"
  2045. },
  2046. {
  2047. "m_id": "{19C06FA8-549A-4335-A820-431B6F62BED5}"
  2048. },
  2049. {
  2050. "m_id": "{106BD14D-AA0B-474E-A877-630A7E0EF6C8}"
  2051. }
  2052. ]
  2053. }
  2054. }
  2055. },
  2056. {
  2057. "Id": {
  2058. "id": 26392993958561
  2059. },
  2060. "Name": "SC-Node(OperatorDiv)",
  2061. "Components": {
  2062. "Component_[5414543978526075066]": {
  2063. "$type": "OperatorDiv",
  2064. "Id": 5414543978526075066,
  2065. "Slots": [
  2066. {
  2067. "id": {
  2068. "m_id": "{2DA9621D-89F5-4FC7-AAFB-74EFF6DF9DF6}"
  2069. },
  2070. "contracts": [
  2071. {
  2072. "$type": "SlotTypeContract"
  2073. }
  2074. ],
  2075. "slotName": "In",
  2076. "Descriptor": {
  2077. "ConnectionType": 1,
  2078. "SlotType": 1
  2079. }
  2080. },
  2081. {
  2082. "id": {
  2083. "m_id": "{C0525510-09ED-418C-9E81-D15F04B11EFD}"
  2084. },
  2085. "contracts": [
  2086. {
  2087. "$type": "SlotTypeContract"
  2088. }
  2089. ],
  2090. "slotName": "Out",
  2091. "Descriptor": {
  2092. "ConnectionType": 2,
  2093. "SlotType": 1
  2094. }
  2095. },
  2096. {
  2097. "id": {
  2098. "m_id": "{509E41AE-3FAB-4A43-B75B-DE9E2B4624E1}"
  2099. },
  2100. "DynamicTypeOverride": 3,
  2101. "contracts": [
  2102. {
  2103. "$type": "SlotTypeContract"
  2104. },
  2105. {
  2106. "$type": "MathOperatorContract",
  2107. "OperatorType": "Divide",
  2108. "NativeTypes": [
  2109. {
  2110. "m_type": 3
  2111. },
  2112. {
  2113. "m_type": 8
  2114. },
  2115. {
  2116. "m_type": 9
  2117. },
  2118. {
  2119. "m_type": 10
  2120. }
  2121. ]
  2122. }
  2123. ],
  2124. "slotName": "Vector2 0",
  2125. "toolTip": "An operand to use in performing the specified Operation",
  2126. "DisplayDataType": {
  2127. "m_type": 9
  2128. },
  2129. "DisplayGroup": {
  2130. "Value": 1114760223
  2131. },
  2132. "Descriptor": {
  2133. "ConnectionType": 1,
  2134. "SlotType": 2
  2135. },
  2136. "DynamicGroup": {
  2137. "Value": 1114760223
  2138. },
  2139. "DataType": 1,
  2140. "IsReference": true,
  2141. "VariableReference": {
  2142. "m_id": "{45CF5068-A340-4832-880D-1BEF83473BCC}"
  2143. }
  2144. },
  2145. {
  2146. "id": {
  2147. "m_id": "{95D8F3DA-3902-4D78-801C-13BB3D02B2EB}"
  2148. },
  2149. "DynamicTypeOverride": 3,
  2150. "contracts": [
  2151. {
  2152. "$type": "SlotTypeContract"
  2153. },
  2154. {
  2155. "$type": "MathOperatorContract",
  2156. "OperatorType": "Divide",
  2157. "NativeTypes": [
  2158. {
  2159. "m_type": 3
  2160. },
  2161. {
  2162. "m_type": 8
  2163. },
  2164. {
  2165. "m_type": 9
  2166. },
  2167. {
  2168. "m_type": 10
  2169. }
  2170. ]
  2171. }
  2172. ],
  2173. "slotName": "Result",
  2174. "toolTip": "The result of the specified operation",
  2175. "DisplayDataType": {
  2176. "m_type": 9
  2177. },
  2178. "DisplayGroup": {
  2179. "Value": 1114760223
  2180. },
  2181. "Descriptor": {
  2182. "ConnectionType": 2,
  2183. "SlotType": 2
  2184. },
  2185. "DynamicGroup": {
  2186. "Value": 1114760223
  2187. },
  2188. "DataType": 1
  2189. },
  2190. {
  2191. "id": {
  2192. "m_id": "{02A9B43F-373B-442B-9F0E-44AAEFC48827}"
  2193. },
  2194. "DynamicTypeOverride": 3,
  2195. "contracts": [
  2196. {
  2197. "$type": "SlotTypeContract"
  2198. },
  2199. {
  2200. "$type": "MathOperatorContract",
  2201. "OperatorType": "Divide",
  2202. "NativeTypes": [
  2203. {
  2204. "m_type": 3
  2205. },
  2206. {
  2207. "m_type": 8
  2208. },
  2209. {
  2210. "m_type": 9
  2211. },
  2212. {
  2213. "m_type": 10
  2214. }
  2215. ]
  2216. }
  2217. ],
  2218. "slotName": "Vector2 2",
  2219. "toolTip": "An operand to use in performing the specified Operation",
  2220. "DisplayDataType": {
  2221. "m_type": 9
  2222. },
  2223. "DisplayGroup": {
  2224. "Value": 1114760223
  2225. },
  2226. "Descriptor": {
  2227. "ConnectionType": 1,
  2228. "SlotType": 2
  2229. },
  2230. "DynamicGroup": {
  2231. "Value": 1114760223
  2232. },
  2233. "DataType": 1
  2234. }
  2235. ],
  2236. "Datums": [
  2237. {
  2238. "isOverloadedStorage": false,
  2239. "scriptCanvasType": {
  2240. "m_type": 9
  2241. },
  2242. "isNullPointer": false,
  2243. "$type": "Vector2",
  2244. "value": [
  2245. 0.0,
  2246. 0.0
  2247. ],
  2248. "label": "Vector2 0"
  2249. },
  2250. {
  2251. "isOverloadedStorage": false,
  2252. "scriptCanvasType": {
  2253. "m_type": 9
  2254. },
  2255. "isNullPointer": false,
  2256. "$type": "Vector2",
  2257. "value": [
  2258. 200.0,
  2259. 200.0
  2260. ],
  2261. "label": "Vector2 2"
  2262. }
  2263. ]
  2264. }
  2265. }
  2266. }
  2267. ],
  2268. "m_connections": [
  2269. {
  2270. "Id": {
  2271. "id": 1190125865633
  2272. },
  2273. "Name": "srcEndpoint=(On Graph Start: Out), destEndpoint=(Get Variable: In)",
  2274. "Components": {
  2275. "Component_[2941480642005182855]": {
  2276. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2277. "Id": 2941480642005182855,
  2278. "sourceEndpoint": {
  2279. "nodeId": {
  2280. "id": 1177240963745
  2281. },
  2282. "slotId": {
  2283. "m_id": "{CC5808F3-2F02-47F1-AB85-15A91B5FE983}"
  2284. }
  2285. },
  2286. "targetEndpoint": {
  2287. "nodeId": {
  2288. "id": 1185830898337
  2289. },
  2290. "slotId": {
  2291. "m_id": "{1BD063B0-4261-493F-83FD-6FE9F6079DE0}"
  2292. }
  2293. }
  2294. }
  2295. }
  2296. },
  2297. {
  2298. "Id": {
  2299. "id": 1194420832929
  2300. },
  2301. "Name": "srcEndpoint=(Get Variable: Out), destEndpoint=(Divide (/): In)",
  2302. "Components": {
  2303. "Component_[1341242027090103398]": {
  2304. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2305. "Id": 1341242027090103398,
  2306. "sourceEndpoint": {
  2307. "nodeId": {
  2308. "id": 1185830898337
  2309. },
  2310. "slotId": {
  2311. "m_id": "{144D13E0-3DA3-4ECD-BAA8-2BAD5162B0D0}"
  2312. }
  2313. },
  2314. "targetEndpoint": {
  2315. "nodeId": {
  2316. "id": 1181535931041
  2317. },
  2318. "slotId": {
  2319. "m_id": "{3509781E-19F1-4EC5-A585-95223D9D9C82}"
  2320. }
  2321. }
  2322. }
  2323. }
  2324. },
  2325. {
  2326. "Id": {
  2327. "id": 1198715800225
  2328. },
  2329. "Name": "srcEndpoint=(Divide (/): Out), destEndpoint=(Expect Equal: In)",
  2330. "Components": {
  2331. "Component_[3345144603268335405]": {
  2332. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2333. "Id": 3345144603268335405,
  2334. "sourceEndpoint": {
  2335. "nodeId": {
  2336. "id": 1181535931041
  2337. },
  2338. "slotId": {
  2339. "m_id": "{F0DEE82C-C16D-4BE3-A7BB-388725C81697}"
  2340. }
  2341. },
  2342. "targetEndpoint": {
  2343. "nodeId": {
  2344. "id": 1168651029153
  2345. },
  2346. "slotId": {
  2347. "m_id": "{160CE816-09E1-4DF2-B0EC-35BF1181AD12}"
  2348. }
  2349. }
  2350. }
  2351. }
  2352. },
  2353. {
  2354. "Id": {
  2355. "id": 1203010767521
  2356. },
  2357. "Name": "srcEndpoint=(Get Variable: Number), destEndpoint=(Expect Equal: Reference :-()",
  2358. "Components": {
  2359. "Component_[18037710462207681811]": {
  2360. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2361. "Id": 18037710462207681811,
  2362. "sourceEndpoint": {
  2363. "nodeId": {
  2364. "id": 1185830898337
  2365. },
  2366. "slotId": {
  2367. "m_id": "{11BAE3AD-2942-4B3B-9222-65AC043869DD}"
  2368. }
  2369. },
  2370. "targetEndpoint": {
  2371. "nodeId": {
  2372. "id": 1168651029153
  2373. },
  2374. "slotId": {
  2375. "m_id": "{19C06FA8-549A-4335-A820-431B6F62BED5}"
  2376. }
  2377. }
  2378. }
  2379. }
  2380. },
  2381. {
  2382. "Id": {
  2383. "id": 1207305734817
  2384. },
  2385. "Name": "srcEndpoint=(Divide (/): Result), destEndpoint=(Expect Equal: Candidate :-()",
  2386. "Components": {
  2387. "Component_[6296392372378900761]": {
  2388. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2389. "Id": 6296392372378900761,
  2390. "sourceEndpoint": {
  2391. "nodeId": {
  2392. "id": 1181535931041
  2393. },
  2394. "slotId": {
  2395. "m_id": "{CE095361-77CA-41D9-A662-54485C02CF32}"
  2396. }
  2397. },
  2398. "targetEndpoint": {
  2399. "nodeId": {
  2400. "id": 1168651029153
  2401. },
  2402. "slotId": {
  2403. "m_id": "{DF9EDA3D-8330-474C-AC48-0CC4874EFA2B}"
  2404. }
  2405. }
  2406. }
  2407. }
  2408. },
  2409. {
  2410. "Id": {
  2411. "id": 1215895669409
  2412. },
  2413. "Name": "srcEndpoint=(Get Variable: Number), destEndpoint=(Divide (/): Number)",
  2414. "Components": {
  2415. "Component_[512978035738006967]": {
  2416. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2417. "Id": 512978035738006967,
  2418. "sourceEndpoint": {
  2419. "nodeId": {
  2420. "id": 1185830898337
  2421. },
  2422. "slotId": {
  2423. "m_id": "{11BAE3AD-2942-4B3B-9222-65AC043869DD}"
  2424. }
  2425. },
  2426. "targetEndpoint": {
  2427. "nodeId": {
  2428. "id": 1181535931041
  2429. },
  2430. "slotId": {
  2431. "m_id": "{5EC21B44-F852-4C9D-BCA3-33A3850ACDF0}"
  2432. }
  2433. }
  2434. }
  2435. }
  2436. },
  2437. {
  2438. "Id": {
  2439. "id": 29893392304801
  2440. },
  2441. "Name": "srcEndpoint=(Expect Equal: Out), destEndpoint=(Divide (/): In)",
  2442. "Components": {
  2443. "Component_[17363750629642935404]": {
  2444. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2445. "Id": 17363750629642935404,
  2446. "sourceEndpoint": {
  2447. "nodeId": {
  2448. "id": 1168651029153
  2449. },
  2450. "slotId": {
  2451. "m_id": "{EE17CE3D-BD0E-4994-975D-2103C3CF8E30}"
  2452. }
  2453. },
  2454. "targetEndpoint": {
  2455. "nodeId": {
  2456. "id": 12253961620129
  2457. },
  2458. "slotId": {
  2459. "m_id": "{92975D74-E00E-4025-875D-3E3DCAEEB1E0}"
  2460. }
  2461. }
  2462. }
  2463. }
  2464. },
  2465. {
  2466. "Id": {
  2467. "id": 34291438815905
  2468. },
  2469. "Name": "srcEndpoint=(Divide (/): Out), destEndpoint=(Expect Equal: In)",
  2470. "Components": {
  2471. "Component_[13066527125496072722]": {
  2472. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2473. "Id": 13066527125496072722,
  2474. "sourceEndpoint": {
  2475. "nodeId": {
  2476. "id": 12253961620129
  2477. },
  2478. "slotId": {
  2479. "m_id": "{BC7784B5-393B-4675-941B-0F1AC4798EFF}"
  2480. }
  2481. },
  2482. "targetEndpoint": {
  2483. "nodeId": {
  2484. "id": 31740228242081
  2485. },
  2486. "slotId": {
  2487. "m_id": "{160CE816-09E1-4DF2-B0EC-35BF1181AD12}"
  2488. }
  2489. }
  2490. }
  2491. }
  2492. },
  2493. {
  2494. "Id": {
  2495. "id": 34819719793313
  2496. },
  2497. "Name": "srcEndpoint=(Divide (/): Result), destEndpoint=(Expect Equal: Candidate)",
  2498. "Components": {
  2499. "Component_[12823351292683864062]": {
  2500. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2501. "Id": 12823351292683864062,
  2502. "sourceEndpoint": {
  2503. "nodeId": {
  2504. "id": 12253961620129
  2505. },
  2506. "slotId": {
  2507. "m_id": "{AB3B3678-0FE9-40AD-860E-F7F79AE56EA7}"
  2508. }
  2509. },
  2510. "targetEndpoint": {
  2511. "nodeId": {
  2512. "id": 31740228242081
  2513. },
  2514. "slotId": {
  2515. "m_id": "{DF9EDA3D-8330-474C-AC48-0CC4874EFA2B}"
  2516. }
  2517. }
  2518. }
  2519. }
  2520. },
  2521. {
  2522. "Id": {
  2523. "id": 36696620501665
  2524. },
  2525. "Name": "srcEndpoint=(Expect Equal: Out), destEndpoint=(Divide (/): In)",
  2526. "Components": {
  2527. "Component_[16404805862255499880]": {
  2528. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2529. "Id": 16404805862255499880,
  2530. "sourceEndpoint": {
  2531. "nodeId": {
  2532. "id": 31740228242081
  2533. },
  2534. "slotId": {
  2535. "m_id": "{EE17CE3D-BD0E-4994-975D-2103C3CF8E30}"
  2536. }
  2537. },
  2538. "targetEndpoint": {
  2539. "nodeId": {
  2540. "id": 20487413926561
  2541. },
  2542. "slotId": {
  2543. "m_id": "{D8B7C3B3-40C6-4C52-B832-23FDCAF81936}"
  2544. }
  2545. }
  2546. }
  2547. }
  2548. },
  2549. {
  2550. "Id": {
  2551. "id": 39565658655393
  2552. },
  2553. "Name": "srcEndpoint=(Divide (/): Out), destEndpoint=(Expect Equal: In)",
  2554. "Components": {
  2555. "Component_[7778421055448760942]": {
  2556. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2557. "Id": 7778421055448760942,
  2558. "sourceEndpoint": {
  2559. "nodeId": {
  2560. "id": 20487413926561
  2561. },
  2562. "slotId": {
  2563. "m_id": "{239B05FD-12A7-46D8-996C-80008AA16EA6}"
  2564. }
  2565. },
  2566. "targetEndpoint": {
  2567. "nodeId": {
  2568. "id": 37014448081569
  2569. },
  2570. "slotId": {
  2571. "m_id": "{160CE816-09E1-4DF2-B0EC-35BF1181AD12}"
  2572. }
  2573. }
  2574. }
  2575. }
  2576. },
  2577. {
  2578. "Id": {
  2579. "id": 39973680548513
  2580. },
  2581. "Name": "srcEndpoint=(Divide (/): Result), destEndpoint=(Expect Equal: Candidate)",
  2582. "Components": {
  2583. "Component_[6883819118437453584]": {
  2584. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2585. "Id": 6883819118437453584,
  2586. "sourceEndpoint": {
  2587. "nodeId": {
  2588. "id": 20487413926561
  2589. },
  2590. "slotId": {
  2591. "m_id": "{DF5D2BF9-EA42-4DA9-9685-41FE5FED0F2F}"
  2592. }
  2593. },
  2594. "targetEndpoint": {
  2595. "nodeId": {
  2596. "id": 37014448081569
  2597. },
  2598. "slotId": {
  2599. "m_id": "{DF9EDA3D-8330-474C-AC48-0CC4874EFA2B}"
  2600. }
  2601. }
  2602. }
  2603. }
  2604. },
  2605. {
  2606. "Id": {
  2607. "id": 41687372499617
  2608. },
  2609. "Name": "srcEndpoint=(Expect Equal: Out), destEndpoint=(Divide (/): In)",
  2610. "Components": {
  2611. "Component_[16603404189833784640]": {
  2612. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2613. "Id": 16603404189833784640,
  2614. "sourceEndpoint": {
  2615. "nodeId": {
  2616. "id": 37014448081569
  2617. },
  2618. "slotId": {
  2619. "m_id": "{EE17CE3D-BD0E-4994-975D-2103C3CF8E30}"
  2620. }
  2621. },
  2622. "targetEndpoint": {
  2623. "nodeId": {
  2624. "id": 26392993958561
  2625. },
  2626. "slotId": {
  2627. "m_id": "{2DA9621D-89F5-4FC7-AAFB-74EFF6DF9DF6}"
  2628. }
  2629. }
  2630. }
  2631. }
  2632. },
  2633. {
  2634. "Id": {
  2635. "id": 44693849606817
  2636. },
  2637. "Name": "srcEndpoint=(Divide (/): Out), destEndpoint=(Expect Equal: In)",
  2638. "Components": {
  2639. "Component_[8419788964815017141]": {
  2640. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2641. "Id": 8419788964815017141,
  2642. "sourceEndpoint": {
  2643. "nodeId": {
  2644. "id": 26392993958561
  2645. },
  2646. "slotId": {
  2647. "m_id": "{C0525510-09ED-418C-9E81-D15F04B11EFD}"
  2648. }
  2649. },
  2650. "targetEndpoint": {
  2651. "nodeId": {
  2652. "id": 42365977332385
  2653. },
  2654. "slotId": {
  2655. "m_id": "{160CE816-09E1-4DF2-B0EC-35BF1181AD12}"
  2656. }
  2657. }
  2658. }
  2659. }
  2660. },
  2661. {
  2662. "Id": {
  2663. "id": 45196360780449
  2664. },
  2665. "Name": "srcEndpoint=(Divide (/): Result), destEndpoint=(Expect Equal: Candidate)",
  2666. "Components": {
  2667. "Component_[9839298387938899677]": {
  2668. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2669. "Id": 9839298387938899677,
  2670. "sourceEndpoint": {
  2671. "nodeId": {
  2672. "id": 26392993958561
  2673. },
  2674. "slotId": {
  2675. "m_id": "{95D8F3DA-3902-4D78-801C-13BB3D02B2EB}"
  2676. }
  2677. },
  2678. "targetEndpoint": {
  2679. "nodeId": {
  2680. "id": 42365977332385
  2681. },
  2682. "slotId": {
  2683. "m_id": "{DF9EDA3D-8330-474C-AC48-0CC4874EFA2B}"
  2684. }
  2685. }
  2686. }
  2687. }
  2688. },
  2689. {
  2690. "Id": {
  2691. "id": 49280874678945
  2692. },
  2693. "Name": "srcEndpoint=(Expect Equal: Out), destEndpoint=(Mark Complete: In)",
  2694. "Components": {
  2695. "Component_[12716831859009517106]": {
  2696. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2697. "Id": 12716831859009517106,
  2698. "sourceEndpoint": {
  2699. "nodeId": {
  2700. "id": 42365977332385
  2701. },
  2702. "slotId": {
  2703. "m_id": "{EE17CE3D-BD0E-4994-975D-2103C3CF8E30}"
  2704. }
  2705. },
  2706. "targetEndpoint": {
  2707. "nodeId": {
  2708. "id": 1172945996449
  2709. },
  2710. "slotId": {
  2711. "m_id": "{76D0BB2A-077E-4ED4-AC30-A58947DD542A}"
  2712. }
  2713. }
  2714. }
  2715. }
  2716. }
  2717. ]
  2718. },
  2719. "m_assetType": "{3E2AC8CD-713F-453E-967F-29517F331784}",
  2720. "versionData": {
  2721. "_grammarVersion": 1,
  2722. "_runtimeVersion": 1,
  2723. "_fileVersion": 1
  2724. },
  2725. "m_variableCounter": 18,
  2726. "GraphCanvasData": [
  2727. {
  2728. "Key": {
  2729. "id": 1164356061857
  2730. },
  2731. "Value": {
  2732. "ComponentData": {
  2733. "{5F84B500-8C45-40D1-8EFC-A5306B241444}": {
  2734. "$type": "SceneComponentSaveData",
  2735. "ViewParams": {
  2736. "Scale": 0.5191094480805437,
  2737. "AnchorX": 231.16513061523438,
  2738. "AnchorY": -597.1765747070313
  2739. }
  2740. }
  2741. }
  2742. }
  2743. },
  2744. {
  2745. "Key": {
  2746. "id": 1168651029153
  2747. },
  2748. "Value": {
  2749. "ComponentData": {
  2750. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2751. "$type": "GeneralNodeTitleComponentSaveData",
  2752. "PaletteOverride": "MethodNodeTitlePalette"
  2753. },
  2754. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2755. "$type": "GeometrySaveData",
  2756. "Position": [
  2757. 1020.0,
  2758. -500.0
  2759. ]
  2760. },
  2761. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2762. "$type": "StylingComponentSaveData",
  2763. "SubStyle": ".method"
  2764. },
  2765. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2766. "$type": "PersistentIdComponentSaveData",
  2767. "PersistentId": "{6B3517EA-EFDD-452A-954C-8FCFF283F598}"
  2768. }
  2769. }
  2770. }
  2771. },
  2772. {
  2773. "Key": {
  2774. "id": 1172945996449
  2775. },
  2776. "Value": {
  2777. "ComponentData": {
  2778. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  2779. "$type": "NodeSaveData"
  2780. },
  2781. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2782. "$type": "GeneralNodeTitleComponentSaveData",
  2783. "PaletteOverride": "MethodNodeTitlePalette"
  2784. },
  2785. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2786. "$type": "GeometrySaveData",
  2787. "Position": [
  2788. 1420.0,
  2789. 380.0
  2790. ]
  2791. },
  2792. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2793. "$type": "StylingComponentSaveData",
  2794. "SubStyle": ".method"
  2795. },
  2796. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2797. "$type": "PersistentIdComponentSaveData",
  2798. "PersistentId": "{DC7D5E88-8919-4CD0-921F-27B4AEF0A1E0}"
  2799. }
  2800. }
  2801. }
  2802. },
  2803. {
  2804. "Key": {
  2805. "id": 1177240963745
  2806. },
  2807. "Value": {
  2808. "ComponentData": {
  2809. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2810. "$type": "GeneralNodeTitleComponentSaveData",
  2811. "PaletteOverride": "TimeNodeTitlePalette"
  2812. },
  2813. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2814. "$type": "GeometrySaveData",
  2815. "Position": [
  2816. 320.0,
  2817. -580.0
  2818. ]
  2819. },
  2820. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2821. "$type": "StylingComponentSaveData",
  2822. "SubStyle": ".time"
  2823. },
  2824. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2825. "$type": "PersistentIdComponentSaveData",
  2826. "PersistentId": "{9C20F353-185D-4DCB-9246-4EA8FFCE3976}"
  2827. }
  2828. }
  2829. }
  2830. },
  2831. {
  2832. "Key": {
  2833. "id": 1181535931041
  2834. },
  2835. "Value": {
  2836. "ComponentData": {
  2837. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2838. "$type": "GeneralNodeTitleComponentSaveData",
  2839. "PaletteOverride": "MathNodeTitlePalette"
  2840. },
  2841. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2842. "$type": "GeometrySaveData",
  2843. "Position": [
  2844. 680.0,
  2845. -580.0
  2846. ]
  2847. },
  2848. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2849. "$type": "StylingComponentSaveData",
  2850. "SubStyle": ".math"
  2851. },
  2852. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2853. "$type": "PersistentIdComponentSaveData",
  2854. "PersistentId": "{29EBAB91-F9D8-4E6D-9F07-8C0FDEFC5B7D}"
  2855. }
  2856. }
  2857. }
  2858. },
  2859. {
  2860. "Key": {
  2861. "id": 1185830898337
  2862. },
  2863. "Value": {
  2864. "ComponentData": {
  2865. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2866. "$type": "GeneralNodeTitleComponentSaveData",
  2867. "PaletteOverride": "GetVariableNodeTitlePalette"
  2868. },
  2869. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2870. "$type": "GeometrySaveData",
  2871. "Position": [
  2872. 500.0,
  2873. -580.0
  2874. ]
  2875. },
  2876. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2877. "$type": "StylingComponentSaveData",
  2878. "SubStyle": ".getVariable"
  2879. },
  2880. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2881. "$type": "PersistentIdComponentSaveData",
  2882. "PersistentId": "{D683EAC5-CF8C-49EC-B553-285BCF81741B}"
  2883. }
  2884. }
  2885. }
  2886. },
  2887. {
  2888. "Key": {
  2889. "id": 12253961620129
  2890. },
  2891. "Value": {
  2892. "ComponentData": {
  2893. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  2894. "$type": "NodeSaveData"
  2895. },
  2896. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2897. "$type": "GeneralNodeTitleComponentSaveData",
  2898. "PaletteOverride": "MathNodeTitlePalette"
  2899. },
  2900. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2901. "$type": "GeometrySaveData",
  2902. "Position": [
  2903. 560.0,
  2904. -200.0
  2905. ]
  2906. },
  2907. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2908. "$type": "StylingComponentSaveData"
  2909. },
  2910. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2911. "$type": "PersistentIdComponentSaveData",
  2912. "PersistentId": "{192E8FFB-1CC9-4653-B81D-13FCCBEB4ECB}"
  2913. }
  2914. }
  2915. }
  2916. },
  2917. {
  2918. "Key": {
  2919. "id": 20487413926561
  2920. },
  2921. "Value": {
  2922. "ComponentData": {
  2923. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  2924. "$type": "NodeSaveData"
  2925. },
  2926. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2927. "$type": "GeneralNodeTitleComponentSaveData",
  2928. "PaletteOverride": "MathNodeTitlePalette"
  2929. },
  2930. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2931. "$type": "GeometrySaveData",
  2932. "Position": [
  2933. 420.0,
  2934. 40.0
  2935. ]
  2936. },
  2937. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2938. "$type": "StylingComponentSaveData"
  2939. },
  2940. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2941. "$type": "PersistentIdComponentSaveData",
  2942. "PersistentId": "{23988C07-6729-4D5C-841B-5991F24FDB63}"
  2943. }
  2944. }
  2945. }
  2946. },
  2947. {
  2948. "Key": {
  2949. "id": 26392993958561
  2950. },
  2951. "Value": {
  2952. "ComponentData": {
  2953. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  2954. "$type": "NodeSaveData"
  2955. },
  2956. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2957. "$type": "GeneralNodeTitleComponentSaveData",
  2958. "PaletteOverride": "MathNodeTitlePalette"
  2959. },
  2960. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2961. "$type": "GeometrySaveData",
  2962. "Position": [
  2963. 540.0,
  2964. 300.0
  2965. ]
  2966. },
  2967. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2968. "$type": "StylingComponentSaveData"
  2969. },
  2970. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2971. "$type": "PersistentIdComponentSaveData",
  2972. "PersistentId": "{57EA1689-B3CE-41AF-837B-3813F02027BC}"
  2973. }
  2974. }
  2975. }
  2976. },
  2977. {
  2978. "Key": {
  2979. "id": 31740228242081
  2980. },
  2981. "Value": {
  2982. "ComponentData": {
  2983. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  2984. "$type": "NodeSaveData"
  2985. },
  2986. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2987. "$type": "GeneralNodeTitleComponentSaveData",
  2988. "PaletteOverride": "MethodNodeTitlePalette"
  2989. },
  2990. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2991. "$type": "GeometrySaveData",
  2992. "Position": [
  2993. 1020.0,
  2994. -220.0
  2995. ]
  2996. },
  2997. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2998. "$type": "StylingComponentSaveData",
  2999. "SubStyle": ".method"
  3000. },
  3001. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  3002. "$type": "PersistentIdComponentSaveData",
  3003. "PersistentId": "{E4764AED-AA7D-4F30-BF1C-5331BEE64D77}"
  3004. }
  3005. }
  3006. }
  3007. },
  3008. {
  3009. "Key": {
  3010. "id": 37014448081569
  3011. },
  3012. "Value": {
  3013. "ComponentData": {
  3014. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  3015. "$type": "NodeSaveData"
  3016. },
  3017. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  3018. "$type": "GeneralNodeTitleComponentSaveData",
  3019. "PaletteOverride": "MethodNodeTitlePalette"
  3020. },
  3021. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  3022. "$type": "GeometrySaveData",
  3023. "Position": [
  3024. 1060.0,
  3025. 20.0
  3026. ]
  3027. },
  3028. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  3029. "$type": "StylingComponentSaveData",
  3030. "SubStyle": ".method"
  3031. },
  3032. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  3033. "$type": "PersistentIdComponentSaveData",
  3034. "PersistentId": "{7EBAB3B5-6864-494E-B8A9-AE544CEED02F}"
  3035. }
  3036. }
  3037. }
  3038. },
  3039. {
  3040. "Key": {
  3041. "id": 42365977332385
  3042. },
  3043. "Value": {
  3044. "ComponentData": {
  3045. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  3046. "$type": "NodeSaveData"
  3047. },
  3048. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  3049. "$type": "GeneralNodeTitleComponentSaveData",
  3050. "PaletteOverride": "MethodNodeTitlePalette"
  3051. },
  3052. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  3053. "$type": "GeometrySaveData",
  3054. "Position": [
  3055. 1040.0,
  3056. 300.0
  3057. ]
  3058. },
  3059. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  3060. "$type": "StylingComponentSaveData",
  3061. "SubStyle": ".method"
  3062. },
  3063. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  3064. "$type": "PersistentIdComponentSaveData",
  3065. "PersistentId": "{EC283665-E301-4EC7-A6EF-96B64229E498}"
  3066. }
  3067. }
  3068. }
  3069. }
  3070. ],
  3071. "StatisticsHelper": {
  3072. "InstanceCounter": [
  3073. {
  3074. "Key": 955089921810928021,
  3075. "Value": 4
  3076. },
  3077. {
  3078. "Key": 4053150093067829293,
  3079. "Value": 4
  3080. },
  3081. {
  3082. "Key": 4199610336680704683,
  3083. "Value": 1
  3084. },
  3085. {
  3086. "Key": 10204019744198319120,
  3087. "Value": 1
  3088. },
  3089. {
  3090. "Key": 11905347379560322424,
  3091. "Value": 1
  3092. }
  3093. ]
  3094. }
  3095. }
  3096. }
  3097. }
  3098. }
  3099. }