From 6c3903212942083b031d983414fe54ff8fbefee7 Mon Sep 17 00:00:00 2001 From: Andreas Dieckmann Date: Sat, 28 Sep 2024 22:04:23 +0200 Subject: [PATCH] #428 --- nodes/3.x/Document.ProjectParameters.dyf | 825 +++++++++++++++++++++++ 1 file changed, 825 insertions(+) create mode 100644 nodes/3.x/Document.ProjectParameters.dyf diff --git a/nodes/3.x/Document.ProjectParameters.dyf b/nodes/3.x/Document.ProjectParameters.dyf new file mode 100644 index 00000000..34a05c1f --- /dev/null +++ b/nodes/3.x/Document.ProjectParameters.dyf @@ -0,0 +1,825 @@ +{ + "Uuid": "10d03ac4-6147-4636-a428-bb1098698c58", + "IsCustomNode": true, + "Category": "Clockwork.Revit.Application.Query", + "Description": "Retrieves all project parameters and the categories they have been assigned to", + "Name": "Document.ProjectParameters", + "ElementResolver": { + "ResolutionMap": { + "Math": { + "Key": "DSCore.Math", + "Value": "DSCoreNodes.dll" + } + } + }, + "Inputs": [], + "Outputs": [], + "Nodes": [ + { + "ConcreteType": "Dynamo.Graph.Nodes.CodeBlockNodeModel, DynamoCore", + "Id": "c6ef3c8a5c154db5906bb4301ba57c73", + "NodeType": "CodeBlockNode", + "Inputs": [ + { + "Id": "c5c35b75ec4141068c14a444d9cb86ce", + "Name": "seq", + "Description": "seq", + "UsingDefaultValue": false, + "Level": 2, + "UseLevels": false, + "KeepListStructure": false + } + ], + "Outputs": [ + { + "Id": "ecafbe60c05343aca100ea432cc22498", + "Name": "", + "Description": "Value of expression at line 1", + "UsingDefaultValue": false, + "Level": 2, + "UseLevels": false, + "KeepListStructure": false + }, + { + "Id": "eff19fc65d5c4c129be1309d6bed40dd", + "Name": "", + "Description": "Value of expression at line 2", + "UsingDefaultValue": false, + "Level": 2, + "UseLevels": false, + "KeepListStructure": false + }, + { + "Id": "852dae89aac546f38088a99802a71ab5", + "Name": "", + "Description": "Value of expression at line 3", + "UsingDefaultValue": false, + "Level": 2, + "UseLevels": false, + "KeepListStructure": false + }, + { + "Id": "174c4f892b7841dfb2d88b0c67fc79c3", + "Name": "", + "Description": "Value of expression at line 4", + "UsingDefaultValue": false, + "Level": 2, + "UseLevels": false, + "KeepListStructure": false + }, + { + "Id": "5cea456d11524dd988a362ff9c4370ab", + "Name": "", + "Description": "Value of expression at line 5", + "UsingDefaultValue": false, + "Level": 2, + "UseLevels": false, + "KeepListStructure": false + }, + { + "Id": "d891b8721b6a474eb63f1a4f19147681", + "Name": "", + "Description": "Value of expression at line 6", + "UsingDefaultValue": false, + "Level": 2, + "UseLevels": false, + "KeepListStructure": false + }, + { + "Id": "f618c7281a7543cfa69d02db2428504f", + "Name": "", + "Description": "Value of expression at line 7", + "UsingDefaultValue": false, + "Level": 2, + "UseLevels": false, + "KeepListStructure": false + }, + { + "Id": "310e3ebcbdc243e5ad748afdc8a28395", + "Name": "", + "Description": "Value of expression at line 8", + "UsingDefaultValue": false, + "Level": 2, + "UseLevels": false, + "KeepListStructure": false + }, + { + "Id": "dbe2331ca13149248f6e69e070687d7e", + "Name": "", + "Description": "Value of expression at line 9", + "UsingDefaultValue": false, + "Level": 2, + "UseLevels": false, + "KeepListStructure": false + }, + { + "Id": "998e1530f12c4671b22fdfb9adbabcde", + "Name": "", + "Description": "Value of expression at line 10", + "UsingDefaultValue": false, + "Level": 2, + "UseLevels": false, + "KeepListStructure": false + }, + { + "Id": "47f687e19ef04158a48fe8483cb40f43", + "Name": "", + "Description": "Value of expression at line 11", + "UsingDefaultValue": false, + "Level": 2, + "UseLevels": false, + "KeepListStructure": false + } + ], + "Replication": "Disabled", + "Description": "Allows for DesignScript code to be authored directly", + "Code": "seq[0];\nseq[1];\nseq[2];\nseq[3];\nseq[4];\nseq[5];\nseq[6];\nseq[7];\nseq[8];\nseq[9];\nseq[10];" + }, + { + "ConcreteType": "PythonNodeModels.PythonNode, PythonNodeModels", + "Code": "import System\r\nimport clr\r\nclr.AddReference('RevitAPI')\r\nfrom Autodesk.Revit.DB import *\r\nimport Autodesk\r\n\r\nclr.AddReference(\"RevitNodes\")\r\nimport Revit\r\nclr.ImportExtensions(Revit.Elements)\r\n\r\nclr.AddReference(\"RevitServices\")\r\nimport RevitServices\r\nfrom RevitServices.Persistence import DocumentManager\r\n\r\ninputdoc = UnwrapElement(IN[1])\r\nif inputdoc == None:\r\n\tdoc = DocumentManager.Instance.CurrentDBDocument\r\nelif inputdoc.GetType().ToString() == \"Autodesk.Revit.DB.RevitLinkInstance\":\r\n\tdoc = inputdoc.GetLinkDocument()\r\nelif inputdoc.GetType().ToString() == \"Autodesk.Revit.DB.Document\":\r\n\tdoc = inputdoc\r\nelse: doc = None\r\nversion = IN[2]\r\n\r\nnames = []\r\ncats = []\r\nvag = []\r\npgs = []\r\npts = []\r\nuts = []\r\nisvis = []\r\nelems = []\r\nguids = []\r\nisinst = []\r\nbics = []\r\niterator = doc.ParameterBindings.ForwardIterator()\r\nwhile iterator.MoveNext():\r\n\tvag.append(iterator.Key.VariesAcrossGroups)\r\n\tnames.append(iterator.Key.Name)\r\n\tif version > 2021: \r\n\t\tpts.append(iterator.Key.GetDataType())\r\n\t\tuts.append(iterator.Key.GetDataType())\r\n\t\tpgs.append(iterator.Key.GetGroupTypeId())\r\n\telse: \r\n\t\tpts.append(iterator.Key.ParameterType)\r\n\t\tuts.append(iterator.Key.UnitType)\r\n\t\tpgs.append(iterator.Key.ParameterGroup)\r\n\tisvis.append(iterator.Key.Visible)\r\n\telem = doc.GetElement(iterator.Key.Id)\r\n\telems.append(elem)\r\n\tif elem.GetType().ToString() == 'Autodesk.Revit.DB.SharedParameterElement':\r\n\t\tguids.append(elem.GuidValue)\r\n\telse: guids.append(None)\r\n\tif iterator.Current.GetType().ToString() == 'Autodesk.Revit.DB.InstanceBinding':\r\n\t\tisinst.append(True)\r\n\telse:\r\n\t\tisinst.append(False)\r\n\tthesecats = []\r\n\tbuiltincats = []\r\n\tfor cat in iterator.Current.Categories:\r\n\t\ttry:\r\n\t\t\tthesecats.append(Revit.Elements.Category.ById(cat.Id.IntegerValue))\r\n\t\texcept:\r\n\t\t\t# Return null if category is not supported by Dynamo\r\n\t\t\t# This way the user knows there are unsupported categories assigned\r\n\t\t\tthesecats.append(None)\r\n\t\tbuiltincats.append(System.Enum.ToObject(BuiltInCategory, cat.Id.IntegerValue))\r\n\tcats.append(thesecats)\r\n\tbics.append(builtincats)\r\nOUT = (names,cats,vag, pgs, pts, uts, isvis, elems, guids, isinst, bics)", + "Engine": "IronPython2", + "VariableInputPorts": true, + "Id": "146117d840fa492a9a4c4c722866e3a0", + "NodeType": "PythonScriptNode", + "Inputs": [ + { + "Id": "823070a4bbec43658b0aa79b93b25b58", + "Name": "IN[0]", + "Description": "Input #0", + "UsingDefaultValue": false, + "Level": 2, + "UseLevels": false, + "KeepListStructure": false + }, + { + "Id": "3d1dba29e91d4d5c95d3b7ae1235802e", + "Name": "IN[1]", + "Description": "Input #1", + "UsingDefaultValue": false, + "Level": 2, + "UseLevels": false, + "KeepListStructure": false + }, + { + "Id": "7c7059322d1b4992a81e9746684bd607", + "Name": "IN[2]", + "Description": "Input #2", + "UsingDefaultValue": false, + "Level": 2, + "UseLevels": false, + "KeepListStructure": false + } + ], + "Outputs": [ + { + "Id": "ed0a82ab0862410496952f007e75d4c4", + "Name": "OUT", + "Description": "Result of the python script", + "UsingDefaultValue": false, + "Level": 2, + "UseLevels": false, + "KeepListStructure": false + } + ], + "Replication": "Disabled", + "Description": "Runs an embedded Python script." + }, + { + "ConcreteType": "Dynamo.Graph.Nodes.CustomNodes.Symbol, DynamoCore", + "Parameter": { + "Name": "toggle", + "TypeName": "bool", + "TypeRank": 0, + "DefaultValue": "true", + "Description": "" + }, + "Id": "5a6849e5c7764825a27c81935cdf8437", + "NodeType": "InputNode", + "Inputs": [], + "Outputs": [ + { + "Id": "c6fa5d46232e4d0ea1ef59db6f9d53d1", + "Name": "", + "Description": "Symbol", + "UsingDefaultValue": false, + "Level": 2, + "UseLevels": false, + "KeepListStructure": false + } + ], + "Replication": "Disabled", + "Description": "A function parameter, use with custom nodes.\r\n\r\nYou can specify the type and default value for parameter. E.g.,\r\n\r\ninput : var[]..[]\r\nvalue : bool = false" + }, + { + "ConcreteType": "Dynamo.Graph.Nodes.CustomNodes.Output, DynamoCore", + "ElementResolver": null, + "Symbol": "paramName", + "Id": "a6b6f2b2c872450d9d1c0b661169ec50", + "NodeType": "OutputNode", + "Inputs": [ + { + "Id": "2223b871f46148378f309aa665163d09", + "Name": "", + "Description": "", + "UsingDefaultValue": false, + "Level": 2, + "UseLevels": false, + "KeepListStructure": false + } + ], + "Outputs": [], + "Replication": "Disabled", + "Description": "A function output, use with custom nodes" + }, + { + "ConcreteType": "Dynamo.Graph.Nodes.CustomNodes.Output, DynamoCore", + "ElementResolver": null, + "Symbol": "categories", + "Id": "8e069d6aa1cb43e2b96895a12accec85", + "NodeType": "OutputNode", + "Inputs": [ + { + "Id": "d9492d49fd6f4432aa4fc2d8c064728b", + "Name": "", + "Description": "", + "UsingDefaultValue": false, + "Level": 2, + "UseLevels": false, + "KeepListStructure": false + } + ], + "Outputs": [], + "Replication": "Disabled", + "Description": "A function output, use with custom nodes" + }, + { + "ConcreteType": "Dynamo.Graph.Nodes.CustomNodes.Symbol, DynamoCore", + "Parameter": { + "Name": "docOrRevitLinkInstance", + "TypeName": "var", + "TypeRank": 0, + "DefaultValue": "null", + "Description": " Use only if you want to query a linked model" + }, + "Id": "8f4231769166437a9c940dfa21720740", + "NodeType": "InputNode", + "Inputs": [], + "Outputs": [ + { + "Id": "bd9308c2cede461187762e7223b31d35", + "Name": "", + "Description": "Symbol", + "UsingDefaultValue": false, + "Level": 2, + "UseLevels": false, + "KeepListStructure": false + } + ], + "Replication": "Disabled", + "Description": "A function parameter, use with custom nodes.\r\n\r\nYou can specify the type and default value for parameter. E.g.,\r\n\r\ninput : var[]..[]\r\nvalue : bool = false" + }, + { + "ConcreteType": "Dynamo.Graph.Nodes.CustomNodes.Output, DynamoCore", + "ElementResolver": null, + "Symbol": "variesAcrossGroups", + "Id": "bb9912c3395b46418671bfe8574a6ede", + "NodeType": "OutputNode", + "Inputs": [ + { + "Id": "5ab417c245ac410bba7cc33043578c6a", + "Name": "", + "Description": "", + "UsingDefaultValue": false, + "Level": 2, + "UseLevels": false, + "KeepListStructure": false + } + ], + "Outputs": [], + "Replication": "Disabled", + "Description": "A function output, use with custom nodes" + }, + { + "ConcreteType": "Dynamo.Graph.Nodes.CustomNodes.Output, DynamoCore", + "ElementResolver": null, + "Symbol": "parameterGroup", + "Id": "a1549924b1a04716a475de3cf3d4ccb3", + "NodeType": "OutputNode", + "Inputs": [ + { + "Id": "a4ef7431b49f4612bd2045d855acbb83", + "Name": "", + "Description": "", + "UsingDefaultValue": false, + "Level": 2, + "UseLevels": false, + "KeepListStructure": false + } + ], + "Outputs": [], + "Replication": "Disabled", + "Description": "A function output, use with custom nodes" + }, + { + "ConcreteType": "Dynamo.Graph.Nodes.CustomNodes.Output, DynamoCore", + "ElementResolver": null, + "Symbol": "// In Revit 2022+ will return the ForgeTypeId\r\nparameterType", + "Id": "cedacd54ee174f89bb797212c837f224", + "NodeType": "OutputNode", + "Inputs": [ + { + "Id": "9e834a7f974c42f788324aba1e005be3", + "Name": "", + "Description": "", + "UsingDefaultValue": false, + "Level": 2, + "UseLevels": false, + "KeepListStructure": false + } + ], + "Outputs": [], + "Replication": "Disabled", + "Description": "A function output, use with custom nodes" + }, + { + "ConcreteType": "Dynamo.Graph.Nodes.CustomNodes.Output, DynamoCore", + "ElementResolver": null, + "Symbol": "// In Revit 2022+ will return the SpecTypeId\r\nunitType", + "Id": "598d55cc56b749f096968d7b3a9e64dc", + "NodeType": "OutputNode", + "Inputs": [ + { + "Id": "ab40de8b46e344bf95e0222d7ec0e46d", + "Name": "", + "Description": "", + "UsingDefaultValue": false, + "Level": 2, + "UseLevels": false, + "KeepListStructure": false + } + ], + "Outputs": [], + "Replication": "Disabled", + "Description": "A function output, use with custom nodes" + }, + { + "ConcreteType": "Dynamo.Graph.Nodes.CustomNodes.Output, DynamoCore", + "ElementResolver": null, + "Symbol": "isVisible", + "Id": "c671168b1a1b415a89dc2aa6e977c806", + "NodeType": "OutputNode", + "Inputs": [ + { + "Id": "9b17761348044f5a9d64f02ff99d97bd", + "Name": "", + "Description": "", + "UsingDefaultValue": false, + "Level": 2, + "UseLevels": false, + "KeepListStructure": false + } + ], + "Outputs": [], + "Replication": "Disabled", + "Description": "A function output, use with custom nodes" + }, + { + "ConcreteType": "Dynamo.Graph.Nodes.CustomNodes.Output, DynamoCore", + "ElementResolver": null, + "Symbol": "parameterElement", + "Id": "f15d212fcadb47b59e02f2c8ebf5920d", + "NodeType": "OutputNode", + "Inputs": [ + { + "Id": "d0b10827d5f54477b1400f858a0549d9", + "Name": "", + "Description": "", + "UsingDefaultValue": false, + "Level": 2, + "UseLevels": false, + "KeepListStructure": false + } + ], + "Outputs": [], + "Replication": "Disabled", + "Description": "A function output, use with custom nodes" + }, + { + "ConcreteType": "Dynamo.Graph.Nodes.CustomNodes.Output, DynamoCore", + "ElementResolver": null, + "Symbol": "GUID", + "Id": "271d23d8798c4631911e8ed7122ebfab", + "NodeType": "OutputNode", + "Inputs": [ + { + "Id": "bce27de221c740fbb7a30f80f5575728", + "Name": "", + "Description": "", + "UsingDefaultValue": false, + "Level": 2, + "UseLevels": false, + "KeepListStructure": false + } + ], + "Outputs": [], + "Replication": "Disabled", + "Description": "A function output, use with custom nodes" + }, + { + "ConcreteType": "Dynamo.Graph.Nodes.CustomNodes.Output, DynamoCore", + "ElementResolver": null, + "Symbol": "isInstanceParameter", + "Id": "a8f00a43f3684598945710aabb3b5297", + "NodeType": "OutputNode", + "Inputs": [ + { + "Id": "ff8927cead474126b6139bf0fae25e6f", + "Name": "", + "Description": "", + "UsingDefaultValue": false, + "Level": 2, + "UseLevels": false, + "KeepListStructure": false + } + ], + "Outputs": [], + "Replication": "Disabled", + "Description": "A function output, use with custom nodes" + }, + { + "ConcreteType": "Dynamo.Graph.Nodes.CustomNodes.Output, DynamoCore", + "ElementResolver": null, + "Symbol": "builtInCategories", + "Id": "0a0a3839c9f64ad6a293046f57ed2344", + "NodeType": "OutputNode", + "Inputs": [ + { + "Id": "fa2a84e332de402c9dca80e06fc5e526", + "Name": "", + "Description": "", + "UsingDefaultValue": false, + "Level": 2, + "UseLevels": false, + "KeepListStructure": false + } + ], + "Outputs": [], + "Replication": "Disabled", + "Description": "A function output, use with custom nodes" + }, + { + "ConcreteType": "Dynamo.Graph.Nodes.CustomNodes.Function, DynamoCore", + "FunctionSignature": "3df0961d-9d46-464f-9175-0a74eeb61bc1", + "FunctionType": "Graph", + "Id": "b29c0bdbf17144568d31e4410f6de05b", + "NodeType": "FunctionNode", + "Inputs": [], + "Outputs": [ + { + "Id": "8a906a8d8039432eaa67b5422f7342ab", + "Name": "Name", + "Description": "return value", + "UsingDefaultValue": false, + "Level": 2, + "UseLevels": false, + "KeepListStructure": false + }, + { + "Id": "420ed311a19942e1a53f6e0a22a28944", + "Name": "Version", + "Description": "return value", + "UsingDefaultValue": false, + "Level": 2, + "UseLevels": false, + "KeepListStructure": false + }, + { + "Id": "03339d83872c42d8b64851bdcff4bc5d", + "Name": "Build", + "Description": "return value", + "UsingDefaultValue": false, + "Level": 2, + "UseLevels": false, + "KeepListStructure": false + }, + { + "Id": "ca13a26d64214c1da38297e541919c85", + "Name": "Language", + "Description": "return value", + "UsingDefaultValue": false, + "Level": 2, + "UseLevels": false, + "KeepListStructure": false + }, + { + "Id": "f809df68b64d4467a68f0cbf749db972", + "Name": "fullVersion", + "Description": "return value", + "UsingDefaultValue": false, + "Level": 2, + "UseLevels": false, + "KeepListStructure": false + } + ], + "Replication": "Auto", + "Description": "Retrieves the name, version and build of the current Revit application." + } + ], + "Connectors": [ + { + "Start": "ecafbe60c05343aca100ea432cc22498", + "End": "2223b871f46148378f309aa665163d09", + "Id": "0ef4c1429fef4082b73a24b152c1549b", + "IsHidden": "False" + }, + { + "Start": "eff19fc65d5c4c129be1309d6bed40dd", + "End": "d9492d49fd6f4432aa4fc2d8c064728b", + "Id": "29d632dc0be34c4dbd0dc57c89003083", + "IsHidden": "False" + }, + { + "Start": "852dae89aac546f38088a99802a71ab5", + "End": "5ab417c245ac410bba7cc33043578c6a", + "Id": "ad3e5e53a195429d930e1b4e57f2e52a", + "IsHidden": "False" + }, + { + "Start": "174c4f892b7841dfb2d88b0c67fc79c3", + "End": "a4ef7431b49f4612bd2045d855acbb83", + "Id": "178aae4fcf44473db680a6bd6acb7db8", + "IsHidden": "False" + }, + { + "Start": "5cea456d11524dd988a362ff9c4370ab", + "End": "9e834a7f974c42f788324aba1e005be3", + "Id": "55c2f04223c94dcdb6455620749b871b", + "IsHidden": "False" + }, + { + "Start": "d891b8721b6a474eb63f1a4f19147681", + "End": "ab40de8b46e344bf95e0222d7ec0e46d", + "Id": "03aee6f600b340b2914cb7a54199055c", + "IsHidden": "False" + }, + { + "Start": "f618c7281a7543cfa69d02db2428504f", + "End": "9b17761348044f5a9d64f02ff99d97bd", + "Id": "a6238d27ad9a4256b1e49a05714c97c7", + "IsHidden": "False" + }, + { + "Start": "310e3ebcbdc243e5ad748afdc8a28395", + "End": "d0b10827d5f54477b1400f858a0549d9", + "Id": "138658cefb1243f0bacb78a7d8edd1bb", + "IsHidden": "False" + }, + { + "Start": "dbe2331ca13149248f6e69e070687d7e", + "End": "bce27de221c740fbb7a30f80f5575728", + "Id": "3746b633f59a4d95ac80ef7a6cc98950", + "IsHidden": "False" + }, + { + "Start": "998e1530f12c4671b22fdfb9adbabcde", + "End": "ff8927cead474126b6139bf0fae25e6f", + "Id": "73cd366213834cceb4c5edb2730d978f", + "IsHidden": "False" + }, + { + "Start": "47f687e19ef04158a48fe8483cb40f43", + "End": "fa2a84e332de402c9dca80e06fc5e526", + "Id": "08515a72b7f244eaacb9fbcc22a318a2", + "IsHidden": "False" + }, + { + "Start": "ed0a82ab0862410496952f007e75d4c4", + "End": "c5c35b75ec4141068c14a444d9cb86ce", + "Id": "dbabb496a8344a2181cd61cdd9f537e3", + "IsHidden": "False" + }, + { + "Start": "c6fa5d46232e4d0ea1ef59db6f9d53d1", + "End": "823070a4bbec43658b0aa79b93b25b58", + "Id": "97e0c67717074e28955dc299461693cc", + "IsHidden": "False" + }, + { + "Start": "bd9308c2cede461187762e7223b31d35", + "End": "3d1dba29e91d4d5c95d3b7ae1235802e", + "Id": "11096803ac524df79f22647ff7dd1049", + "IsHidden": "False" + }, + { + "Start": "420ed311a19942e1a53f6e0a22a28944", + "End": "7c7059322d1b4992a81e9746684bd607", + "Id": "7a56562112b943f7b54eda3ae00d2bef", + "IsHidden": "False" + } + ], + "Dependencies": [ + "3df0961d-9d46-464f-9175-0a74eeb61bc1" + ], + "NodeLibraryDependencies": [ + { + "Name": "Clockwork for Dynamo 2.x", + "Version": "2.3.0", + "ReferenceType": "Package", + "Nodes": [ + "b29c0bdbf17144568d31e4410f6de05b" + ] + } + ], + "Author": "None provided", + "Bindings": [], + "View": { + "Dynamo": { + "ScaleFactor": 1.0, + "HasRunWithoutCrash": false, + "IsVisibleInDynamoLibrary": true, + "Version": "3.2.1.5366", + "RunType": "Manual", + "RunPeriod": "1000" + }, + "Camera": { + "Name": "_Background Preview", + "EyeX": -17.0, + "EyeY": 24.0, + "EyeZ": 50.0, + "LookX": 12.0, + "LookY": -13.0, + "LookZ": -58.0, + "UpX": 0.0, + "UpY": 1.0, + "UpZ": 0.0 + }, + "ConnectorPins": [], + "NodeViews": [ + { + "Id": "c6ef3c8a5c154db5906bb4301ba57c73", + "Name": "Code Block", + "IsSetAsInput": false, + "IsSetAsOutput": false, + "Excluded": false, + "ShowGeometry": true, + "X": 487.182624049574, + "Y": 50.6589962713291 + }, + { + "Id": "146117d840fa492a9a4c4c722866e3a0", + "Name": "Python Script", + "IsSetAsInput": false, + "IsSetAsOutput": false, + "Excluded": false, + "ShowGeometry": true, + "X": 263.182624049574, + "Y": 46.44566293799579 + }, + { + "Id": "5a6849e5c7764825a27c81935cdf8437", + "Name": "Input", + "IsSetAsInput": false, + "IsSetAsOutput": false, + "Excluded": false, + "ShowGeometry": true, + "X": -254.817375950426, + "Y": 17.4456629379958 + }, + { + "Id": "a6b6f2b2c872450d9d1c0b661169ec50", + "Name": "Output", + "IsSetAsInput": false, + "IsSetAsOutput": false, + "Excluded": false, + "ShowGeometry": true, + "X": 708.182624049574, + "Y": -215.261003728671 + }, + { + "Id": "8e069d6aa1cb43e2b96895a12accec85", + "Name": "Output", + "IsSetAsInput": false, + "IsSetAsOutput": false, + "Excluded": false, + "ShowGeometry": true, + "X": 708.182624049574, + "Y": -132.261003728671 + }, + { + "Id": "8f4231769166437a9c940dfa21720740", + "Name": "Input", + "IsSetAsInput": false, + "IsSetAsOutput": false, + "Excluded": false, + "ShowGeometry": true, + "X": -254.817375950426, + "Y": 101.445662937996 + }, + { + "Id": "bb9912c3395b46418671bfe8574a6ede", + "Name": "Output", + "IsSetAsInput": false, + "IsSetAsOutput": false, + "Excluded": false, + "ShowGeometry": true, + "X": 708.182624049574, + "Y": -49.2610037286709 + }, + { + "Id": "a1549924b1a04716a475de3cf3d4ccb3", + "Name": "Output", + "IsSetAsInput": false, + "IsSetAsOutput": false, + "Excluded": false, + "ShowGeometry": true, + "X": 708.182624049574, + "Y": 33.7389962713291 + }, + { + "Id": "cedacd54ee174f89bb797212c837f224", + "Name": "Output", + "IsSetAsInput": false, + "IsSetAsOutput": false, + "Excluded": false, + "ShowGeometry": true, + "X": 708.182624049574, + "Y": 116.738996271329 + }, + { + "Id": "598d55cc56b749f096968d7b3a9e64dc", + "Name": "Output", + "IsSetAsInput": false, + "IsSetAsOutput": false, + "Excluded": false, + "ShowGeometry": true, + "X": 711.0692294924723, + "Y": 191.80083130335854 + }, + { + "Id": "c671168b1a1b415a89dc2aa6e977c806", + "Name": "Output", + "IsSetAsInput": false, + "IsSetAsOutput": false, + "Excluded": false, + "ShowGeometry": true, + "X": 708.182624049574, + "Y": 282.738996271329 + }, + { + "Id": "f15d212fcadb47b59e02f2c8ebf5920d", + "Name": "Output", + "IsSetAsInput": false, + "IsSetAsOutput": false, + "Excluded": false, + "ShowGeometry": true, + "X": 708.182624049574, + "Y": 365.738996271329 + }, + { + "Id": "271d23d8798c4631911e8ed7122ebfab", + "Name": "Output", + "IsSetAsInput": false, + "IsSetAsOutput": false, + "Excluded": false, + "ShowGeometry": true, + "X": 708.182624049574, + "Y": 448.738996271329 + }, + { + "Id": "a8f00a43f3684598945710aabb3b5297", + "Name": "Output", + "IsSetAsInput": false, + "IsSetAsOutput": false, + "Excluded": false, + "ShowGeometry": true, + "X": 701.470926093767, + "Y": 530.415788615946 + }, + { + "Id": "0a0a3839c9f64ad6a293046f57ed2344", + "Name": "Output", + "IsSetAsInput": false, + "IsSetAsOutput": false, + "Excluded": false, + "ShowGeometry": true, + "X": 680.3259007822325, + "Y": 630.9375622553111 + }, + { + "Id": "b29c0bdbf17144568d31e4410f6de05b", + "Name": "Application.Version", + "IsSetAsInput": false, + "IsSetAsOutput": false, + "Excluded": false, + "ShowGeometry": true, + "X": 68.00651445859512, + "Y": 199.42294936583576 + } + ], + "Annotations": [], + "X": 183.8702519680116, + "Y": 82.09090397340168, + "Zoom": 0.6524894016875707 + } +} \ No newline at end of file